Skip to content

Commit 59bda2a

Browse files
rpptsmb49
authored andcommitted
mm/pgtable: define pte_index so that preprocessor could recognize it
BugLink: https://bugs.launchpad.net/bugs/1966021 commit 314c459 upstream. 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/[email protected] Fixes: 974b9b2 ("mm: consolidate pte_index() and pte_offset_*() definitions") Signed-off-by: Mike Rapoport <[email protected]> Reported-by: Christian Dietrich <[email protected]> Reviewed-by: Khalid Aziz <[email protected]> Cc: <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]> Signed-off-by: Kamal Mostafa <[email protected]> Signed-off-by: Stefan Bader <[email protected]>
1 parent 5376bbe commit 59bda2a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/linux/pgtable.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ static inline unsigned long pte_index(unsigned long address)
4444
{
4545
return (address >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
4646
}
47+
#define pte_index pte_index
4748

4849
#ifndef pmd_index
4950
static inline unsigned long pmd_index(unsigned long address)

0 commit comments

Comments
 (0)