diff options
author | Brian Behlendorf <[email protected]> | 2011-10-10 10:42:59 -0700 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2011-10-11 10:25:59 -0700 |
commit | 86f35f34f419f6eaff53b25f463c13f72186b103 (patch) | |
tree | 4b979ea0b5bf6ea5b7b131c685fc1c867c609f11 /cmd/ztest | |
parent | 3646c3f2b5c2c54b3aef448aa136e04f85c6c656 (diff) |
Export symbols for the VFS API
Export all symbols already marked extern in the zfs_vfsops.h
header. Several non-static symbols have also been added to
the header and exportewd. This allows external modules to
more easily create and manipulate properly created ZFS
filesystem type datasets.
Rename zfsvfs_teardown() to zfs_sb_teardown and export it.
This is done simply for consistency with the rest of the code
base. All other zfsvfs_* functions have already been renamed.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'cmd/ztest')
-rw-r--r-- | cmd/ztest/ztest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ztest/ztest.c b/cmd/ztest/ztest.c index 715815859..72d511b06 100644 --- a/cmd/ztest/ztest.c +++ b/cmd/ztest/ztest.c @@ -2123,7 +2123,7 @@ ztest_zil_remount(ztest_ds_t *zd, uint64_t id) (void) rw_enter(&zd->zd_zilog_lock, RW_WRITER); - /* zfsvfs_teardown() */ + /* zfs_sb_teardown() */ zil_close(zd->zd_zilog); /* zfsvfs_setup() */ |