diff options
author | Christoph Hellwig <hch@lst.de> | 2007-10-21 16:42:09 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-22 08:13:20 -0700 |
commit | d425de704334dc2bad64ca6ea2ac20ef33c9e754 (patch) | |
tree | 5702b0ee4b47f3fd9423f1dfe5a889f43320a290 /fs/jfs/super.c | |
parent | 05da08048226cefd2ecc5fe925002d3cf849c7dd (diff) | |
download | linux-3.10-d425de704334dc2bad64ca6ea2ac20ef33c9e754.tar.gz linux-3.10-d425de704334dc2bad64ca6ea2ac20ef33c9e754.tar.bz2 linux-3.10-d425de704334dc2bad64ca6ea2ac20ef33c9e754.zip |
jfs: 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>
Cc: Dave Kleikamp <shaggy@austin.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/jfs/super.c')
-rw-r--r-- | fs/jfs/super.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/jfs/super.c b/fs/jfs/super.c index cff60c17194..81c3228ca45 100644 --- a/fs/jfs/super.c +++ b/fs/jfs/super.c @@ -738,7 +738,8 @@ static const struct super_operations jfs_super_operations = { }; static struct export_operations jfs_export_operations = { - .get_dentry = jfs_get_dentry, + .fh_to_dentry = jfs_fh_to_dentry, + .fh_to_parent = jfs_fh_to_parent, .get_parent = jfs_get_parent, }; |