diff options
author | Brian Behlendorf <[email protected]> | 2017-03-08 17:56:19 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-03-10 09:51:35 -0800 |
commit | f298b24ddf9695fb74603a257e2a58dd7baf0159 (patch) | |
tree | 1af22ecf10386cfa79555bd819a8948491a9f338 /module/zfs/zpl_super.c | |
parent | 0037b49e833a7073bee0ef3f6680f330f727769e (diff) |
Rename zfs_* functions
Several functions were renamed when ZFS was originally ported to
Linux. Revert the code to the original names to minimize the
delta with upstream OpenZFS.
zfs_sb_teardown -> zfsvfs_teardown
zfs_sb_create -> zfsvfs_create
zfs_sb_setup -> zfsvfs_setup
zfs_sb_free -> zfsvfs_free
get_zfs_sb -> getzfsvfs
zfs_sb_hold -> zfsvfs_hold
zfs_sb_rele -> zfsvfs_rele
zfs_sb_prune_aliases -> zfs_prune_aliases (Linux-only)
zfs_sb_prune -> zfs_prune (Linux only)
Align the zfs_vnops.h and zfs_vfsops.h with upstream as much
as possible. Several prototypes were removed and those that
remain were reordered.
Move the EXPORT_SYMBOL lines to the end of the source files
for consistency with the other source files.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'module/zfs/zpl_super.c')
-rw-r--r-- | module/zfs/zpl_super.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/module/zfs/zpl_super.c b/module/zfs/zpl_super.c index f45d068ba..16017ff44 100644 --- a/module/zfs/zpl_super.c +++ b/module/zfs/zpl_super.c @@ -495,7 +495,7 @@ zpl_prune_sb(int64_t nr_to_scan, void *arg) struct super_block *sb = (struct super_block *)arg; int objects = 0; - (void) -zfs_sb_prune(sb, nr_to_scan, &objects); + (void) -zfs_prune(sb, nr_to_scan, &objects); } #ifdef HAVE_NR_CACHED_OBJECTS |