[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20080901164354.GC24546@x200.localdomain>
Date: Mon, 1 Sep 2008 20:43:54 +0400
From: Alexey Dobriyan <adobriyan@...il.com>
To: akpm@...l.org
Cc: linux-kernel@...r.kernel.org
Subject: proc: remove dummy vmcore_open()
Empty ->open is equvivalent to always succeeding ->open.
Signed-off-by: Alexey Dobriyan <adobriyan@...il.com>
---
fs/proc/vmcore.c | 6 ------
1 file changed, 6 deletions(-)
--- a/fs/proc/vmcore.c
+++ b/fs/proc/vmcore.c
@@ -165,14 +165,8 @@ static ssize_t read_vmcore(struct file *file, char __user *buffer,
return acc;
}
-static int open_vmcore(struct inode *inode, struct file *filp)
-{
- return 0;
-}
-
const struct file_operations proc_vmcore_operations = {
.read = read_vmcore,
- .open = open_vmcore,
};
static struct vmcore* __init get_new_element(void)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists