Displaying 1 result from an estimated 1 matches for "a46300c".
Did you mean:
  3463000
  
2008 Feb 22
1
[PATCH] IGET: Remove initialisation of read_inode() super op from BTRFS
Remove the initialisation of read_inode() super op from BTRFS as it has been
dropped.
Signed-off-by: David Howells <dhowells@redhat.com>
---
 fs/btrfs/super.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index a46300c..612a34f 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -462,7 +462,6 @@ static struct super_operations btrfs_super_ops = {
 	.delete_inode	= btrfs_delete_inode,
 	.put_inode	= btrfs_put_inode,
 	.put_super	= btrfs_put_super,
-	.read_inode	= btrfs_read_locked_inode,
 	.write_super	= btrfs_...