summaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorAlexey Dobriyan <adobriyan@gmail.com>2008-10-04 13:49:34 +0400
committerAlexey Dobriyan <adobriyan@gmail.com>2008-10-23 14:25:35 +0400
commit4c150f6c30f5129bbce5c41568a285b1f7ca8d8b (patch)
tree2ffbd31a47cd326c059dfb970a05d789032ddb5b /fs
parent813dcf7a6e642feb1ea566b96ce2912249d2b57d (diff)
downloadlinux-4c150f6c30f5129bbce5c41568a285b1f7ca8d8b.tar.gz
linux-4c150f6c30f5129bbce5c41568a285b1f7ca8d8b.tar.xz
proc: move /proc/stram to m68k-specific code
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/proc/proc_misc.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/fs/proc/proc_misc.c b/fs/proc/proc_misc.c
index 542527f6630f..ec37d3aeaf19 100644
--- a/fs/proc/proc_misc.c
+++ b/fs/proc/proc_misc.c
@@ -63,7 +63,6 @@
* have a way to deal with that gracefully. Right now I used straightforward
* wrappers, but this needs further analysis wrt potential overflows.
*/
-extern int get_stram_list(char *);
extern int get_exec_domain_list(char *);
static int proc_calc_metrics(char *page, char **start, off_t off,
@@ -197,15 +196,6 @@ static const struct file_operations proc_vmstat_file_operations = {
.release = seq_release,
};
-#ifdef CONFIG_STRAM_PROC
-static int stram_read_proc(char *page, char **start, off_t off,
- int count, int *eof, void *data)
-{
- int len = get_stram_list(page);
- return proc_calc_metrics(page, start, off, count, eof, len);
-}
-#endif
-
#ifdef CONFIG_BLOCK
static int partitions_open(struct inode *inode, struct file *file)
{
@@ -658,9 +648,6 @@ void __init proc_misc_init(void)
char *name;
int (*read_proc)(char*,char**,off_t,int,int*,void*);
} *p, simple_ones[] = {
-#ifdef CONFIG_STRAM_PROC
- {"stram", stram_read_proc},
-#endif
{"filesystems", filesystems_read_proc},
{"cmdline", cmdline_read_proc},
{"execdomains", execdomains_read_proc},