aboutsummaryrefslogtreecommitdiff
path: root/arch/x86/include/asm/pgtable.h
diff options
context:
space:
mode:
authorGravatar Kemeng Shi <shikemeng@huaweicloud.com> 2023-07-14 01:26:33 +0800
committerGravatar Andrew Morton <akpm@linux-foundation.org> 2023-08-18 10:12:28 -0700
commit931c38e16499a057e30a3033f4d6a9c242f0f156 (patch)
tree0d50b4bd4230377695169086df8df72c896028eb /arch/x86/include/asm/pgtable.h
parentmm/page_table_check: remove unused parameter in [__]page_table_check_pmd_clear (diff)
downloadlinux-931c38e16499a057e30a3033f4d6a9c242f0f156.tar.gz
linux-931c38e16499a057e30a3033f4d6a9c242f0f156.tar.bz2
linux-931c38e16499a057e30a3033f4d6a9c242f0f156.zip
mm/page_table_check: remove unused parameter in [__]page_table_check_pud_clear
Remove unused addr in __page_table_check_pud_clear and page_table_check_pud_clear. Link: https://lkml.kernel.org/r/20230713172636.1705415-6-shikemeng@huaweicloud.com Signed-off-by: Kemeng Shi <shikemeng@huaweicloud.com> Cc: Pavel Tatashin <pasha.tatashin@soleen.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'arch/x86/include/asm/pgtable.h')
-rw-r--r--arch/x86/include/asm/pgtable.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h
index 5d71f933d933..f07c610c3458 100644
--- a/arch/x86/include/asm/pgtable.h
+++ b/arch/x86/include/asm/pgtable.h
@@ -1144,7 +1144,7 @@ static inline pud_t pudp_huge_get_and_clear(struct mm_struct *mm,
{
pud_t pud = native_pudp_get_and_clear(pudp);
- page_table_check_pud_clear(mm, addr, pud);
+ page_table_check_pud_clear(mm, pud);
return pud;
}