diff options
author | Balaji Rao <balajirrao@gmail.com> | 2008-07-20 16:31:56 -0400 |
---|---|---|
committer | Chris Mason <chris.mason@oracle.com> | 2008-09-25 11:04:06 -0400 |
commit | be6e8dc0ba84029997075a1ec77b4ddb863cbe15 (patch) | |
tree | ba65e49acd8bc55bfd2719a9d6ce65a81ee037c6 /fs/btrfs/super.c | |
parent | 1a54ef8c11a0eaef59ff418089f109c27f8bd48d (diff) |
NFS support for btrfs - v3
Date: Mon, 21 Jul 2008 02:01:56 +0530
Here's an implementation of NFS support for btrfs. It relies on the
fixes which are going in to 2.6.28 for the NFS readdir/lookup deadlock.
This uses the btrfs_iget helper introduced previously.
[dwmw2: Tidy up a little, switch to d_obtain_alias() w/compat routine,
change fh_type, store parent's root object ID where needed,
fix some get_parent() and fs_to_dentry() bugs]
Signed-off-by: Balaji Rao <balajirrao@gmail.com>
Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/super.c')
-rw-r--r-- | fs/btrfs/super.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c index eb4b357d05e1..e830e0ed409a 100644 --- a/fs/btrfs/super.c +++ b/fs/btrfs/super.c | |||
@@ -46,6 +46,7 @@ | |||
46 | #include "xattr.h" | 46 | #include "xattr.h" |
47 | #include "volumes.h" | 47 | #include "volumes.h" |
48 | #include "version.h" | 48 | #include "version.h" |
49 | #include "export.h" | ||
49 | 50 | ||
50 | #define BTRFS_SUPER_MAGIC 0x9123683E | 51 | #define BTRFS_SUPER_MAGIC 0x9123683E |
51 | 52 | ||
@@ -303,6 +304,7 @@ static int btrfs_fill_super(struct super_block * sb, | |||
303 | sb->s_maxbytes = MAX_LFS_FILESIZE; | 304 | sb->s_maxbytes = MAX_LFS_FILESIZE; |
304 | sb->s_magic = BTRFS_SUPER_MAGIC; | 305 | sb->s_magic = BTRFS_SUPER_MAGIC; |
305 | sb->s_op = &btrfs_super_ops; | 306 | sb->s_op = &btrfs_super_ops; |
307 | sb->s_export_op = &btrfs_export_ops; | ||
306 | sb->s_xattr = btrfs_xattr_handlers; | 308 | sb->s_xattr = btrfs_xattr_handlers; |
307 | sb->s_time_gran = 1; | 309 | sb->s_time_gran = 1; |
308 | sb->s_flags |= MS_POSIXACL; | 310 | sb->s_flags |= MS_POSIXACL; |