1 #include <linux/bootmem.h>
2 #include <linux/compiler.h>
4 #include <linux/init.h>
7 #include <linux/mmzone.h>
8 #include <linux/proc_fs.h>
9 #include <linux/seq_file.h>
10 #include <linux/hugetlb.h>
11 #include <asm/uaccess.h>
14 #define KPMSIZE sizeof(u64)
15 #define KPMMASK (KPMSIZE - 1)
17 /* /proc/kpagecount - an array exposing page counts
19 * Each entry is a u64 representing the corresponding
20 * physical page count.
22 static ssize_t
kpagecount_read(struct file
*file
, char __user
*buf
,
23 size_t count
, loff_t
*ppos
)
25 u64 __user
*out
= (u64 __user
*)buf
;
27 unsigned long src
= *ppos
;
33 count
= min_t(size_t, count
, (max_pfn
* KPMSIZE
) - src
);
34 if (src
& KPMMASK
|| count
& KPMMASK
)
39 ppage
= pfn_to_page(pfn
);
45 pcount
= page_mapcount(ppage
);
47 if (put_user(pcount
, out
)) {
57 *ppos
+= (char __user
*)out
- buf
;
59 ret
= (char __user
*)out
- buf
;
63 static const struct file_operations proc_kpagecount_operations
= {
65 .read
= kpagecount_read
,
68 /* /proc/kpageflags - an array exposing page flags
70 * Each entry is a u64 representing the corresponding
71 * physical page flags.
74 /* These macros are used to decouple internal flags from exported ones */
78 #define KPF_REFERENCED 2
79 #define KPF_UPTODATE 3
84 #define KPF_WRITEBACK 8
88 /* 11-20: new additions in 2.6.31 */
91 #define KPF_SWAPCACHE 13
92 #define KPF_SWAPBACKED 14
93 #define KPF_COMPOUND_HEAD 15
94 #define KPF_COMPOUND_TAIL 16
96 #define KPF_UNEVICTABLE 18
101 /* kernel hacking assistances
102 * WARNING: subject to change, never rely on them!
104 #define KPF_RESERVED 32
105 #define KPF_MLOCKED 33
106 #define KPF_MAPPEDTODISK 34
107 #define KPF_PRIVATE 35
108 #define KPF_PRIVATE_2 36
109 #define KPF_OWNER_PRIVATE 37
111 #define KPF_UNCACHED 39
113 static inline u64
kpf_copy_bit(u64 kflags
, int ubit
, int kbit
)
115 return ((kflags
>> kbit
) & 1) << ubit
;
118 static u64
get_uflags(struct page
*page
)
124 * pseudo flag: KPF_NOPAGE
125 * it differentiates a memory hole from a page with no flags
128 return 1 << KPF_NOPAGE
;
134 * pseudo flags for the well known (anonymous) memory mapped pages
136 * Note that page->_mapcount is overloaded in SLOB/SLUB/SLQB, so the
137 * simple test in page_mapped() is not enough.
139 if (!PageSlab(page
) && page_mapped(page
))
147 * compound pages: export both head/tail info
148 * they together define a compound page's start/end pos and order
151 u
|= 1 << KPF_COMPOUND_HEAD
;
153 u
|= 1 << KPF_COMPOUND_TAIL
;
157 u
|= kpf_copy_bit(k
, KPF_LOCKED
, PG_locked
);
160 * Caveats on high order pages:
161 * PG_buddy will only be set on the head page; SLUB/SLQB do the same
162 * for PG_slab; SLOB won't set PG_slab at all on compound pages.
164 u
|= kpf_copy_bit(k
, KPF_SLAB
, PG_slab
);
165 u
|= kpf_copy_bit(k
, KPF_BUDDY
, PG_buddy
);
167 u
|= kpf_copy_bit(k
, KPF_ERROR
, PG_error
);
168 u
|= kpf_copy_bit(k
, KPF_DIRTY
, PG_dirty
);
169 u
|= kpf_copy_bit(k
, KPF_UPTODATE
, PG_uptodate
);
170 u
|= kpf_copy_bit(k
, KPF_WRITEBACK
, PG_writeback
);
172 u
|= kpf_copy_bit(k
, KPF_LRU
, PG_lru
);
173 u
|= kpf_copy_bit(k
, KPF_REFERENCED
, PG_referenced
);
174 u
|= kpf_copy_bit(k
, KPF_ACTIVE
, PG_active
);
175 u
|= kpf_copy_bit(k
, KPF_RECLAIM
, PG_reclaim
);
177 u
|= kpf_copy_bit(k
, KPF_SWAPCACHE
, PG_swapcache
);
178 u
|= kpf_copy_bit(k
, KPF_SWAPBACKED
, PG_swapbacked
);
180 u
|= kpf_copy_bit(k
, KPF_UNEVICTABLE
, PG_unevictable
);
181 u
|= kpf_copy_bit(k
, KPF_MLOCKED
, PG_mlocked
);
183 #ifdef CONFIG_IA64_UNCACHED_ALLOCATOR
184 u
|= kpf_copy_bit(k
, KPF_UNCACHED
, PG_uncached
);
187 u
|= kpf_copy_bit(k
, KPF_RESERVED
, PG_reserved
);
188 u
|= kpf_copy_bit(k
, KPF_MAPPEDTODISK
, PG_mappedtodisk
);
189 u
|= kpf_copy_bit(k
, KPF_PRIVATE
, PG_private
);
190 u
|= kpf_copy_bit(k
, KPF_PRIVATE_2
, PG_private_2
);
191 u
|= kpf_copy_bit(k
, KPF_OWNER_PRIVATE
, PG_owner_priv_1
);
192 u
|= kpf_copy_bit(k
, KPF_ARCH
, PG_arch_1
);
197 static ssize_t
kpageflags_read(struct file
*file
, char __user
*buf
,
198 size_t count
, loff_t
*ppos
)
200 u64 __user
*out
= (u64 __user
*)buf
;
202 unsigned long src
= *ppos
;
207 count
= min_t(unsigned long, count
, (max_pfn
* KPMSIZE
) - src
);
208 if (src
& KPMMASK
|| count
& KPMMASK
)
213 ppage
= pfn_to_page(pfn
);
217 if (put_user(get_uflags(ppage
), out
)) {
227 *ppos
+= (char __user
*)out
- buf
;
229 ret
= (char __user
*)out
- buf
;
233 static const struct file_operations proc_kpageflags_operations
= {
235 .read
= kpageflags_read
,
238 static int __init
proc_page_init(void)
240 proc_create("kpagecount", S_IRUSR
, NULL
, &proc_kpagecount_operations
);
241 proc_create("kpageflags", S_IRUSR
, NULL
, &proc_kpageflags_operations
);
244 module_init(proc_page_init
);