From 0eac955f4d56f49be7dacdefe119eb959570a413 Mon Sep 17 00:00:00 2001 From: Alexey Dobriyan Date: Sat, 4 Oct 2008 14:30:53 +0400 Subject: [PATCH] --- yaml --- r: 117650 b: refs/heads/master c: 659689280ad91d31235db79cda6c7c799c4d3781 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/fs/proc/proc_misc.c | 27 --------------------------- 2 files changed, 1 insertion(+), 28 deletions(-) diff --git a/[refs] b/[refs] index 97dd58a0753d..08e150edd348 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 6e62775ece1c83a84d86df44cfd8ea3e6c96ce23 +refs/heads/master: 659689280ad91d31235db79cda6c7c799c4d3781 diff --git a/trunk/fs/proc/proc_misc.c b/trunk/fs/proc/proc_misc.c index 424b9d03b1a0..e177f42496c4 100644 --- a/trunk/fs/proc/proc_misc.c +++ b/trunk/fs/proc/proc_misc.c @@ -57,24 +57,6 @@ #include #include "internal.h" -/* - * Warning: stuff below (imported functions) assumes that its output will fit - * into one page. For some of those functions it may be wrong. Moreover, we - * have a way to deal with that gracefully. Right now I used straightforward - * wrappers, but this needs further analysis wrt potential overflows. - */ - -static int proc_calc_metrics(char *page, char **start, off_t off, - int count, int *eof, int len) -{ - 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 fragmentation_open(struct inode *inode, struct file *file) { (void)inode; @@ -620,15 +602,6 @@ struct proc_dir_entry *proc_root_kcore; void __init proc_misc_init(void) { - static struct { - char *name; - int (*read_proc)(char*,char**,off_t,int,int*,void*); - } *p, simple_ones[] = { - {NULL,} - }; - for (p = simple_ones; p->name; p++) - create_proc_read_entry(p->name, 0, NULL, p->read_proc, NULL); - proc_symlink("mounts", NULL, "self/mounts"); /* And now for trickier ones */