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.
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>
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>
30 #include <linux/mmzone.h>
31 #include <linux/pagemap.h>
32 #include <linux/interrupt.h>
33 #include <linux/swap.h>
34 #include <linux/slab.h>
35 #include <linux/genhd.h>
36 #include <linux/smp.h>
37 #include <linux/signal.h>
38 #include <linux/module.h>
39 #include <linux/init.h>
40 #include <linux/seq_file.h>
41 #include <linux/times.h>
42 #include <linux/profile.h>
43 #include <linux/utsname.h>
44 #include <linux/blkdev.h>
45 #include <linux/hugetlb.h>
46 #include <linux/jiffies.h>
47 #include <linux/sysrq.h>
48 #include <linux/vmalloc.h>
49 #include <linux/crash_dump.h>
50 #include <linux/pid_namespace.h>
51 #include <linux/bootmem.h>
52 #include <asm/uaccess.h>
53 #include <asm/pgtable.h>
56 #include <asm/div64.h>
59 #define LOAD_INT(x) ((x) >> FSHIFT)
60 #define LOAD_FRAC(x) LOAD_INT(((x) & (FIXED_1-1)) * 100)
62 * Warning: stuff below (imported functions) assumes that its output will fit
63 * into one page. For some of those functions it may be wrong. Moreover, we
64 * have a way to deal with that gracefully. Right now I used straightforward
65 * wrappers, but this needs further analysis wrt potential overflows.
67 extern int get_hardware_list(char *);
68 extern int get_stram_list(char *);
69 extern int get_exec_domain_list(char *);
70 extern int get_dma_list(char *);
72 static int proc_calc_metrics(char *page
, char **start
, off_t off
,
73 int count
, int *eof
, int len
)
75 if (len
<= off
+count
) *eof
= 1;
78 if (len
>count
) len
= count
;
83 static int loadavg_read_proc(char *page
, char **start
, off_t off
,
84 int count
, int *eof
, void *data
)
91 seq
= read_seqbegin(&xtime_lock
);
92 a
= avenrun
[0] + (FIXED_1
/200);
93 b
= avenrun
[1] + (FIXED_1
/200);
94 c
= avenrun
[2] + (FIXED_1
/200);
95 } while (read_seqretry(&xtime_lock
, seq
));
97 len
= sprintf(page
,"%d.%02d %d.%02d %d.%02d %ld/%d %d\n",
98 LOAD_INT(a
), LOAD_FRAC(a
),
99 LOAD_INT(b
), LOAD_FRAC(b
),
100 LOAD_INT(c
), LOAD_FRAC(c
),
101 nr_running(), nr_threads
,
102 task_active_pid_ns(current
)->last_pid
);
103 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
106 static int uptime_read_proc(char *page
, char **start
, off_t off
,
107 int count
, int *eof
, void *data
)
109 struct timespec uptime
;
110 struct timespec idle
;
112 cputime_t idletime
= cputime_add(init_task
.utime
, init_task
.stime
);
114 do_posix_clock_monotonic_gettime(&uptime
);
115 monotonic_to_bootbased(&uptime
);
116 cputime_to_timespec(idletime
, &idle
);
117 len
= sprintf(page
,"%lu.%02lu %lu.%02lu\n",
118 (unsigned long) uptime
.tv_sec
,
119 (uptime
.tv_nsec
/ (NSEC_PER_SEC
/ 100)),
120 (unsigned long) idle
.tv_sec
,
121 (idle
.tv_nsec
/ (NSEC_PER_SEC
/ 100)));
123 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
126 static int meminfo_read_proc(char *page
, char **start
, off_t off
,
127 int count
, int *eof
, void *data
)
131 unsigned long committed
;
132 unsigned long allowed
;
133 struct vmalloc_info vmi
;
137 * display in kilobytes.
139 #define K(x) ((x) << (PAGE_SHIFT - 10))
142 committed
= atomic_read(&vm_committed_space
);
143 allowed
= ((totalram_pages
- hugetlb_total_pages())
144 * sysctl_overcommit_ratio
/ 100) + total_swap_pages
;
146 cached
= global_page_state(NR_FILE_PAGES
) -
147 total_swapcache_pages
- i
.bufferram
;
151 get_vmalloc_info(&vmi
);
154 * Tagged format, for easy grepping and expansion.
157 "MemTotal: %8lu kB\n"
161 "SwapCached: %8lu kB\n"
163 "Inactive: %8lu kB\n"
164 #ifdef CONFIG_HIGHMEM
165 "HighTotal: %8lu kB\n"
166 "HighFree: %8lu kB\n"
167 "LowTotal: %8lu kB\n"
170 "SwapTotal: %8lu kB\n"
171 "SwapFree: %8lu kB\n"
173 "Writeback: %8lu kB\n"
174 "AnonPages: %8lu kB\n"
177 "SReclaimable: %8lu kB\n"
178 "SUnreclaim: %8lu kB\n"
179 "PageTables: %8lu kB\n"
180 "NFS_Unstable: %8lu kB\n"
182 "CommitLimit: %8lu kB\n"
183 "Committed_AS: %8lu kB\n"
184 "VmallocTotal: %8lu kB\n"
185 "VmallocUsed: %8lu kB\n"
186 "VmallocChunk: %8lu kB\n",
191 K(total_swapcache_pages
),
192 K(global_page_state(NR_ACTIVE
)),
193 K(global_page_state(NR_INACTIVE
)),
194 #ifdef CONFIG_HIGHMEM
197 K(i
.totalram
-i
.totalhigh
),
198 K(i
.freeram
-i
.freehigh
),
202 K(global_page_state(NR_FILE_DIRTY
)),
203 K(global_page_state(NR_WRITEBACK
)),
204 K(global_page_state(NR_ANON_PAGES
)),
205 K(global_page_state(NR_FILE_MAPPED
)),
206 K(global_page_state(NR_SLAB_RECLAIMABLE
) +
207 global_page_state(NR_SLAB_UNRECLAIMABLE
)),
208 K(global_page_state(NR_SLAB_RECLAIMABLE
)),
209 K(global_page_state(NR_SLAB_UNRECLAIMABLE
)),
210 K(global_page_state(NR_PAGETABLE
)),
211 K(global_page_state(NR_UNSTABLE_NFS
)),
212 K(global_page_state(NR_BOUNCE
)),
215 (unsigned long)VMALLOC_TOTAL
>> 10,
217 vmi
.largest_chunk
>> 10
220 len
+= hugetlb_report_meminfo(page
+ len
);
222 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
226 extern const struct seq_operations fragmentation_op
;
227 static int fragmentation_open(struct inode
*inode
, struct file
*file
)
230 return seq_open(file
, &fragmentation_op
);
233 static const struct file_operations fragmentation_file_operations
= {
234 .open
= fragmentation_open
,
237 .release
= seq_release
,
240 extern const struct seq_operations pagetypeinfo_op
;
241 static int pagetypeinfo_open(struct inode
*inode
, struct file
*file
)
243 return seq_open(file
, &pagetypeinfo_op
);
246 static const struct file_operations pagetypeinfo_file_ops
= {
247 .open
= pagetypeinfo_open
,
250 .release
= seq_release
,
253 extern const struct seq_operations zoneinfo_op
;
254 static int zoneinfo_open(struct inode
*inode
, struct file
*file
)
256 return seq_open(file
, &zoneinfo_op
);
259 static const struct file_operations proc_zoneinfo_file_operations
= {
260 .open
= zoneinfo_open
,
263 .release
= seq_release
,
266 static int version_read_proc(char *page
, char **start
, off_t off
,
267 int count
, int *eof
, void *data
)
271 len
= snprintf(page
, PAGE_SIZE
, linux_proc_banner
,
275 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
278 extern const struct seq_operations cpuinfo_op
;
279 static int cpuinfo_open(struct inode
*inode
, struct file
*file
)
281 return seq_open(file
, &cpuinfo_op
);
284 static const struct file_operations proc_cpuinfo_operations
= {
285 .open
= cpuinfo_open
,
288 .release
= seq_release
,
291 static int devinfo_show(struct seq_file
*f
, void *v
)
293 int i
= *(loff_t
*) v
;
295 if (i
< CHRDEV_MAJOR_HASH_SIZE
) {
297 seq_printf(f
, "Character devices:\n");
302 i
-= CHRDEV_MAJOR_HASH_SIZE
;
304 seq_printf(f
, "\nBlock devices:\n");
311 static void *devinfo_start(struct seq_file
*f
, loff_t
*pos
)
313 if (*pos
< (BLKDEV_MAJOR_HASH_SIZE
+ CHRDEV_MAJOR_HASH_SIZE
))
318 static void *devinfo_next(struct seq_file
*f
, void *v
, loff_t
*pos
)
321 if (*pos
>= (BLKDEV_MAJOR_HASH_SIZE
+ CHRDEV_MAJOR_HASH_SIZE
))
326 static void devinfo_stop(struct seq_file
*f
, void *v
)
331 static const struct seq_operations devinfo_ops
= {
332 .start
= devinfo_start
,
333 .next
= devinfo_next
,
334 .stop
= devinfo_stop
,
338 static int devinfo_open(struct inode
*inode
, struct file
*filp
)
340 return seq_open(filp
, &devinfo_ops
);
343 static const struct file_operations proc_devinfo_operations
= {
344 .open
= devinfo_open
,
347 .release
= seq_release
,
350 extern const struct seq_operations vmstat_op
;
351 static int vmstat_open(struct inode
*inode
, struct file
*file
)
353 return seq_open(file
, &vmstat_op
);
355 static const struct file_operations proc_vmstat_file_operations
= {
359 .release
= seq_release
,
362 #ifdef CONFIG_PROC_HARDWARE
363 static int hardware_read_proc(char *page
, char **start
, off_t off
,
364 int count
, int *eof
, void *data
)
366 int len
= get_hardware_list(page
);
367 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
371 #ifdef CONFIG_STRAM_PROC
372 static int stram_read_proc(char *page
, char **start
, off_t off
,
373 int count
, int *eof
, void *data
)
375 int len
= get_stram_list(page
);
376 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
381 static int partitions_open(struct inode
*inode
, struct file
*file
)
383 return seq_open(file
, &partitions_op
);
385 static const struct file_operations proc_partitions_operations
= {
386 .open
= partitions_open
,
389 .release
= seq_release
,
392 static int diskstats_open(struct inode
*inode
, struct file
*file
)
394 return seq_open(file
, &diskstats_op
);
396 static const struct file_operations proc_diskstats_operations
= {
397 .open
= diskstats_open
,
400 .release
= seq_release
,
404 #ifdef CONFIG_MODULES
405 extern const struct seq_operations modules_op
;
406 static int modules_open(struct inode
*inode
, struct file
*file
)
408 return seq_open(file
, &modules_op
);
410 static const struct file_operations proc_modules_operations
= {
411 .open
= modules_open
,
414 .release
= seq_release
,
418 #ifdef CONFIG_SLABINFO
419 static int slabinfo_open(struct inode
*inode
, struct file
*file
)
421 return seq_open(file
, &slabinfo_op
);
423 static const struct file_operations proc_slabinfo_operations
= {
424 .open
= slabinfo_open
,
426 .write
= slabinfo_write
,
428 .release
= seq_release
,
431 #ifdef CONFIG_DEBUG_SLAB_LEAK
432 extern const struct seq_operations slabstats_op
;
433 static int slabstats_open(struct inode
*inode
, struct file
*file
)
435 unsigned long *n
= kzalloc(PAGE_SIZE
, GFP_KERNEL
);
438 ret
= seq_open(file
, &slabstats_op
);
440 struct seq_file
*m
= file
->private_data
;
441 *n
= PAGE_SIZE
/ (2 * sizeof(unsigned long));
450 static const struct file_operations proc_slabstats_operations
= {
451 .open
= slabstats_open
,
454 .release
= seq_release_private
,
459 static int show_stat(struct seq_file
*p
, void *v
)
463 cputime64_t user
, nice
, system
, idle
, iowait
, irq
, softirq
, steal
;
466 struct timespec boottime
;
467 unsigned int *per_irq_sum
;
469 per_irq_sum
= kzalloc(sizeof(unsigned int)*NR_IRQS
, GFP_KERNEL
);
473 user
= nice
= system
= idle
= iowait
=
474 irq
= softirq
= steal
= cputime64_zero
;
475 guest
= cputime64_zero
;
476 getboottime(&boottime
);
477 jif
= boottime
.tv_sec
;
479 for_each_possible_cpu(i
) {
482 user
= cputime64_add(user
, kstat_cpu(i
).cpustat
.user
);
483 nice
= cputime64_add(nice
, kstat_cpu(i
).cpustat
.nice
);
484 system
= cputime64_add(system
, kstat_cpu(i
).cpustat
.system
);
485 idle
= cputime64_add(idle
, kstat_cpu(i
).cpustat
.idle
);
486 iowait
= cputime64_add(iowait
, kstat_cpu(i
).cpustat
.iowait
);
487 irq
= cputime64_add(irq
, kstat_cpu(i
).cpustat
.irq
);
488 softirq
= cputime64_add(softirq
, kstat_cpu(i
).cpustat
.softirq
);
489 steal
= cputime64_add(steal
, kstat_cpu(i
).cpustat
.steal
);
490 guest
= cputime64_add(guest
, kstat_cpu(i
).cpustat
.guest
);
491 for (j
= 0; j
< NR_IRQS
; j
++) {
492 unsigned int temp
= kstat_cpu(i
).irqs
[j
];
494 per_irq_sum
[j
] += temp
;
498 seq_printf(p
, "cpu %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
499 (unsigned long long)cputime64_to_clock_t(user
),
500 (unsigned long long)cputime64_to_clock_t(nice
),
501 (unsigned long long)cputime64_to_clock_t(system
),
502 (unsigned long long)cputime64_to_clock_t(idle
),
503 (unsigned long long)cputime64_to_clock_t(iowait
),
504 (unsigned long long)cputime64_to_clock_t(irq
),
505 (unsigned long long)cputime64_to_clock_t(softirq
),
506 (unsigned long long)cputime64_to_clock_t(steal
),
507 (unsigned long long)cputime64_to_clock_t(guest
));
508 for_each_online_cpu(i
) {
510 /* Copy values here to work around gcc-2.95.3, gcc-2.96 */
511 user
= kstat_cpu(i
).cpustat
.user
;
512 nice
= kstat_cpu(i
).cpustat
.nice
;
513 system
= kstat_cpu(i
).cpustat
.system
;
514 idle
= kstat_cpu(i
).cpustat
.idle
;
515 iowait
= kstat_cpu(i
).cpustat
.iowait
;
516 irq
= kstat_cpu(i
).cpustat
.irq
;
517 softirq
= kstat_cpu(i
).cpustat
.softirq
;
518 steal
= kstat_cpu(i
).cpustat
.steal
;
519 guest
= kstat_cpu(i
).cpustat
.guest
;
521 "cpu%d %llu %llu %llu %llu %llu %llu %llu %llu %llu\n",
523 (unsigned long long)cputime64_to_clock_t(user
),
524 (unsigned long long)cputime64_to_clock_t(nice
),
525 (unsigned long long)cputime64_to_clock_t(system
),
526 (unsigned long long)cputime64_to_clock_t(idle
),
527 (unsigned long long)cputime64_to_clock_t(iowait
),
528 (unsigned long long)cputime64_to_clock_t(irq
),
529 (unsigned long long)cputime64_to_clock_t(softirq
),
530 (unsigned long long)cputime64_to_clock_t(steal
),
531 (unsigned long long)cputime64_to_clock_t(guest
));
533 seq_printf(p
, "intr %llu", (unsigned long long)sum
);
535 for (i
= 0; i
< NR_IRQS
; i
++)
536 seq_printf(p
, " %u", per_irq_sum
[i
]);
542 "procs_running %lu\n"
543 "procs_blocked %lu\n",
544 nr_context_switches(),
554 static int stat_open(struct inode
*inode
, struct file
*file
)
556 unsigned size
= 4096 * (1 + num_possible_cpus() / 32);
561 /* don't ask for more than the kmalloc() max size, currently 128 KB */
562 if (size
> 128 * 1024)
564 buf
= kmalloc(size
, GFP_KERNEL
);
568 res
= single_open(file
, show_stat
, NULL
);
570 m
= file
->private_data
;
577 static const struct file_operations proc_stat_operations
= {
581 .release
= single_release
,
587 static void *int_seq_start(struct seq_file
*f
, loff_t
*pos
)
589 return (*pos
<= NR_IRQS
) ? pos
: NULL
;
592 static void *int_seq_next(struct seq_file
*f
, void *v
, loff_t
*pos
)
600 static void int_seq_stop(struct seq_file
*f
, void *v
)
606 static const struct seq_operations int_seq_ops
= {
607 .start
= int_seq_start
,
608 .next
= int_seq_next
,
609 .stop
= int_seq_stop
,
610 .show
= show_interrupts
613 static int interrupts_open(struct inode
*inode
, struct file
*filp
)
615 return seq_open(filp
, &int_seq_ops
);
618 static const struct file_operations proc_interrupts_operations
= {
619 .open
= interrupts_open
,
622 .release
= seq_release
,
625 static int filesystems_read_proc(char *page
, char **start
, off_t off
,
626 int count
, int *eof
, void *data
)
628 int len
= get_filesystem_list(page
);
629 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
632 static int cmdline_read_proc(char *page
, char **start
, off_t off
,
633 int count
, int *eof
, void *data
)
637 len
= sprintf(page
, "%s\n", saved_command_line
);
638 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
641 static int locks_open(struct inode
*inode
, struct file
*filp
)
643 return seq_open(filp
, &locks_seq_operations
);
646 static const struct file_operations proc_locks_operations
= {
650 .release
= seq_release
,
653 static int execdomains_read_proc(char *page
, char **start
, off_t off
,
654 int count
, int *eof
, void *data
)
656 int len
= get_exec_domain_list(page
);
657 return proc_calc_metrics(page
, start
, off
, count
, eof
, len
);
660 #ifdef CONFIG_MAGIC_SYSRQ
662 * writing 'C' to /proc/sysrq-trigger is like sysrq-C
664 static ssize_t
write_sysrq_trigger(struct file
*file
, const char __user
*buf
,
665 size_t count
, loff_t
*ppos
)
670 if (get_user(c
, buf
))
672 __handle_sysrq(c
, NULL
, 0);
677 static const struct file_operations proc_sysrq_trigger_operations
= {
678 .write
= write_sysrq_trigger
,
682 #ifdef CONFIG_PROC_PAGE_MONITOR
683 #define KPMSIZE sizeof(u64)
684 #define KPMMASK (KPMSIZE - 1)
685 /* /proc/kpagecount - an array exposing page counts
687 * Each entry is a u64 representing the corresponding
688 * physical page count.
690 static ssize_t
kpagecount_read(struct file
*file
, char __user
*buf
,
691 size_t count
, loff_t
*ppos
)
693 u64 __user
*out
= (u64 __user
*)buf
;
695 unsigned long src
= *ppos
;
701 count
= min_t(size_t, count
, (max_pfn
* KPMSIZE
) - src
);
702 if (src
& KPMMASK
|| count
& KPMMASK
)
708 ppage
= pfn_to_page(pfn
);
713 pcount
= atomic_read(&ppage
->_count
);
715 if (put_user(pcount
, out
++)) {
723 *ppos
+= (char __user
*)out
- buf
;
725 ret
= (char __user
*)out
- buf
;
729 static struct file_operations proc_kpagecount_operations
= {
731 .read
= kpagecount_read
,
734 /* /proc/kpageflags - an array exposing page flags
736 * Each entry is a u64 representing the corresponding
737 * physical page flags.
740 /* These macros are used to decouple internal flags from exported ones */
744 #define KPF_REFERENCED 2
745 #define KPF_UPTODATE 3
750 #define KPF_WRITEBACK 8
751 #define KPF_RECLAIM 9
754 #define kpf_copy_bit(flags, srcpos, dstpos) (((flags >> srcpos) & 1) << dstpos)
756 static ssize_t
kpageflags_read(struct file
*file
, char __user
*buf
,
757 size_t count
, loff_t
*ppos
)
759 u64 __user
*out
= (u64 __user
*)buf
;
761 unsigned long src
= *ppos
;
767 count
= min_t(unsigned long, count
, (max_pfn
* KPMSIZE
) - src
);
768 if (src
& KPMMASK
|| count
& KPMMASK
)
774 ppage
= pfn_to_page(pfn
);
779 kflags
= ppage
->flags
;
781 uflags
= kpf_copy_bit(KPF_LOCKED
, PG_locked
, kflags
) |
782 kpf_copy_bit(kflags
, KPF_ERROR
, PG_error
) |
783 kpf_copy_bit(kflags
, KPF_REFERENCED
, PG_referenced
) |
784 kpf_copy_bit(kflags
, KPF_UPTODATE
, PG_uptodate
) |
785 kpf_copy_bit(kflags
, KPF_DIRTY
, PG_dirty
) |
786 kpf_copy_bit(kflags
, KPF_LRU
, PG_lru
) |
787 kpf_copy_bit(kflags
, KPF_ACTIVE
, PG_active
) |
788 kpf_copy_bit(kflags
, KPF_SLAB
, PG_slab
) |
789 kpf_copy_bit(kflags
, KPF_WRITEBACK
, PG_writeback
) |
790 kpf_copy_bit(kflags
, KPF_RECLAIM
, PG_reclaim
) |
791 kpf_copy_bit(kflags
, KPF_BUDDY
, PG_buddy
);
793 if (put_user(uflags
, out
++)) {
801 *ppos
+= (char __user
*)out
- buf
;
803 ret
= (char __user
*)out
- buf
;
807 static struct file_operations proc_kpageflags_operations
= {
809 .read
= kpageflags_read
,
811 #endif /* CONFIG_PROC_PAGE_MONITOR */
813 struct proc_dir_entry
*proc_root_kcore
;
815 void create_seq_entry(char *name
, mode_t mode
, const struct file_operations
*f
)
817 struct proc_dir_entry
*entry
;
818 entry
= create_proc_entry(name
, mode
, NULL
);
820 entry
->proc_fops
= f
;
823 void __init
proc_misc_init(void)
827 int (*read_proc
)(char*,char**,off_t
,int,int*,void*);
828 } *p
, simple_ones
[] = {
829 {"loadavg", loadavg_read_proc
},
830 {"uptime", uptime_read_proc
},
831 {"meminfo", meminfo_read_proc
},
832 {"version", version_read_proc
},
833 #ifdef CONFIG_PROC_HARDWARE
834 {"hardware", hardware_read_proc
},
836 #ifdef CONFIG_STRAM_PROC
837 {"stram", stram_read_proc
},
839 {"filesystems", filesystems_read_proc
},
840 {"cmdline", cmdline_read_proc
},
841 {"execdomains", execdomains_read_proc
},
844 for (p
= simple_ones
; p
->name
; p
++)
845 create_proc_read_entry(p
->name
, 0, NULL
, p
->read_proc
, NULL
);
847 proc_symlink("mounts", NULL
, "self/mounts");
849 /* And now for trickier ones */
852 struct proc_dir_entry
*entry
;
853 entry
= create_proc_entry("kmsg", S_IRUSR
, &proc_root
);
855 entry
->proc_fops
= &proc_kmsg_operations
;
858 create_seq_entry("locks", 0, &proc_locks_operations
);
859 create_seq_entry("devices", 0, &proc_devinfo_operations
);
860 create_seq_entry("cpuinfo", 0, &proc_cpuinfo_operations
);
862 create_seq_entry("partitions", 0, &proc_partitions_operations
);
864 create_seq_entry("stat", 0, &proc_stat_operations
);
865 create_seq_entry("interrupts", 0, &proc_interrupts_operations
);
866 #ifdef CONFIG_SLABINFO
867 create_seq_entry("slabinfo",S_IWUSR
|S_IRUGO
,&proc_slabinfo_operations
);
868 #ifdef CONFIG_DEBUG_SLAB_LEAK
869 create_seq_entry("slab_allocators", 0 ,&proc_slabstats_operations
);
872 create_seq_entry("buddyinfo",S_IRUGO
, &fragmentation_file_operations
);
873 create_seq_entry("pagetypeinfo", S_IRUGO
, &pagetypeinfo_file_ops
);
874 create_seq_entry("vmstat",S_IRUGO
, &proc_vmstat_file_operations
);
875 create_seq_entry("zoneinfo",S_IRUGO
, &proc_zoneinfo_file_operations
);
877 create_seq_entry("diskstats", 0, &proc_diskstats_operations
);
879 #ifdef CONFIG_MODULES
880 create_seq_entry("modules", 0, &proc_modules_operations
);
882 #ifdef CONFIG_SCHEDSTATS
883 create_seq_entry("schedstat", 0, &proc_schedstat_operations
);
885 #ifdef CONFIG_PROC_KCORE
886 proc_root_kcore
= create_proc_entry("kcore", S_IRUSR
, NULL
);
887 if (proc_root_kcore
) {
888 proc_root_kcore
->proc_fops
= &proc_kcore_operations
;
889 proc_root_kcore
->size
=
890 (size_t)high_memory
- PAGE_OFFSET
+ PAGE_SIZE
;
893 #ifdef CONFIG_PROC_PAGE_MONITOR
894 create_seq_entry("kpagecount", S_IRUSR
, &proc_kpagecount_operations
);
895 create_seq_entry("kpageflags", S_IRUSR
, &proc_kpageflags_operations
);
897 #ifdef CONFIG_PROC_VMCORE
898 proc_vmcore
= create_proc_entry("vmcore", S_IRUSR
, NULL
);
900 proc_vmcore
->proc_fops
= &proc_vmcore_operations
;
902 #ifdef CONFIG_MAGIC_SYSRQ
904 struct proc_dir_entry
*entry
;
905 entry
= create_proc_entry("sysrq-trigger", S_IWUSR
, NULL
);
907 entry
->proc_fops
= &proc_sysrq_trigger_operations
;