mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
ef6458b1b6
As with PG_arch_2, this flag is only allowed on 64-bit architectures due to the shortage of bits available. It will be used by the arm64 MTE code in subsequent patches. Signed-off-by: Peter Collingbourne <pcc@google.com> Cc: Will Deacon <will@kernel.org> Cc: Marc Zyngier <maz@kernel.org> Cc: Steven Price <steven.price@arm.com> [catalin.marinas@arm.com: added flag preserving in __split_huge_page_tail()] Signed-off-by: Catalin Marinas <catalin.marinas@arm.com> Reviewed-by: Steven Price <steven.price@arm.com> Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20221104011041.290951-5-pcc@google.com
23 lines
551 B
C
23 lines
551 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef LINUX_KERNEL_PAGE_FLAGS_H
|
|
#define LINUX_KERNEL_PAGE_FLAGS_H
|
|
|
|
#include <uapi/linux/kernel-page-flags.h>
|
|
|
|
|
|
/* kernel hacking assistances
|
|
* WARNING: subject to change, never rely on them!
|
|
*/
|
|
#define KPF_RESERVED 32
|
|
#define KPF_MLOCKED 33
|
|
#define KPF_MAPPEDTODISK 34
|
|
#define KPF_PRIVATE 35
|
|
#define KPF_PRIVATE_2 36
|
|
#define KPF_OWNER_PRIVATE 37
|
|
#define KPF_ARCH 38
|
|
#define KPF_UNCACHED 39
|
|
#define KPF_SOFTDIRTY 40
|
|
#define KPF_ARCH_2 41
|
|
#define KPF_ARCH_3 42
|
|
|
|
#endif /* LINUX_KERNEL_PAGE_FLAGS_H */
|