forked from mirrors/linux
		
	 7a87225ae2
			
		
	
	
		7a87225ae2
		
	
	
	
	
		
			
			Convert x86 to use PG_arch_2 instead of PG_uncached and remove PG_uncached. Link: https://lkml.kernel.org/r/20240821193445.2294269-11-willy@infradead.org Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			522 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			522 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_OWNER_2		34
 | |
| #define KPF_PRIVATE		35
 | |
| #define KPF_PRIVATE_2		36
 | |
| #define KPF_OWNER_PRIVATE	37
 | |
| #define KPF_ARCH		38
 | |
| #define KPF_SOFTDIRTY		40
 | |
| #define KPF_ARCH_2		41
 | |
| #define KPF_ARCH_3		42
 | |
| 
 | |
| #endif /* LINUX_KERNEL_PAGE_FLAGS_H */
 |