proc: move /proc/slabinfo boilerplate to mm/slub.c, mm/slab.c
[linux-2.6/btrfs-unstable.git] / fs / proc / proc_misc.c
blob1d6d5c5cc2a832675ad59078edc4e1516c18399a
1 /*
2 * linux/fs/proc/proc_misc.c
4 * linux/fs/proc/array.c
5 * Copyright (C) 1992 by Linus Torvalds
6 * based on ideas by Darren Senn
8 * This used to be the part of array.c. See the rest of history and credits
9 * there. I took this into a separate file and switched the thing to generic
10 * proc_file_inode_operations, leaving in array.c only per-process stuff.
11 * Inumbers allocation made dynamic (via create_proc_entry()). AV, May 1999.
13 * Changes:
14 * Fulton Green : Encapsulated position metric calculations.
15 * <kernel@FultonGreen.com>
18 #include <linux/types.h>
19 #include <linux/errno.h>
20 #include <linux/time.h>
21 #include <linux/kernel.h>
22 #include <linux/kernel_stat.h>
23 #include <linux/fs.h>
24 #include <linux/tty.h>
25 #include <linux/string.h>
26 #include <linux/mman.h>
27 #include <linux/quicklist.h>
28 #include <linux/proc_fs.h>
29 #include <linux/ioport.h>
30 #include <linux/mm.h>
31 #include <linux/mmzone.h>
32 #include <linux/pagemap.h>
33 #include <linux/irq.h>
34 #include <linux/interrupt.h>
35 #include <linux/swap.h>
36 #include <linux/slab.h>
37 #include <linux/genhd.h>
38 #include <linux/smp.h>
39 #include <linux/signal.h>
40 #include <linux/module.h>
41 #include <linux/init.h>
42 #include <linux/seq_file.h>
43 #include <linux/times.h>
44 #include <linux/profile.h>
45 #include <linux/utsname.h>
46 #include <linux/blkdev.h>
47 #include <linux/hugetlb.h>
48 #include <linux/jiffies.h>
49 #include <linux/vmalloc.h>
50 #include <linux/crash_dump.h>
51 #include <linux/pid_namespace.h>
52 #include <linux/bootmem.h>
53 #include <asm/uaccess.h>
54 #include <asm/pgtable.h>
55 #include <asm/io.h>
56 #include <asm/tlb.h>
57 #include <asm/div64.h>
58 #include "internal.h"
60 static int fragmentation_open(struct inode *inode, struct file *file)
62 (void)inode;
63 return seq_open(file, &fragmentation_op);
66 static const struct file_operations fragmentation_file_operations = {
67 .open = fragmentation_open,
68 .read = seq_read,
69 .llseek = seq_lseek,
70 .release = seq_release,
73 static int pagetypeinfo_open(struct inode *inode, struct file *file)
75 return seq_open(file, &pagetypeinfo_op);
78 static const struct file_operations pagetypeinfo_file_ops = {
79 .open = pagetypeinfo_open,
80 .read = seq_read,
81 .llseek = seq_lseek,
82 .release = seq_release,
85 static int zoneinfo_open(struct inode *inode, struct file *file)
87 return seq_open(file, &zoneinfo_op);
90 static const struct file_operations proc_zoneinfo_file_operations = {
91 .open = zoneinfo_open,
92 .read = seq_read,
93 .llseek = seq_lseek,
94 .release = seq_release,
97 static int vmstat_open(struct inode *inode, struct file *file)
99 return seq_open(file, &vmstat_op);
101 static const struct file_operations proc_vmstat_file_operations = {
102 .open = vmstat_open,
103 .read = seq_read,
104 .llseek = seq_lseek,
105 .release = seq_release,
108 #ifdef CONFIG_BLOCK
109 static int diskstats_open(struct inode *inode, struct file *file)
111 return seq_open(file, &diskstats_op);
113 static const struct file_operations proc_diskstats_operations = {
114 .open = diskstats_open,
115 .read = seq_read,
116 .llseek = seq_lseek,
117 .release = seq_release,
119 #endif
121 #ifdef CONFIG_MODULES
122 extern const struct seq_operations modules_op;
123 static int modules_open(struct inode *inode, struct file *file)
125 return seq_open(file, &modules_op);
127 static const struct file_operations proc_modules_operations = {
128 .open = modules_open,
129 .read = seq_read,
130 .llseek = seq_lseek,
131 .release = seq_release,
133 #endif
135 #ifdef CONFIG_MMU
136 static int vmalloc_open(struct inode *inode, struct file *file)
138 unsigned int *ptr = NULL;
139 int ret;
141 if (NUMA_BUILD)
142 ptr = kmalloc(nr_node_ids * sizeof(unsigned int), GFP_KERNEL);
143 ret = seq_open(file, &vmalloc_op);
144 if (!ret) {
145 struct seq_file *m = file->private_data;
146 m->private = ptr;
147 } else
148 kfree(ptr);
149 return ret;
152 static const struct file_operations proc_vmalloc_operations = {
153 .open = vmalloc_open,
154 .read = seq_read,
155 .llseek = seq_lseek,
156 .release = seq_release_private,
158 #endif
160 #ifdef CONFIG_PROC_PAGE_MONITOR
161 #define KPMSIZE sizeof(u64)
162 #define KPMMASK (KPMSIZE - 1)
163 /* /proc/kpagecount - an array exposing page counts
165 * Each entry is a u64 representing the corresponding
166 * physical page count.
168 static ssize_t kpagecount_read(struct file *file, char __user *buf,
169 size_t count, loff_t *ppos)
171 u64 __user *out = (u64 __user *)buf;
172 struct page *ppage;
173 unsigned long src = *ppos;
174 unsigned long pfn;
175 ssize_t ret = 0;
176 u64 pcount;
178 pfn = src / KPMSIZE;
179 count = min_t(size_t, count, (max_pfn * KPMSIZE) - src);
180 if (src & KPMMASK || count & KPMMASK)
181 return -EINVAL;
183 while (count > 0) {
184 ppage = NULL;
185 if (pfn_valid(pfn))
186 ppage = pfn_to_page(pfn);
187 pfn++;
188 if (!ppage)
189 pcount = 0;
190 else
191 pcount = page_mapcount(ppage);
193 if (put_user(pcount, out++)) {
194 ret = -EFAULT;
195 break;
198 count -= KPMSIZE;
201 *ppos += (char __user *)out - buf;
202 if (!ret)
203 ret = (char __user *)out - buf;
204 return ret;
207 static struct file_operations proc_kpagecount_operations = {
208 .llseek = mem_lseek,
209 .read = kpagecount_read,
212 /* /proc/kpageflags - an array exposing page flags
214 * Each entry is a u64 representing the corresponding
215 * physical page flags.
218 /* These macros are used to decouple internal flags from exported ones */
220 #define KPF_LOCKED 0
221 #define KPF_ERROR 1
222 #define KPF_REFERENCED 2
223 #define KPF_UPTODATE 3
224 #define KPF_DIRTY 4
225 #define KPF_LRU 5
226 #define KPF_ACTIVE 6
227 #define KPF_SLAB 7
228 #define KPF_WRITEBACK 8
229 #define KPF_RECLAIM 9
230 #define KPF_BUDDY 10
232 #define kpf_copy_bit(flags, srcpos, dstpos) (((flags >> srcpos) & 1) << dstpos)
234 static ssize_t kpageflags_read(struct file *file, char __user *buf,
235 size_t count, loff_t *ppos)
237 u64 __user *out = (u64 __user *)buf;
238 struct page *ppage;
239 unsigned long src = *ppos;
240 unsigned long pfn;
241 ssize_t ret = 0;
242 u64 kflags, uflags;
244 pfn = src / KPMSIZE;
245 count = min_t(unsigned long, count, (max_pfn * KPMSIZE) - src);
246 if (src & KPMMASK || count & KPMMASK)
247 return -EINVAL;
249 while (count > 0) {
250 ppage = NULL;
251 if (pfn_valid(pfn))
252 ppage = pfn_to_page(pfn);
253 pfn++;
254 if (!ppage)
255 kflags = 0;
256 else
257 kflags = ppage->flags;
259 uflags = kpf_copy_bit(KPF_LOCKED, PG_locked, kflags) |
260 kpf_copy_bit(kflags, KPF_ERROR, PG_error) |
261 kpf_copy_bit(kflags, KPF_REFERENCED, PG_referenced) |
262 kpf_copy_bit(kflags, KPF_UPTODATE, PG_uptodate) |
263 kpf_copy_bit(kflags, KPF_DIRTY, PG_dirty) |
264 kpf_copy_bit(kflags, KPF_LRU, PG_lru) |
265 kpf_copy_bit(kflags, KPF_ACTIVE, PG_active) |
266 kpf_copy_bit(kflags, KPF_SLAB, PG_slab) |
267 kpf_copy_bit(kflags, KPF_WRITEBACK, PG_writeback) |
268 kpf_copy_bit(kflags, KPF_RECLAIM, PG_reclaim) |
269 kpf_copy_bit(kflags, KPF_BUDDY, PG_buddy);
271 if (put_user(uflags, out++)) {
272 ret = -EFAULT;
273 break;
276 count -= KPMSIZE;
279 *ppos += (char __user *)out - buf;
280 if (!ret)
281 ret = (char __user *)out - buf;
282 return ret;
285 static struct file_operations proc_kpageflags_operations = {
286 .llseek = mem_lseek,
287 .read = kpageflags_read,
289 #endif /* CONFIG_PROC_PAGE_MONITOR */
291 struct proc_dir_entry *proc_root_kcore;
293 void __init proc_misc_init(void)
295 proc_symlink("mounts", NULL, "self/mounts");
297 /* And now for trickier ones */
298 #ifdef CONFIG_MMU
299 proc_create("vmallocinfo", S_IRUSR, NULL, &proc_vmalloc_operations);
300 #endif
301 proc_create("buddyinfo", S_IRUGO, NULL, &fragmentation_file_operations);
302 proc_create("pagetypeinfo", S_IRUGO, NULL, &pagetypeinfo_file_ops);
303 proc_create("vmstat", S_IRUGO, NULL, &proc_vmstat_file_operations);
304 proc_create("zoneinfo", S_IRUGO, NULL, &proc_zoneinfo_file_operations);
305 #ifdef CONFIG_BLOCK
306 proc_create("diskstats", 0, NULL, &proc_diskstats_operations);
307 #endif
308 #ifdef CONFIG_MODULES
309 proc_create("modules", 0, NULL, &proc_modules_operations);
310 #endif
311 #ifdef CONFIG_SCHEDSTATS
312 proc_create("schedstat", 0, NULL, &proc_schedstat_operations);
313 #endif
314 #ifdef CONFIG_PROC_KCORE
315 proc_root_kcore = proc_create("kcore", S_IRUSR, NULL, &proc_kcore_operations);
316 if (proc_root_kcore)
317 proc_root_kcore->size =
318 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
319 #endif
320 #ifdef CONFIG_PROC_PAGE_MONITOR
321 proc_create("kpagecount", S_IRUSR, NULL, &proc_kpagecount_operations);
322 proc_create("kpageflags", S_IRUSR, NULL, &proc_kpageflags_operations);
323 #endif
324 #ifdef CONFIG_PROC_VMCORE
325 proc_vmcore = proc_create("vmcore", S_IRUSR, NULL, &proc_vmcore_operations);
326 #endif