Skip to content

Commit 314c459

Browse files
rppttorvalds
authored andcommitted
mm/pgtable: define pte_index so that preprocessor could recognize it
Since commit 974b9b2 ("mm: consolidate pte_index() and pte_offset_*() definitions") pte_index is a static inline and there is no define for it that can be recognized by the preprocessor. As a result, vm_insert_pages() uses slower loop over vm_insert_page() instead of insert_pages() that amortizes the cost of spinlock operations when inserting multiple pages. Link: https://lkml.kernel.org/r/20220111145457.20748-1-rppt@kernel.org Fixes: 974b9b2 ("mm: consolidate pte_index() and pte_offset_*() definitions") Signed-off-by: Mike Rapoport <rppt@linux.ibm.com> Reported-by: Christian Dietrich <stettberger@dokucode.de> Reviewed-by: Khalid Aziz <khalid.aziz@oracle.com> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
1 parent 80110bb commit 314c459

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

include/linux/pgtable.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ static inline unsigned long pte_index(unsigned long address)
6262
{
6363
return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
6464
}
65+
#define pte_index pte_index
6566

6667
#ifndef pmd_index
6768
static inline unsigned long pmd_index(unsigned long address)

0 commit comments

Comments
 (0)