[PATCH] BLOCK: Remove no-longer necessary linux/mpage.h inclusions [try #6]
[deliverable/linux.git] / fs / proc / proc_misc.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/proc/proc_misc.c
3 *
4 * linux/fs/proc/array.c
5 * Copyright (C) 1992 by Linus Torvalds
6 * based on ideas by Darren Senn
7 *
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.
12 *
13 * Changes:
14 * Fulton Green : Encapsulated position metric calculations.
15 * <kernel@FultonGreen.com>
16 */
17
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>
7170be5f 23#include <linux/fs.h>
1da177e4
LT
24#include <linux/tty.h>
25#include <linux/string.h>
26#include <linux/mman.h>
27#include <linux/proc_fs.h>
28#include <linux/ioport.h>
1da177e4
LT
29#include <linux/mm.h>
30#include <linux/mmzone.h>
31#include <linux/pagemap.h>
32#include <linux/swap.h>
33#include <linux/slab.h>
34#include <linux/smp.h>
35#include <linux/signal.h>
36#include <linux/module.h>
37#include <linux/init.h>
38#include <linux/smp_lock.h>
39#include <linux/seq_file.h>
40#include <linux/times.h>
41#include <linux/profile.h>
42#include <linux/blkdev.h>
43#include <linux/hugetlb.h>
44#include <linux/jiffies.h>
45#include <linux/sysrq.h>
46#include <linux/vmalloc.h>
666bfddb 47#include <linux/crash_dump.h>
1da177e4
LT
48#include <asm/uaccess.h>
49#include <asm/pgtable.h>
50#include <asm/io.h>
51#include <asm/tlb.h>
52#include <asm/div64.h>
53#include "internal.h"
54
55#define LOAD_INT(x) ((x) >> FSHIFT)
56#define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
57/*
58 * Warning: stuff below (imported functions) assumes that its output will fit
59 * into one page. For some of those functions it may be wrong. Moreover, we
60 * have a way to deal with that gracefully. Right now I used straightforward
61 * wrappers, but this needs further analysis wrt potential overflows.
62 */
63extern int get_hardware_list(char *);
64extern int get_stram_list(char *);
1da177e4
LT
65extern int get_filesystem_list(char *);
66extern int get_exec_domain_list(char *);
67extern int get_dma_list(char *);
68extern int get_locks_status (char *, char **, off_t, int);
69
70static int proc_calc_metrics(char *page, char **start, off_t off,
71 int count, int *eof, int len)
72{
73 if (len <= off+count) *eof = 1;
74 *start = page + off;
75 len -= off;
76 if (len>count) len = count;
77 if (len<0) len = 0;
78 return len;
79}
80
81static int loadavg_read_proc(char *page, char **start, off_t off,
82 int count, int *eof, void *data)
83{
84 int a, b, c;
85 int len;
86
87 a = avenrun[0] + (FIXED_1/200);
88 b = avenrun[1] + (FIXED_1/200);
89 c = avenrun[2] + (FIXED_1/200);
90 len = sprintf(page,"%d.%02d %d.%02d %d.%02d %ld/%d %d\n",
91 LOAD_INT(a), LOAD_FRAC(a),
92 LOAD_INT(b), LOAD_FRAC(b),
93 LOAD_INT(c), LOAD_FRAC(c),
94 nr_running(), nr_threads, last_pid);
95 return proc_calc_metrics(page, start, off, count, eof, len);
96}
97
98static int uptime_read_proc(char *page, char **start, off_t off,
99 int count, int *eof, void *data)
100{
101 struct timespec uptime;
102 struct timespec idle;
103 int len;
104 cputime_t idletime = cputime_add(init_task.utime, init_task.stime);
105
106 do_posix_clock_monotonic_gettime(&uptime);
107 cputime_to_timespec(idletime, &idle);
108 len = sprintf(page,"%lu.%02lu %lu.%02lu\n",
109 (unsigned long) uptime.tv_sec,
110 (uptime.tv_nsec / (NSEC_PER_SEC / 100)),
111 (unsigned long) idle.tv_sec,
112 (idle.tv_nsec / (NSEC_PER_SEC / 100)));
113
114 return proc_calc_metrics(page, start, off, count, eof, len);
115}
116
117static int meminfo_read_proc(char *page, char **start, off_t off,
118 int count, int *eof, void *data)
119{
120 struct sysinfo i;
121 int len;
1da177e4
LT
122 unsigned long inactive;
123 unsigned long active;
124 unsigned long free;
125 unsigned long committed;
126 unsigned long allowed;
127 struct vmalloc_info vmi;
4c4c402d 128 long cached;
1da177e4 129
1da177e4
LT
130 get_zone_counts(&active, &inactive, &free);
131
132/*
133 * display in kilobytes.
134 */
135#define K(x) ((x) << (PAGE_SHIFT - 10))
136 si_meminfo(&i);
137 si_swapinfo(&i);
138 committed = atomic_read(&vm_committed_space);
139 allowed = ((totalram_pages - hugetlb_total_pages())
140 * sysctl_overcommit_ratio / 100) + total_swap_pages;
141
347ce434
CL
142 cached = global_page_state(NR_FILE_PAGES) -
143 total_swapcache_pages - i.bufferram;
4c4c402d
MH
144 if (cached < 0)
145 cached = 0;
146
1da177e4
LT
147 get_vmalloc_info(&vmi);
148
149 /*
150 * Tagged format, for easy grepping and expansion.
151 */
152 len = sprintf(page,
153 "MemTotal: %8lu kB\n"
154 "MemFree: %8lu kB\n"
155 "Buffers: %8lu kB\n"
156 "Cached: %8lu kB\n"
157 "SwapCached: %8lu kB\n"
158 "Active: %8lu kB\n"
159 "Inactive: %8lu kB\n"
182e8e23 160#ifdef CONFIG_HIGHMEM
1da177e4
LT
161 "HighTotal: %8lu kB\n"
162 "HighFree: %8lu kB\n"
163 "LowTotal: %8lu kB\n"
164 "LowFree: %8lu kB\n"
182e8e23 165#endif
1da177e4
LT
166 "SwapTotal: %8lu kB\n"
167 "SwapFree: %8lu kB\n"
168 "Dirty: %8lu kB\n"
169 "Writeback: %8lu kB\n"
f3dbd344 170 "AnonPages: %8lu kB\n"
1da177e4
LT
171 "Mapped: %8lu kB\n"
172 "Slab: %8lu kB\n"
972d1a7b
CL
173 "SReclaimable: %8lu kB\n"
174 "SUnreclaim: %8lu kB\n"
df849a15 175 "PageTables: %8lu kB\n"
f5ef68da 176 "NFS_Unstable: %8lu kB\n"
d2c5e30c 177 "Bounce: %8lu kB\n"
1da177e4
LT
178 "CommitLimit: %8lu kB\n"
179 "Committed_AS: %8lu kB\n"
1da177e4
LT
180 "VmallocTotal: %8lu kB\n"
181 "VmallocUsed: %8lu kB\n"
182 "VmallocChunk: %8lu kB\n",
183 K(i.totalram),
184 K(i.freeram),
185 K(i.bufferram),
4c4c402d 186 K(cached),
1da177e4
LT
187 K(total_swapcache_pages),
188 K(active),
189 K(inactive),
182e8e23 190#ifdef CONFIG_HIGHMEM
1da177e4
LT
191 K(i.totalhigh),
192 K(i.freehigh),
193 K(i.totalram-i.totalhigh),
194 K(i.freeram-i.freehigh),
182e8e23 195#endif
1da177e4
LT
196 K(i.totalswap),
197 K(i.freeswap),
b1e7a8fd 198 K(global_page_state(NR_FILE_DIRTY)),
ce866b34 199 K(global_page_state(NR_WRITEBACK)),
f3dbd344 200 K(global_page_state(NR_ANON_PAGES)),
65ba55f5 201 K(global_page_state(NR_FILE_MAPPED)),
972d1a7b
CL
202 K(global_page_state(NR_SLAB_RECLAIMABLE) +
203 global_page_state(NR_SLAB_UNRECLAIMABLE)),
204 K(global_page_state(NR_SLAB_RECLAIMABLE)),
205 K(global_page_state(NR_SLAB_UNRECLAIMABLE)),
df849a15 206 K(global_page_state(NR_PAGETABLE)),
fd39fc85 207 K(global_page_state(NR_UNSTABLE_NFS)),
d2c5e30c 208 K(global_page_state(NR_BOUNCE)),
1da177e4
LT
209 K(allowed),
210 K(committed),
1da177e4
LT
211 (unsigned long)VMALLOC_TOTAL >> 10,
212 vmi.used >> 10,
213 vmi.largest_chunk >> 10
214 );
215
216 len += hugetlb_report_meminfo(page + len);
217
218 return proc_calc_metrics(page, start, off, count, eof, len);
219#undef K
220}
221
222extern struct seq_operations fragmentation_op;
223static int fragmentation_open(struct inode *inode, struct file *file)
224{
225 (void)inode;
226 return seq_open(file, &fragmentation_op);
227}
228
229static struct file_operations fragmentation_file_operations = {
230 .open = fragmentation_open,
231 .read = seq_read,
232 .llseek = seq_lseek,
233 .release = seq_release,
234};
235
295ab934
ND
236extern struct seq_operations zoneinfo_op;
237static int zoneinfo_open(struct inode *inode, struct file *file)
238{
239 return seq_open(file, &zoneinfo_op);
240}
241
242static struct file_operations proc_zoneinfo_file_operations = {
243 .open = zoneinfo_open,
244 .read = seq_read,
245 .llseek = seq_lseek,
246 .release = seq_release,
247};
248
1da177e4
LT
249static int version_read_proc(char *page, char **start, off_t off,
250 int count, int *eof, void *data)
251{
252 int len;
253
254 strcpy(page, linux_banner);
255 len = strlen(page);
256 return proc_calc_metrics(page, start, off, count, eof, len);
257}
258
259extern struct seq_operations cpuinfo_op;
260static int cpuinfo_open(struct inode *inode, struct file *file)
261{
262 return seq_open(file, &cpuinfo_op);
263}
7170be5f 264
68eef3b4
JK
265static struct file_operations proc_cpuinfo_operations = {
266 .open = cpuinfo_open,
267 .read = seq_read,
268 .llseek = seq_lseek,
269 .release = seq_release,
7170be5f
NH
270};
271
68eef3b4 272static int devinfo_show(struct seq_file *f, void *v)
7170be5f 273{
68eef3b4
JK
274 int i = *(loff_t *) v;
275
276 if (i < CHRDEV_MAJOR_HASH_SIZE) {
277 if (i == 0)
278 seq_printf(f, "Character devices:\n");
279 chrdev_show(f, i);
280 } else {
281 i -= CHRDEV_MAJOR_HASH_SIZE;
282 if (i == 0)
283 seq_printf(f, "\nBlock devices:\n");
284 blkdev_show(f, i);
7170be5f 285 }
68eef3b4 286 return 0;
7170be5f
NH
287}
288
68eef3b4 289static void *devinfo_start(struct seq_file *f, loff_t *pos)
7170be5f 290{
68eef3b4
JK
291 if (*pos < (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
292 return pos;
293 return NULL;
7170be5f
NH
294}
295
68eef3b4 296static void *devinfo_next(struct seq_file *f, void *v, loff_t *pos)
7170be5f 297{
68eef3b4
JK
298 (*pos)++;
299 if (*pos >= (BLKDEV_MAJOR_HASH_SIZE + CHRDEV_MAJOR_HASH_SIZE))
300 return NULL;
301 return pos;
7170be5f
NH
302}
303
68eef3b4 304static void devinfo_stop(struct seq_file *f, void *v)
7170be5f 305{
68eef3b4 306 /* Nothing to do */
7170be5f
NH
307}
308
68eef3b4
JK
309static struct seq_operations devinfo_ops = {
310 .start = devinfo_start,
311 .next = devinfo_next,
312 .stop = devinfo_stop,
313 .show = devinfo_show
7170be5f
NH
314};
315
68eef3b4 316static int devinfo_open(struct inode *inode, struct file *filp)
7170be5f 317{
68eef3b4 318 return seq_open(filp, &devinfo_ops);
7170be5f
NH
319}
320
321static struct file_operations proc_devinfo_operations = {
322 .open = devinfo_open,
323 .read = seq_read,
324 .llseek = seq_lseek,
325 .release = seq_release,
326};
327
1da177e4
LT
328extern struct seq_operations vmstat_op;
329static int vmstat_open(struct inode *inode, struct file *file)
330{
331 return seq_open(file, &vmstat_op);
332}
333static struct file_operations proc_vmstat_file_operations = {
334 .open = vmstat_open,
335 .read = seq_read,
336 .llseek = seq_lseek,
337 .release = seq_release,
338};
339
340#ifdef CONFIG_PROC_HARDWARE
341static int hardware_read_proc(char *page, char **start, off_t off,
342 int count, int *eof, void *data)
343{
344 int len = get_hardware_list(page);
345 return proc_calc_metrics(page, start, off, count, eof, len);
346}
347#endif
348
349#ifdef CONFIG_STRAM_PROC
350static int stram_read_proc(char *page, char **start, off_t off,
351 int count, int *eof, void *data)
352{
353 int len = get_stram_list(page);
354 return proc_calc_metrics(page, start, off, count, eof, len);
355}
356#endif
357
358extern struct seq_operations partitions_op;
359static int partitions_open(struct inode *inode, struct file *file)
360{
361 return seq_open(file, &partitions_op);
362}
363static struct file_operations proc_partitions_operations = {
364 .open = partitions_open,
365 .read = seq_read,
366 .llseek = seq_lseek,
367 .release = seq_release,
368};
369
370extern struct seq_operations diskstats_op;
371static int diskstats_open(struct inode *inode, struct file *file)
372{
373 return seq_open(file, &diskstats_op);
374}
375static struct file_operations proc_diskstats_operations = {
376 .open = diskstats_open,
377 .read = seq_read,
378 .llseek = seq_lseek,
379 .release = seq_release,
380};
381
382#ifdef CONFIG_MODULES
383extern struct seq_operations modules_op;
384static int modules_open(struct inode *inode, struct file *file)
385{
386 return seq_open(file, &modules_op);
387}
388static struct file_operations proc_modules_operations = {
389 .open = modules_open,
390 .read = seq_read,
391 .llseek = seq_lseek,
392 .release = seq_release,
393};
394#endif
395
10cef602 396#ifdef CONFIG_SLAB
1da177e4
LT
397extern struct seq_operations slabinfo_op;
398extern ssize_t slabinfo_write(struct file *, const char __user *, size_t, loff_t *);
399static int slabinfo_open(struct inode *inode, struct file *file)
400{
401 return seq_open(file, &slabinfo_op);
402}
403static struct file_operations proc_slabinfo_operations = {
404 .open = slabinfo_open,
405 .read = seq_read,
406 .write = slabinfo_write,
407 .llseek = seq_lseek,
408 .release = seq_release,
409};
871751e2
AV
410
411#ifdef CONFIG_DEBUG_SLAB_LEAK
412extern struct seq_operations slabstats_op;
413static int slabstats_open(struct inode *inode, struct file *file)
414{
415 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
416 int ret = -ENOMEM;
417 if (n) {
418 ret = seq_open(file, &slabstats_op);
419 if (!ret) {
420 struct seq_file *m = file->private_data;
421 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
422 m->private = n;
423 n = NULL;
424 }
425 kfree(n);
426 }
427 return ret;
428}
429
430static int slabstats_release(struct inode *inode, struct file *file)
431{
432 struct seq_file *m = file->private_data;
433 kfree(m->private);
434 return seq_release(inode, file);
435}
436
437static struct file_operations proc_slabstats_operations = {
438 .open = slabstats_open,
439 .read = seq_read,
440 .llseek = seq_lseek,
441 .release = slabstats_release,
442};
443#endif
10cef602 444#endif
1da177e4
LT
445
446static int show_stat(struct seq_file *p, void *v)
447{
448 int i;
449 unsigned long jif;
450 cputime64_t user, nice, system, idle, iowait, irq, softirq, steal;
451 u64 sum = 0;
452
453 user = nice = system = idle = iowait =
454 irq = softirq = steal = cputime64_zero;
455 jif = - wall_to_monotonic.tv_sec;
456 if (wall_to_monotonic.tv_nsec)
457 --jif;
458
0a945022 459 for_each_possible_cpu(i) {
1da177e4
LT
460 int j;
461
462 user = cputime64_add(user, kstat_cpu(i).cpustat.user);
463 nice = cputime64_add(nice, kstat_cpu(i).cpustat.nice);
464 system = cputime64_add(system, kstat_cpu(i).cpustat.system);
465 idle = cputime64_add(idle, kstat_cpu(i).cpustat.idle);
466 iowait = cputime64_add(iowait, kstat_cpu(i).cpustat.iowait);
467 irq = cputime64_add(irq, kstat_cpu(i).cpustat.irq);
468 softirq = cputime64_add(softirq, kstat_cpu(i).cpustat.softirq);
469 steal = cputime64_add(steal, kstat_cpu(i).cpustat.steal);
470 for (j = 0 ; j < NR_IRQS ; j++)
471 sum += kstat_cpu(i).irqs[j];
472 }
473
474 seq_printf(p, "cpu %llu %llu %llu %llu %llu %llu %llu %llu\n",
475 (unsigned long long)cputime64_to_clock_t(user),
476 (unsigned long long)cputime64_to_clock_t(nice),
477 (unsigned long long)cputime64_to_clock_t(system),
478 (unsigned long long)cputime64_to_clock_t(idle),
479 (unsigned long long)cputime64_to_clock_t(iowait),
480 (unsigned long long)cputime64_to_clock_t(irq),
481 (unsigned long long)cputime64_to_clock_t(softirq),
482 (unsigned long long)cputime64_to_clock_t(steal));
483 for_each_online_cpu(i) {
484
485 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
486 user = kstat_cpu(i).cpustat.user;
487 nice = kstat_cpu(i).cpustat.nice;
488 system = kstat_cpu(i).cpustat.system;
489 idle = kstat_cpu(i).cpustat.idle;
490 iowait = kstat_cpu(i).cpustat.iowait;
491 irq = kstat_cpu(i).cpustat.irq;
492 softirq = kstat_cpu(i).cpustat.softirq;
493 steal = kstat_cpu(i).cpustat.steal;
494 seq_printf(p, "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu\n",
495 i,
496 (unsigned long long)cputime64_to_clock_t(user),
497 (unsigned long long)cputime64_to_clock_t(nice),
498 (unsigned long long)cputime64_to_clock_t(system),
499 (unsigned long long)cputime64_to_clock_t(idle),
500 (unsigned long long)cputime64_to_clock_t(iowait),
501 (unsigned long long)cputime64_to_clock_t(irq),
502 (unsigned long long)cputime64_to_clock_t(softirq),
503 (unsigned long long)cputime64_to_clock_t(steal));
504 }
505 seq_printf(p, "intr %llu", (unsigned long long)sum);
506
a1854611 507#if !defined(CONFIG_PPC64) && !defined(CONFIG_ALPHA) && !defined(CONFIG_IA64)
1da177e4
LT
508 for (i = 0; i < NR_IRQS; i++)
509 seq_printf(p, " %u", kstat_irqs(i));
510#endif
511
512 seq_printf(p,
513 "\nctxt %llu\n"
514 "btime %lu\n"
515 "processes %lu\n"
516 "procs_running %lu\n"
517 "procs_blocked %lu\n",
518 nr_context_switches(),
519 (unsigned long)jif,
520 total_forks,
521 nr_running(),
522 nr_iowait());
523
524 return 0;
525}
526
527static int stat_open(struct inode *inode, struct file *file)
528{
529 unsigned size = 4096 * (1 + num_possible_cpus() / 32);
530 char *buf;
531 struct seq_file *m;
532 int res;
533
534 /* don't ask for more than the kmalloc() max size, currently 128 KB */
535 if (size > 128 * 1024)
536 size = 128 * 1024;
537 buf = kmalloc(size, GFP_KERNEL);
538 if (!buf)
539 return -ENOMEM;
540
541 res = single_open(file, show_stat, NULL);
542 if (!res) {
543 m = file->private_data;
544 m->buf = buf;
545 m->size = size;
546 } else
547 kfree(buf);
548 return res;
549}
550static struct file_operations proc_stat_operations = {
551 .open = stat_open,
552 .read = seq_read,
553 .llseek = seq_lseek,
554 .release = single_release,
555};
556
1da177e4
LT
557/*
558 * /proc/interrupts
559 */
560static void *int_seq_start(struct seq_file *f, loff_t *pos)
561{
562 return (*pos <= NR_IRQS) ? pos : NULL;
563}
564
565static void *int_seq_next(struct seq_file *f, void *v, loff_t *pos)
566{
567 (*pos)++;
568 if (*pos > NR_IRQS)
569 return NULL;
570 return pos;
571}
572
573static void int_seq_stop(struct seq_file *f, void *v)
574{
575 /* Nothing to do */
576}
577
578
579extern int show_interrupts(struct seq_file *f, void *v); /* In arch code */
580static struct seq_operations int_seq_ops = {
581 .start = int_seq_start,
582 .next = int_seq_next,
583 .stop = int_seq_stop,
584 .show = show_interrupts
585};
586
587static int interrupts_open(struct inode *inode, struct file *filp)
588{
589 return seq_open(filp, &int_seq_ops);
590}
591
592static struct file_operations proc_interrupts_operations = {
593 .open = interrupts_open,
594 .read = seq_read,
595 .llseek = seq_lseek,
596 .release = seq_release,
597};
598
599static int filesystems_read_proc(char *page, char **start, off_t off,
600 int count, int *eof, void *data)
601{
602 int len = get_filesystem_list(page);
603 return proc_calc_metrics(page, start, off, count, eof, len);
604}
605
606static int cmdline_read_proc(char *page, char **start, off_t off,
607 int count, int *eof, void *data)
608{
609 int len;
610
611 len = sprintf(page, "%s\n", saved_command_line);
612 return proc_calc_metrics(page, start, off, count, eof, len);
613}
614
615static int locks_read_proc(char *page, char **start, off_t off,
616 int count, int *eof, void *data)
617{
618 int len = get_locks_status(page, start, off, count);
619
620 if (len < count)
621 *eof = 1;
622 return len;
623}
624
625static int execdomains_read_proc(char *page, char **start, off_t off,
626 int count, int *eof, void *data)
627{
628 int len = get_exec_domain_list(page);
629 return proc_calc_metrics(page, start, off, count, eof, len);
630}
631
632#ifdef CONFIG_MAGIC_SYSRQ
633/*
634 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
635 */
636static ssize_t write_sysrq_trigger(struct file *file, const char __user *buf,
637 size_t count, loff_t *ppos)
638{
639 if (count) {
640 char c;
641
642 if (get_user(c, buf))
643 return -EFAULT;
644 __handle_sysrq(c, NULL, NULL, 0);
645 }
646 return count;
647}
648
649static struct file_operations proc_sysrq_trigger_operations = {
650 .write = write_sysrq_trigger,
651};
652#endif
653
654struct proc_dir_entry *proc_root_kcore;
655
99ac48f5 656void create_seq_entry(char *name, mode_t mode, const struct file_operations *f)
1da177e4
LT
657{
658 struct proc_dir_entry *entry;
659 entry = create_proc_entry(name, mode, NULL);
660 if (entry)
661 entry->proc_fops = f;
662}
663
664void __init proc_misc_init(void)
665{
666 struct proc_dir_entry *entry;
667 static struct {
668 char *name;
669 int (*read_proc)(char*,char**,off_t,int,int*,void*);
670 } *p, simple_ones[] = {
671 {"loadavg", loadavg_read_proc},
672 {"uptime", uptime_read_proc},
673 {"meminfo", meminfo_read_proc},
674 {"version", version_read_proc},
675#ifdef CONFIG_PROC_HARDWARE
676 {"hardware", hardware_read_proc},
677#endif
678#ifdef CONFIG_STRAM_PROC
679 {"stram", stram_read_proc},
680#endif
1da177e4
LT
681 {"filesystems", filesystems_read_proc},
682 {"cmdline", cmdline_read_proc},
683 {"locks", locks_read_proc},
684 {"execdomains", execdomains_read_proc},
685 {NULL,}
686 };
687 for (p = simple_ones; p->name; p++)
688 create_proc_read_entry(p->name, 0, NULL, p->read_proc, NULL);
689
690 proc_symlink("mounts", NULL, "self/mounts");
691
692 /* And now for trickier ones */
693 entry = create_proc_entry("kmsg", S_IRUSR, &proc_root);
694 if (entry)
695 entry->proc_fops = &proc_kmsg_operations;
7170be5f 696 create_seq_entry("devices", 0, &proc_devinfo_operations);
1da177e4
LT
697 create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations);
698 create_seq_entry("partitions", 0, &proc_partitions_operations);
699 create_seq_entry("stat", 0, &proc_stat_operations);
700 create_seq_entry("interrupts", 0, &proc_interrupts_operations);
10cef602 701#ifdef CONFIG_SLAB
1da177e4 702 create_seq_entry("slabinfo",S_IWUSR|S_IRUGO,&proc_slabinfo_operations);
871751e2
AV
703#ifdef CONFIG_DEBUG_SLAB_LEAK
704 create_seq_entry("slab_allocators", 0 ,&proc_slabstats_operations);
705#endif
10cef602 706#endif
1da177e4
LT
707 create_seq_entry("buddyinfo",S_IRUGO, &fragmentation_file_operations);
708 create_seq_entry("vmstat",S_IRUGO, &proc_vmstat_file_operations);
295ab934 709 create_seq_entry("zoneinfo",S_IRUGO, &proc_zoneinfo_file_operations);
1da177e4
LT
710 create_seq_entry("diskstats", 0, &proc_diskstats_operations);
711#ifdef CONFIG_MODULES
712 create_seq_entry("modules", 0, &proc_modules_operations);
713#endif
714#ifdef CONFIG_SCHEDSTATS
715 create_seq_entry("schedstat", 0, &proc_schedstat_operations);
716#endif
717#ifdef CONFIG_PROC_KCORE
718 proc_root_kcore = create_proc_entry("kcore", S_IRUSR, NULL);
719 if (proc_root_kcore) {
720 proc_root_kcore->proc_fops = &proc_kcore_operations;
721 proc_root_kcore->size =
722 (size_t)high_memory - PAGE_OFFSET + PAGE_SIZE;
723 }
724#endif
666bfddb
VG
725#ifdef CONFIG_PROC_VMCORE
726 proc_vmcore = create_proc_entry("vmcore", S_IRUSR, NULL);
727 if (proc_vmcore)
728 proc_vmcore->proc_fops = &proc_vmcore_operations;
729#endif
1da177e4
LT
730#ifdef CONFIG_MAGIC_SYSRQ
731 entry = create_proc_entry("sysrq-trigger", S_IWUSR, NULL);
732 if (entry)
733 entry->proc_fops = &proc_sysrq_trigger_operations;
734#endif
1da177e4 735}
This page took 0.192679 seconds and 5 git commands to generate.