Skip to content

Commit 9715ddc

Browse files
committed
Merge tag 'v6.1.137' into orange-pi-6.1-rk35xx
This is the 6.1.137 stable release * tag 'v6.1.137' of https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux: Linux 6.1.137 LoongArch: Fix build error due to backport Signed-off-by: Khusika Dhamar Gusti <[email protected]>
2 parents dfa5235 + ac7079a commit 9715ddc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0
22
VERSION = 6
33
PATCHLEVEL = 1
4-
SUBLEVEL = 136
4+
SUBLEVEL = 137
55
EXTRAVERSION =
66
NAME = Curry Ramen
77

arch/loongarch/mm/hugetlbpage.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pte_t *huge_pte_offset(struct mm_struct *mm, unsigned long addr,
4747
pmd = pmd_offset(pud, addr);
4848
}
4949
}
50-
return pmd_none(pmdp_get(pmd)) ? NULL : (pte_t *) pmd;
50+
return pmd_none(*pmd) ? NULL : (pte_t *) pmd;
5151
}
5252

5353
/*

0 commit comments

Comments
 (0)