From: David Howells Stop the FUSE filesystem from using read_inode(), which it doesn't use anyway. Signed-off-by: David Howells Cc: Miklos Szeredi Acked-by: Christoph Hellwig Signed-off-by: Andrew Morton --- fs/fuse/inode.c | 6 ------ 1 file changed, 6 deletions(-) diff -puN fs/fuse/inode.c~iget-stop-fuse-from-using-iget-and-read_inode-try fs/fuse/inode.c --- a/fs/fuse/inode.c~iget-stop-fuse-from-using-iget-and-read_inode-try +++ a/fs/fuse/inode.c @@ -76,11 +76,6 @@ static void fuse_destroy_inode(struct in 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) { @@ -514,7 +509,6 @@ static struct inode *get_root_inode(stru 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, _