diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-09 02:54:55 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-09 02:54:55 +0000 |
commit | 493c987f7a352ca64fdb4dc03a21e24cbaf46f55 (patch) | |
tree | 184cddc0925e082c0500afd042f92e9f340fe890 /fs/proc | |
parent | 2d25612a92c62b5708d6d43f38d28c6141173328 (diff) |
Merge with Linux 2.4.0-pre3-test6.
Diffstat (limited to 'fs/proc')
-rw-r--r-- | fs/proc/proc_misc.c | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c index 9afe2d67c..5937878c9 100644 --- a/fs/proc/proc_misc.c +++ b/fs/proc/proc_misc.c @@ -508,18 +508,6 @@ static int swaps_read_proc(char *page, char **start, off_t off, return len; } -static int slabinfo_read_proc(char *page, char **start, off_t off, - int count, int *eof, void *data) -{ - int len = get_slabinfo(page); - if (len <= off+count) *eof = 1; - *start = page + off; - len -= off; - if (len>count) len = count; - if (len<0) len = 0; - return len; -} - static int memory_read_proc(char *page, char **start, off_t off, int count, int *eof, void *data) { @@ -671,4 +659,12 @@ void __init proc_misc_init(void) entry->proc_fops = &ppc_htab_operations; } #endif + { + struct proc_dir_entry *res = create_proc_entry("slabinfo", + S_IWUSR | S_IRUGO, NULL); + if (res) { + res->read_proc = slabinfo_read_proc; + res->write_proc = slabinfo_write_proc; + } + } } |