David Howells
2008-Feb-22 05:47 UTC
[Btrfs-devel] [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_write_super, .sync_fs = btrfs_sync_fs, .write_inode = btrfs_write_inode,
Chris Mason
2008-Feb-22 05:56 UTC
[Btrfs-devel] [PATCH] IGET: Remove initialisation of read_inode() super op from BTRFS
On Thursday 21 February 2008, David Howells wrote:> Remove the initialisation of read_inode() super op from BTRFS as it has > been dropped.Thanks, something similar is already included in v0.13 ( you were just a few hours late ;) -chris