diff options
author | Christoph Hellwig <hch@lst.de> | 2007-10-21 19:42:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-22 11:13:20 -0400 |
commit | 05da08048226cefd2ecc5fe925002d3cf849c7dd (patch) | |
tree | 968242a6581c1e0ecb933f8b8b374667fed600fe /fs/efs/super.c | |
parent | 1b961ac05a1624ac2883ec31a3601de7eb30ebdd (diff) |
efs: new export ops
Trivial switch over to the new generic helpers.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Cc: Neil Brown <neilb@suse.de>
Cc: "J. Bruce Fields" <bfields@fieldses.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/efs/super.c')
-rw-r--r-- | fs/efs/super.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/efs/super.c b/fs/efs/super.c index 25d0326c5f1c..d8ce21b82fba 100644 --- a/fs/efs/super.c +++ b/fs/efs/super.c | |||
@@ -114,7 +114,8 @@ static const struct super_operations efs_superblock_operations = { | |||
114 | }; | 114 | }; |
115 | 115 | ||
116 | static struct export_operations efs_export_ops = { | 116 | static struct export_operations efs_export_ops = { |
117 | .get_dentry = efs_get_dentry, | 117 | .fh_to_dentry = efs_fh_to_dentry, |
118 | .fh_to_parent = efs_fh_to_parent, | ||
118 | .get_parent = efs_get_parent, | 119 | .get_parent = efs_get_parent, |
119 | }; | 120 | }; |
120 | 121 | ||