.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-only |
---|
1 | 2 | /* |
---|
2 | 3 | * page-types: Tool for querying page flags |
---|
3 | | - * |
---|
4 | | - * This program is free software; you can redistribute it and/or modify it |
---|
5 | | - * under the terms of the GNU General Public License as published by the Free |
---|
6 | | - * Software Foundation; version 2. |
---|
7 | | - * |
---|
8 | | - * This program is distributed in the hope that it will be useful, but WITHOUT |
---|
9 | | - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
---|
10 | | - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
---|
11 | | - * more details. |
---|
12 | | - * |
---|
13 | | - * You should find a copy of v2 of the GNU General Public License somewhere on |
---|
14 | | - * your Linux system; if not, write to the Free Software Foundation, Inc., 59 |
---|
15 | | - * Temple Place, Suite 330, Boston, MA 02111-1307 USA. |
---|
16 | 4 | * |
---|
17 | 5 | * Copyright (C) 2009 Intel corporation |
---|
18 | 6 | * |
---|
.. | .. |
---|
90 | 78 | #define KPF_ARCH 38 |
---|
91 | 79 | #define KPF_UNCACHED 39 |
---|
92 | 80 | #define KPF_SOFTDIRTY 40 |
---|
| 81 | +#define KPF_ARCH_2 41 |
---|
93 | 82 | |
---|
94 | 83 | /* [48-] take some arbitrary free slots for expanding overloaded flags |
---|
95 | 84 | * not part of kernel API |
---|
.. | .. |
---|
133 | 122 | [KPF_NOPAGE] = "n:nopage", |
---|
134 | 123 | [KPF_KSM] = "x:ksm", |
---|
135 | 124 | [KPF_THP] = "t:thp", |
---|
136 | | - [KPF_BALLOON] = "o:balloon", |
---|
| 125 | + [KPF_OFFLINE] = "o:offline", |
---|
137 | 126 | [KPF_PGTABLE] = "g:pgtable", |
---|
138 | 127 | [KPF_ZERO_PAGE] = "z:zero_page", |
---|
139 | 128 | [KPF_IDLE] = "i:idle_page", |
---|
.. | .. |
---|
147 | 136 | [KPF_ARCH] = "h:arch", |
---|
148 | 137 | [KPF_UNCACHED] = "c:uncached", |
---|
149 | 138 | [KPF_SOFTDIRTY] = "f:softdirty", |
---|
| 139 | + [KPF_ARCH_2] = "H:arch_2", |
---|
150 | 140 | |
---|
151 | 141 | [KPF_READAHEAD] = "I:readahead", |
---|
152 | 142 | [KPF_SLOB_FREE] = "P:slob_free", |
---|