]> git.baikalelectronics.ru Git - kernel.git/commit
mm/pgtable: define pte_index so that preprocessor could recognize it
authorMike Rapoport <rppt@linux.ibm.com>
Fri, 4 Feb 2022 04:49:29 +0000 (20:49 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Fri, 4 Feb 2022 17:25:05 +0000 (09:25 -0800)
commit3201b6e9a66ec61f713a69cfb074d88be5c12df7
tree86f40b7b2bf599feffc6c7b1c06d7caac84bd4f6
parent13e38cd99f11ac0e1dc839e69a6a4b57ed114dd3
mm/pgtable: define pte_index so that preprocessor could recognize it

Since commit c80f5fc1c03c ("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: c80f5fc1c03c ("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>
include/linux/pgtable.h