Changelog in Linux kernel 6.1.137

 
Linux: Linux 6.1.137 [+ + +]
Author: Greg Kroah-Hartman <[email protected]>
Date:   Mon May 5 10:59:01 2025 +0200

    Linux 6.1.137
    
    Signed-off-by: Greg Kroah-Hartman <[email protected]>

 
LoongArch: Fix build error due to backport [+ + +]
Author: Huacai Chen <[email protected]>
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 <[email protected]>
    Link: https://lore.kernel.org/r/[email protected]
    Signed-off-by: Huacai Chen <[email protected]>
    Signed-off-by: Greg Kroah-Hartman <[email protected]>