Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
30 lines
948 B
C
30 lines
948 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _LINUX_PGALLOC_H
|
|
#define _LINUX_PGALLOC_H
|
|
|
|
#include <linux/pgtable.h>
|
|
#include <asm/pgalloc.h>
|
|
|
|
/*
|
|
* {pgd,p4d}_populate_kernel() are defined as macros to allow
|
|
* compile-time optimization based on the configured page table levels.
|
|
* Without this, linking may fail because callers (e.g., KASAN) may rely
|
|
* on calls to these functions being optimized away when passing symbols
|
|
* that exist only for certain page table levels.
|
|
*/
|
|
#define pgd_populate_kernel(addr, pgd, p4d) \
|
|
do { \
|
|
pgd_populate(&init_mm, pgd, p4d); \
|
|
if (ARCH_PAGE_TABLE_SYNC_MASK & PGTBL_PGD_MODIFIED) \
|
|
arch_sync_kernel_mappings(addr, addr); \
|
|
} while (0)
|
|
|
|
#define p4d_populate_kernel(addr, p4d, pud) \
|
|
do { \
|
|
p4d_populate(&init_mm, p4d, pud); \
|
|
if (ARCH_PAGE_TABLE_SYNC_MASK & PGTBL_P4D_MODIFIED) \
|
|
arch_sync_kernel_mappings(addr, addr); \
|
|
} while (0)
|
|
|
|
#endif /* _LINUX_PGALLOC_H */
|