From 0bc834aec903cf83a8ff1536bb55b85d877f2025 Mon Sep 17 00:00:00 2001 From: David Howells Date: Sat, 27 Oct 2007 07:52:54 +0000 Subject: [PATCH] iget-stop-fuse-from-using-iget-and-read_inode-try Stop the FUSE filesystem from using read_inode(), which it doesn't use anyway. Signed-off-by: David Howells Cc: Miklos Szeredi Signed-off-by: Andrew Morton --- fs/fuse/inode.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/fs/fuse/inode.c b/fs/fuse/inode.c index 2cd2e1fec324..64549bd43544 100644 --- a/fs/fuse/inode.c +++ b/fs/fuse/inode.c @@ -75,11 +75,6 @@ static void fuse_destroy_inode(struct inode *inode) kmem_cache_free(fuse_inode_cachep, inode); } -static void fuse_read_inode(struct inode *inode) -{ - /* No op */ -} - void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req, unsigned long nodeid, u64 nlookup) { @@ -530,7 +525,6 @@ static struct inode *get_root_inode(struct super_block *sb, unsigned mode) static const struct super_operations fuse_super_operations = { .alloc_inode = fuse_alloc_inode, .destroy_inode = fuse_destroy_inode, - .read_inode = fuse_read_inode, .clear_inode = fuse_clear_inode, .drop_inode = generic_delete_inode, .remount_fs = fuse_remount_fs, -- 2.11.4.GIT