mmflags.h (d85ddd1318e66c0c2665dbfcbc21a8b66c9152aa) mmflags.h (12564485ed8caac3c18572793ec01330792c7191)
1/* SPDX-License-Identifier: GPL-2.0 */
2#include <linux/node.h>
3#include <linux/mmzone.h>
4#include <linux/compaction.h>
5/*
6 * The order of these masks is important. Matching masks will be seen
7 * first and the left over flags will end up showing by themselves.
8 *

--- 100 unchanged lines hidden (view full) ---

109
110#define show_page_flags(flags) \
111 (flags) ? __print_flags(flags, "|", \
112 __def_pageflag_names \
113 ) : "none"
114
115#if defined(CONFIG_X86)
116#define __VM_ARCH_SPECIFIC_1 {VM_PAT, "pat" }
1/* SPDX-License-Identifier: GPL-2.0 */
2#include <linux/node.h>
3#include <linux/mmzone.h>
4#include <linux/compaction.h>
5/*
6 * The order of these masks is important. Matching masks will be seen
7 * first and the left over flags will end up showing by themselves.
8 *

--- 100 unchanged lines hidden (view full) ---

109
110#define show_page_flags(flags) \
111 (flags) ? __print_flags(flags, "|", \
112 __def_pageflag_names \
113 ) : "none"
114
115#if defined(CONFIG_X86)
116#define __VM_ARCH_SPECIFIC_1 {VM_PAT, "pat" }
117#elif defined(CONFIG_PPC)
118#define __VM_ARCH_SPECIFIC_1 {VM_SAO, "sao" }
117#elif defined(CONFIG_PARISC) || defined(CONFIG_IA64)
118#define __VM_ARCH_SPECIFIC_1 {VM_GROWSUP, "growsup" }
119#elif !defined(CONFIG_MMU)
120#define __VM_ARCH_SPECIFIC_1 {VM_MAPPED_COPY,"mappedcopy" }
121#else
122#define __VM_ARCH_SPECIFIC_1 {VM_ARCH_1, "arch_1" }
123#endif
124

--- 139 unchanged lines hidden ---
119#elif defined(CONFIG_PARISC) || defined(CONFIG_IA64)
120#define __VM_ARCH_SPECIFIC_1 {VM_GROWSUP, "growsup" }
121#elif !defined(CONFIG_MMU)
122#define __VM_ARCH_SPECIFIC_1 {VM_MAPPED_COPY,"mappedcopy" }
123#else
124#define __VM_ARCH_SPECIFIC_1 {VM_ARCH_1, "arch_1" }
125#endif
126

--- 139 unchanged lines hidden ---