commit ac7079a42ea58e77123b55f5e15f1b2679f799aa Author: Greg Kroah-Hartman Date: Mon May 5 10:59:01 2025 +0200 Linux 6.1.137 Signed-off-by: Greg Kroah-Hartman commit 8b4c07bb511c6e565daa85d27c6681eafcd84d76 Author: Huacai Chen Date: Sun May 4 10:10:54 2025 +0800 LoongArch: Fix build error due to backport In 6.1 there is no pmdp_get() definition, so use *pmd directly, in order to avoid such build error due to a recently backport: arch/loongarch/mm/hugetlbpage.c: In function 'huge_pte_offset': arch/loongarch/mm/hugetlbpage.c:50:25: error: implicit declaration of function 'pmdp_get'; did you mean 'ptep_get'? [-Wimplicit-function-declaration] 50 | return pmd_none(pmdp_get(pmd)) ? NULL : (pte_t *) pmd; | ^~~~~~~~ | ptep_get Reported-by: Guenter Roeck Link: https://lore.kernel.org/r/f978ec9a-b103-40af-b116-6a9238197110@roeck-us.net Signed-off-by: Huacai Chen Signed-off-by: Greg Kroah-Hartman