diff options
author | Matthew Wilcox (Oracle) <willy@infradead.org> | 2025-05-14 19:15:07 +0100 |
---|---|---|
committer | Andrew Morton <akpm@linux-foundation.org> | 2025-05-31 22:46:06 -0700 |
commit | acc53a0b4c156877773da6e9eea4113dc7e770ae (patch) | |
tree | 99c3f07c985f13e6c8bc1ce87b7f5618df62b2e5 /kernel | |
parent | e94715982c969135457df013d2f8b1742451803c (diff) |
mm: rename page->index to page->__folio_index
All users of page->index have been converted to not refer to it any more.
Update a few pieces of documentation that were missed and prevent new
users from appearing (or at least make them easy to grep for).
Link: https://lkml.kernel.org/r/20250514181508.3019795-1-willy@infradead.org
Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
Acked-by: David Hildenbrand <david@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/futex/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/futex/core.c b/kernel/futex/core.c index cca15859a50b..ecd74370e216 100644 --- a/kernel/futex/core.c +++ b/kernel/futex/core.c @@ -206,7 +206,7 @@ static u64 get_inode_sequence_number(struct inode *inode) * * For shared mappings (when @fshared), the key is: * - * ( inode->i_sequence, page->index, offset_within_page ) + * ( inode->i_sequence, page offset within mapping, offset_within_page ) * * [ also see get_inode_sequence_number() ] * |