]> git.proxmox.com Git - mirror_zfs.git/blobdiff - module/zfs/zfs_vfsops.c
cstyle: Resolve C style issues
[mirror_zfs.git] / module / zfs / zfs_vfsops.c
index 90f9055afdc5021abe93b1d9d587cfc7dce7e837..c64854d7b343d86428e7f0233bbfae9dcec6e945 100644 (file)
@@ -20,6 +20,7 @@
  */
 /*
  * Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2013 by Delphix. All rights reserved.
  */
 
 /* Portions Copyright 2010 Robert Milkowski */
@@ -49,6 +50,7 @@
 #include <sys/spa.h>
 #include <sys/zap.h>
 #include <sys/sa.h>
+#include <sys/sa_impl.h>
 #include <sys/varargs.h>
 #include <sys/policy.h>
 #include <sys/atomic.h>
@@ -63,7 +65,6 @@
 #include <sys/dnlc.h>
 #include <sys/dmu_objset.h>
 #include <sys/spa_boot.h>
-#include <sys/sa.h>
 #include <sys/zpl.h>
 #include "zfs_comutil.h"
 
@@ -153,6 +154,30 @@ xattr_changed_cb(void *arg, uint64_t newval)
        }
 }
 
+static void
+acltype_changed_cb(void *arg, uint64_t newval)
+{
+       zfs_sb_t *zsb = arg;
+
+       switch (newval) {
+       case ZFS_ACLTYPE_OFF:
+               zsb->z_acl_type = ZFS_ACLTYPE_OFF;
+               zsb->z_sb->s_flags &= ~MS_POSIXACL;
+               break;
+       case ZFS_ACLTYPE_POSIXACL:
+#ifdef CONFIG_FS_POSIX_ACL
+               zsb->z_acl_type = ZFS_ACLTYPE_POSIXACL;
+               zsb->z_sb->s_flags |= MS_POSIXACL;
+#else
+               zsb->z_acl_type = ZFS_ACLTYPE_OFF;
+               zsb->z_sb->s_flags &= ~MS_POSIXACL;
+#endif /* CONFIG_FS_POSIX_ACL */
+               break;
+       default:
+               break;
+       }
+}
+
 static void
 blksz_changed_cb(void *arg, uint64_t newval)
 {
@@ -233,10 +258,11 @@ zfs_register_callbacks(zfs_sb_t *zsb)
 {
        struct dsl_dataset *ds = NULL;
        objset_t *os = zsb->z_os;
+       boolean_t do_readonly = B_FALSE;
        int error = 0;
 
        if (zfs_is_readonly(zsb) || !spa_writeable(dmu_objset_spa(os)))
-               readonly_changed_cb(zsb, B_TRUE);
+               do_readonly = B_TRUE;
 
        /*
         * Register property callbacks.
@@ -246,31 +272,38 @@ zfs_register_callbacks(zfs_sb_t *zsb)
         * overboard...
         */
        ds = dmu_objset_ds(os);
+       dsl_pool_config_enter(dmu_objset_pool(os), FTAG);
        error = dsl_prop_register(ds,
-           "atime", atime_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_ATIME), atime_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "xattr", xattr_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_XATTR), xattr_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "recordsize", blksz_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_RECORDSIZE), blksz_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "readonly", readonly_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_READONLY), readonly_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "devices", devices_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_DEVICES), devices_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "setuid", setuid_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_SETUID), setuid_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "exec", exec_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_EXEC), exec_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "snapdir", snapdir_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_SNAPDIR), snapdir_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "aclinherit", acl_inherit_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_ACLTYPE), acltype_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "vscan", vscan_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_ACLINHERIT), acl_inherit_changed_cb, zsb);
        error = error ? error : dsl_prop_register(ds,
-           "nbmand", nbmand_changed_cb, zsb);
+           zfs_prop_to_name(ZFS_PROP_VSCAN), vscan_changed_cb, zsb);
+       error = error ? error : dsl_prop_register(ds,
+           zfs_prop_to_name(ZFS_PROP_NBMAND), nbmand_changed_cb, zsb);
+       dsl_pool_config_exit(dmu_objset_pool(os), FTAG);
        if (error)
                goto unregister;
 
+       if (do_readonly)
+               readonly_changed_cb(zsb, B_TRUE);
+
        return (0);
 
 unregister:
@@ -279,18 +312,30 @@ unregister:
         * registered, but this is OK; it will simply return ENOMSG,
         * which we will ignore.
         */
-       (void) dsl_prop_unregister(ds, "atime", atime_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "xattr", xattr_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "recordsize", blksz_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "readonly", readonly_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "devices", devices_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "setuid", setuid_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "exec", exec_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "aclinherit", acl_inherit_changed_cb,
-           zsb);
-       (void) dsl_prop_unregister(ds, "vscan", vscan_changed_cb, zsb);
-       (void) dsl_prop_unregister(ds, "nbmand", nbmand_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_ATIME),
+           atime_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_XATTR),
+           xattr_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_RECORDSIZE),
+           blksz_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_READONLY),
+           readonly_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_DEVICES),
+           devices_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_SETUID),
+           setuid_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_EXEC),
+           exec_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_SNAPDIR),
+           snapdir_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_ACLTYPE),
+           acltype_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_ACLINHERIT),
+           acl_inherit_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_VSCAN),
+           vscan_changed_cb, zsb);
+       (void) dsl_prop_unregister(ds, zfs_prop_to_name(ZFS_PROP_NBMAND),
+           nbmand_changed_cb, zsb);
 
        return (error);
 }
@@ -300,14 +345,11 @@ static int
 zfs_space_delta_cb(dmu_object_type_t bonustype, void *data,
     uint64_t *userp, uint64_t *groupp)
 {
-       znode_phys_t *znp = data;
-       int error = 0;
-
        /*
         * Is it a valid type of object to track?
         */
        if (bonustype != DMU_OT_ZNODE && bonustype != DMU_OT_SA)
-               return (ENOENT);
+               return (SET_ERROR(ENOENT));
 
        /*
         * If we have a NULL data pointer
@@ -316,23 +358,21 @@ zfs_space_delta_cb(dmu_object_type_t bonustype, void *data,
         * use the same ids
         */
        if (data == NULL)
-               return (EEXIST);
+               return (SET_ERROR(EEXIST));
 
        if (bonustype == DMU_OT_ZNODE) {
+               znode_phys_t *znp = data;
                *userp = znp->zp_uid;
                *groupp = znp->zp_gid;
        } else {
                int hdrsize;
+               sa_hdr_phys_t *sap = data;
+               sa_hdr_phys_t sa = *sap;
+               boolean_t swap = B_FALSE;
 
                ASSERT(bonustype == DMU_OT_SA);
-               hdrsize = sa_hdrsize(data);
 
-               if (hdrsize != 0) {
-                       *userp = *((uint64_t *)((uintptr_t)data + hdrsize +
-                           SA_UID_OFFSET));
-                       *groupp = *((uint64_t *)((uintptr_t)data + hdrsize +
-                           SA_GID_OFFSET));
-               } else {
+               if (sa.sa_magic == 0) {
                        /*
                         * This should only happen for newly created
                         * files that haven't had the znode data filled
@@ -340,9 +380,28 @@ zfs_space_delta_cb(dmu_object_type_t bonustype, void *data,
                         */
                        *userp = 0;
                        *groupp = 0;
+                       return (0);
+               }
+               if (sa.sa_magic == BSWAP_32(SA_MAGIC)) {
+                       sa.sa_magic = SA_MAGIC;
+                       sa.sa_layout_info = BSWAP_16(sa.sa_layout_info);
+                       swap = B_TRUE;
+               } else {
+                       VERIFY3U(sa.sa_magic, ==, SA_MAGIC);
+               }
+
+               hdrsize = sa_hdrsize(&sa);
+               VERIFY3U(hdrsize, >=, sizeof (sa_hdr_phys_t));
+               *userp = *((uint64_t *)((uintptr_t)data + hdrsize +
+                   SA_UID_OFFSET));
+               *groupp = *((uint64_t *)((uintptr_t)data + hdrsize +
+                   SA_GID_OFFSET));
+               if (swap) {
+                       *userp = BSWAP_64(*userp);
+                       *groupp = BSWAP_64(*groupp);
                }
        }
-       return (error);
+       return (0);
 }
 
 static void
@@ -375,7 +434,7 @@ zfs_userquota_prop_to_obj(zfs_sb_t *zsb, zfs_userquota_prop_t type)
        case ZFS_PROP_GROUPQUOTA:
                return (zsb->z_groupquota_obj);
        default:
-               return (ENOTSUP);
+               return (SET_ERROR(ENOTSUP));
        }
        return (0);
 }
@@ -391,7 +450,7 @@ zfs_userspace_many(zfs_sb_t *zsb, zfs_userquota_prop_t type,
        uint64_t obj;
 
        if (!dmu_objset_userspace_present(zsb->z_os))
-               return (ENOTSUP);
+               return (SET_ERROR(ENOTSUP));
 
        obj = zfs_userquota_prop_to_obj(zsb, type);
        if (obj == 0) {
@@ -436,7 +495,7 @@ id_to_fuidstr(zfs_sb_t *zsb, const char *domain, uid_t rid,
        if (domain && domain[0]) {
                domainid = zfs_fuid_find_by_domain(zsb, domain, NULL, addok);
                if (domainid == -1)
-                       return (ENOENT);
+                       return (SET_ERROR(ENOENT));
        }
        fuid = FUID_ENCODE(domainid, rid);
        (void) sprintf(buf, "%llx", (longlong_t)fuid);
@@ -454,7 +513,7 @@ zfs_userspace_one(zfs_sb_t *zsb, zfs_userquota_prop_t type,
        *valp = 0;
 
        if (!dmu_objset_userspace_present(zsb->z_os))
-               return (ENOTSUP);
+               return (SET_ERROR(ENOTSUP));
 
        obj = zfs_userquota_prop_to_obj(zsb, type);
        if (obj == 0)
@@ -482,10 +541,10 @@ zfs_set_userquota(zfs_sb_t *zsb, zfs_userquota_prop_t type,
        boolean_t fuid_dirtied;
 
        if (type != ZFS_PROP_USERQUOTA && type != ZFS_PROP_GROUPQUOTA)
-               return (EINVAL);
+               return (SET_ERROR(EINVAL));
 
        if (zsb->z_version < ZPL_VERSION_USERSPACE)
-               return (ENOTSUP);
+               return (SET_ERROR(ENOTSUP));
 
        objp = (type == ZFS_PROP_USERQUOTA) ? &zsb->z_userquota_obj :
            &zsb->z_groupquota_obj;
@@ -616,7 +675,7 @@ zfs_sb_create(const char *osname, zfs_sb_t **zsbp)
                    "on a version %lld pool\n. Pool must be upgraded to mount "
                    "this file system.", (u_longlong_t)zsb->z_version,
                    (u_longlong_t)spa_version(dmu_objset_spa(os)));
-               error = ENOTSUP;
+               error = SET_ERROR(ENOTSUP);
                goto out;
        }
        if ((error = zfs_get_zplprop(os, ZFS_PROP_NORMALIZE, &zval)) != 0)
@@ -631,6 +690,10 @@ zfs_sb_create(const char *osname, zfs_sb_t **zsbp)
                goto out;
        zsb->z_case = (uint_t)zval;
 
+       if ((error = zfs_get_zplprop(os, ZFS_PROP_ACLTYPE, &zval)) != 0)
+               goto out;
+       zsb->z_acl_type = (uint_t)zval;
+
        /*
         * Fold case on file systems that are always or sometimes case
         * insensitive.
@@ -705,7 +768,7 @@ zfs_sb_create(const char *osname, zfs_sb_t **zsbp)
        mutex_init(&zsb->z_lock, NULL, MUTEX_DEFAULT, NULL);
        list_create(&zsb->z_all_znodes, sizeof (znode_t),
            offsetof(znode_t, z_link_node));
-       rrw_init(&zsb->z_teardown_lock);
+       rrw_init(&zsb->z_teardown_lock, B_FALSE);
        rw_init(&zsb->z_teardown_inactive_lock, NULL, RW_DEFAULT, NULL);
        rw_init(&zsb->z_fuid_lock, NULL, RW_DEFAULT, NULL);
        for (i = 0; i != ZFS_OBJ_MTX_SZ; i++)
@@ -872,6 +935,9 @@ zfs_unregister_callbacks(zfs_sb_t *zsb)
                VERIFY(dsl_prop_unregister(ds, "snapdir", snapdir_changed_cb,
                    zsb) == 0);
 
+               VERIFY(dsl_prop_unregister(ds, "acltype", acltype_changed_cb,
+                   zsb) == 0);
+
                VERIFY(dsl_prop_unregister(ds, "aclinherit",
                    acl_inherit_changed_cb, zsb) == 0);
 
@@ -886,13 +952,12 @@ EXPORT_SYMBOL(zfs_unregister_callbacks);
 
 #ifdef HAVE_MLSLABEL
 /*
- * zfs_check_global_label:
- *     Check that the hex label string is appropriate for the dataset
- *     being mounted into the global_zone proper.
+ * Check that the hex label string is appropriate for the dataset being
+ * mounted into the global_zone proper.
  *
- *     Return an error if the hex label string is not default or
- *     admin_low/admin_high.  For admin_low labels, the corresponding
- *     dataset must be readonly.
+ * Return an error if the hex label string is not default or
+ * admin_low/admin_high.  For admin_low labels, the corresponding
+ * dataset must be readonly.
  */
 int
 zfs_check_global_label(const char *dsname, const char *hexsl)
@@ -907,10 +972,10 @@ zfs_check_global_label(const char *dsname, const char *hexsl)
 
                if (dsl_prop_get_integer(dsname,
                    zfs_prop_to_name(ZFS_PROP_READONLY), &rdonly, NULL))
-                       return (EACCES);
+                       return (SET_ERROR(EACCES));
                return (rdonly ? 0 : EACCES);
        }
-       return (EACCES);
+       return (SET_ERROR(EACCES));
 }
 EXPORT_SYMBOL(zfs_check_global_label);
 #endif /* HAVE_MLSLABEL */
@@ -1016,7 +1081,7 @@ EXPORT_SYMBOL(zfs_sb_prune);
 #endif /* HAVE_SHRINK */
 
 /*
- * Teardown the zfs_sb_t::z_os.
+ * Teardown the zfs_sb_t.
  *
  * Note, if 'unmounting' if FALSE, we return with the 'z_teardown_lock'
  * and 'z_teardown_inactive_lock' held.
@@ -1037,14 +1102,15 @@ zfs_sb_teardown(zfs_sb_t *zsb, boolean_t unmounting)
                 * for non-snapshots.
                 */
                shrink_dcache_sb(zsb->z_parent->z_sb);
-               (void) spl_invalidate_inodes(zsb->z_parent->z_sb, 0);
        }
 
        /*
-        * Drain the iput_taskq to ensure all active references to the
+        * If someone has not already unmounted this file system,
+        * drain the iput_taskq to ensure all active references to the
         * zfs_sb_t have been handled only then can it be safely destroyed.
         */
-       taskq_wait(dsl_pool_iput_taskq(dmu_objset_pool(zsb->z_os)));
+       if (zsb->z_os)
+               taskq_wait(dsl_pool_iput_taskq(dmu_objset_pool(zsb->z_os)));
 
        /*
         * Close the zil. NB: Can't close the zil while zfs_inactive
@@ -1065,29 +1131,28 @@ zfs_sb_teardown(zfs_sb_t *zsb, boolean_t unmounting)
        if (!unmounting && (zsb->z_unmounted || zsb->z_os == NULL)) {
                rw_exit(&zsb->z_teardown_inactive_lock);
                rrw_exit(&zsb->z_teardown_lock, FTAG);
-               return (EIO);
+               return (SET_ERROR(EIO));
        }
 
        /*
-        * At this point there are no vops active, and any new vops will
-        * fail with EIO since we have z_teardown_lock for writer (only
-        * relavent for forced unmount).
+        * At this point there are no VFS ops active, and any new VFS ops
+        * will fail with EIO since we have z_teardown_lock for writer (only
+        * relevant for forced unmount).
         *
         * Release all holds on dbufs.
         */
        mutex_enter(&zsb->z_znodes_lock);
        for (zp = list_head(&zsb->z_all_znodes); zp != NULL;
-           zp = list_next(&zsb->z_all_znodes, zp))
-               if (zp->z_sa_hdl) {
-                       ASSERT(atomic_read(&ZTOI(zp)->i_count) > 0);
+           zp = list_next(&zsb->z_all_znodes, zp)) {
+               if (zp->z_sa_hdl)
                        zfs_znode_dmu_fini(zp);
-               }
+       }
        mutex_exit(&zsb->z_znodes_lock);
 
        /*
-        * If we are unmounting, set the unmounted flag and let new vops
+        * If we are unmounting, set the unmounted flag and let new VFS ops
         * unblock.  zfs_inactive will have the unmounted behavior, and all
-        * other vops will fail with EIO.
+        * other VFS ops will fail with EIO.
         */
        if (unmounting) {
                zsb->z_unmounted = B_TRUE;
@@ -1115,7 +1180,7 @@ zfs_sb_teardown(zfs_sb_t *zsb, boolean_t unmounting)
        if (dsl_dataset_is_dirty(dmu_objset_ds(zsb->z_os)) &&
            !zfs_is_readonly(zsb))
                txg_wait_synced(dmu_objset_pool(zsb->z_os), 0);
-       (void) dmu_objset_evict_dbufs(zsb->z_os);
+       dmu_objset_evict_dbufs(zsb->z_os);
 
        return (0);
 }
@@ -1172,6 +1237,9 @@ zfs_domount(struct super_block *sb, void *data, int silent)
        sb->s_op = &zpl_super_operations;
        sb->s_xattr = zpl_xattr_handlers;
        sb->s_export_op = &zpl_export_operations;
+#ifdef HAVE_S_D_OP
+       sb->s_d_op = &zpl_dentry_operations;
+#endif /* HAVE_S_D_OP */
 
        /* Set features for file system. */
        zfs_set_fuid_feature(zsb);
@@ -1181,9 +1249,14 @@ zfs_domount(struct super_block *sb, void *data, int silent)
 
                atime_changed_cb(zsb, B_FALSE);
                readonly_changed_cb(zsb, B_TRUE);
-               if ((error = dsl_prop_get_integer(osname,"xattr",&pval,NULL)))
+               if ((error = dsl_prop_get_integer(osname,
+                   "xattr", &pval, NULL)))
                        goto out;
                xattr_changed_cb(zsb, pval);
+               if ((error = dsl_prop_get_integer(osname,
+                   "acltype", &pval, NULL)))
+                       goto out;
+               acltype_changed_cb(zsb, pval);
                zsb->z_issnap = B_TRUE;
                zsb->z_os->os_sync = ZFS_SYNC_DISABLED;
 
@@ -1205,7 +1278,7 @@ zfs_domount(struct super_block *sb, void *data, int silent)
        sb->s_root = d_make_root(root_inode);
        if (sb->s_root == NULL) {
                (void) zfs_umount(sb);
-               error = ENOMEM;
+               error = SET_ERROR(ENOMEM);
                goto out;
        }
 
@@ -1320,7 +1393,7 @@ zfs_vget(struct super_block *sb, struct inode **ipp, fid_t *fidp)
 
                err = zfsctl_lookup_objset(sb, objsetid, &zsb);
                if (err)
-                       return (EINVAL);
+                       return (SET_ERROR(EINVAL));
 
                ZFS_ENTER(zsb);
        }
@@ -1335,7 +1408,7 @@ zfs_vget(struct super_block *sb, struct inode **ipp, fid_t *fidp)
                        fid_gen |= ((uint64_t)zfid->zf_gen[i]) << (8 * i);
        } else {
                ZFS_EXIT(zsb);
-               return (EINVAL);
+               return (SET_ERROR(EINVAL));
        }
 
        /* A zero fid_gen means we are in the .zfs control directories */
@@ -1369,7 +1442,7 @@ zfs_vget(struct super_block *sb, struct inode **ipp, fid_t *fidp)
                dprintf("znode gen (%u) != fid gen (%u)\n", zp_gen, fid_gen);
                iput(ZTOI(zp));
                ZFS_EXIT(zsb);
-               return (EINVAL);
+               return (SET_ERROR(EINVAL));
        }
 
        *ipp = ZTOI(zp);
@@ -1382,10 +1455,12 @@ zfs_vget(struct super_block *sb, struct inode **ipp, fid_t *fidp)
 EXPORT_SYMBOL(zfs_vget);
 
 /*
- * Block out VOPs and close zfs_sb_t::z_os
+ * Block out VFS ops and close zfs_sb_t
  *
  * Note, if successful, then we return with the 'z_teardown_lock' and
- * 'z_teardown_inactive_lock' write held.
+ * 'z_teardown_inactive_lock' write held.  We leave ownership of the underlying
+ * dataset and objset intact so that they can be atomically handed off during
+ * a subsequent rollback or recv operation and the resume thereafter.
  */
 int
 zfs_suspend_fs(zfs_sb_t *zsb)
@@ -1394,69 +1469,94 @@ zfs_suspend_fs(zfs_sb_t *zsb)
 
        if ((error = zfs_sb_teardown(zsb, B_FALSE)) != 0)
                return (error);
-       dmu_objset_disown(zsb->z_os, zsb);
 
        return (0);
 }
 EXPORT_SYMBOL(zfs_suspend_fs);
 
 /*
- * Reopen zfs_sb_t::z_os and release VOPs.
+ * Reopen zfs_sb_t and release VFS ops.
  */
 int
 zfs_resume_fs(zfs_sb_t *zsb, const char *osname)
 {
        int err, err2;
+       znode_t *zp;
+       uint64_t sa_obj = 0;
 
        ASSERT(RRW_WRITE_HELD(&zsb->z_teardown_lock));
        ASSERT(RW_WRITE_HELD(&zsb->z_teardown_inactive_lock));
 
-       err = dmu_objset_own(osname, DMU_OST_ZFS, B_FALSE, zsb, &zsb->z_os);
-       if (err) {
-               zsb->z_os = NULL;
-       } else {
-               znode_t *zp;
-               uint64_t sa_obj = 0;
+       /*
+        * We already own this, so just hold and rele it to update the
+        * objset_t, as the one we had before may have been evicted.
+        */
+       VERIFY0(dmu_objset_hold(osname, zsb, &zsb->z_os));
+       VERIFY3P(zsb->z_os->os_dsl_dataset->ds_owner, ==, zsb);
+       VERIFY(dsl_dataset_long_held(zsb->z_os->os_dsl_dataset));
+       dmu_objset_rele(zsb->z_os, zsb);
 
-               err2 = zap_lookup(zsb->z_os, MASTER_NODE_OBJ,
-                   ZFS_SA_ATTRS, 8, 1, &sa_obj);
+       /*
+        * Make sure version hasn't changed
+        */
 
-               if ((err || err2) && zsb->z_version >= ZPL_VERSION_SA)
-                       goto bail;
+       err = zfs_get_zplprop(zsb->z_os, ZFS_PROP_VERSION,
+           &zsb->z_version);
 
+       if (err)
+               goto bail;
 
-               if ((err = sa_setup(zsb->z_os, sa_obj,
-                   zfs_attr_table,  ZPL_END, &zsb->z_attr_table)) != 0)
-                       goto bail;
+       err = zap_lookup(zsb->z_os, MASTER_NODE_OBJ,
+           ZFS_SA_ATTRS, 8, 1, &sa_obj);
 
-               VERIFY(zfs_sb_setup(zsb, B_FALSE) == 0);
+       if (err && zsb->z_version >= ZPL_VERSION_SA)
+               goto bail;
 
-               /*
-                * Attempt to re-establish all the active znodes with
-                * their dbufs.  If a zfs_rezget() fails, then we'll let
-                * any potential callers discover that via ZFS_ENTER_VERIFY_VP
-                * when they try to use their znode.
-                */
-               mutex_enter(&zsb->z_znodes_lock);
-               for (zp = list_head(&zsb->z_all_znodes); zp;
-                   zp = list_next(&zsb->z_all_znodes, zp)) {
-                       (void) zfs_rezget(zp);
-               }
-               mutex_exit(&zsb->z_znodes_lock);
+       if ((err = sa_setup(zsb->z_os, sa_obj,
+           zfs_attr_table,  ZPL_END, &zsb->z_attr_table)) != 0)
+               goto bail;
+
+       if (zsb->z_version >= ZPL_VERSION_SA)
+               sa_register_update_callback(zsb->z_os,
+                   zfs_sa_upgrade);
+
+       VERIFY(zfs_sb_setup(zsb, B_FALSE) == 0);
 
+       zfs_set_fuid_feature(zsb);
+       zsb->z_rollback_time = jiffies;
+
+       /*
+        * Attempt to re-establish all the active inodes with their
+        * dbufs.  If a zfs_rezget() fails, then we unhash the inode
+        * and mark it stale.  This prevents a collision if a new
+        * inode/object is created which must use the same inode
+        * number.  The stale inode will be be released when the
+        * VFS prunes the dentry holding the remaining references
+        * on the stale inode.
+        */
+       mutex_enter(&zsb->z_znodes_lock);
+       for (zp = list_head(&zsb->z_all_znodes); zp;
+           zp = list_next(&zsb->z_all_znodes, zp)) {
+               err2 = zfs_rezget(zp);
+               if (err2) {
+                       remove_inode_hash(ZTOI(zp));
+                       zp->z_is_stale = B_TRUE;
+               }
        }
+       mutex_exit(&zsb->z_znodes_lock);
 
 bail:
-       /* release the VOPs */
+       /* release the VFS ops */
        rw_exit(&zsb->z_teardown_inactive_lock);
        rrw_exit(&zsb->z_teardown_lock, FTAG);
 
        if (err) {
                /*
-                * Since we couldn't reopen zfs_sb_t::z_os, force
+                * Since we couldn't setup the sa framework, try to force
                 * unmount this file system.
                 */
-               (void) zfs_umount(zsb->z_sb);
+               if (zsb->z_os)
+                       (void) zfs_umount(zsb->z_sb);
        }
        return (err);
 }
@@ -1470,14 +1570,14 @@ zfs_set_version(zfs_sb_t *zsb, uint64_t newvers)
        dmu_tx_t *tx;
 
        if (newvers < ZPL_VERSION_INITIAL || newvers > ZPL_VERSION)
-               return (EINVAL);
+               return (SET_ERROR(EINVAL));
 
        if (newvers < zsb->z_version)
-               return (EINVAL);
+               return (SET_ERROR(EINVAL));
 
        if (zfs_spa_version_map(newvers) >
            spa_version(dmu_objset_spa(zsb->z_os)))
-               return (ENOTSUP);
+               return (SET_ERROR(ENOTSUP));
 
        tx = dmu_tx_create(os);
        dmu_tx_hold_zap(tx, MASTER_NODE_OBJ, B_FALSE, ZPL_VERSION_STR);
@@ -1510,22 +1610,20 @@ zfs_set_version(zfs_sb_t *zsb, uint64_t newvers)
 
                error = zap_add(os, MASTER_NODE_OBJ,
                    ZFS_SA_ATTRS, 8, 1, &sa_obj, tx);
-               ASSERT3U(error, ==, 0);
+               ASSERT0(error);
 
                VERIFY(0 == sa_set_sa_object(os, sa_obj));
                sa_register_update_callback(os, zfs_sa_upgrade);
        }
 
-       spa_history_log_internal(LOG_DS_UPGRADE,
-           dmu_objset_spa(os), tx, "oldver=%llu newver=%llu dataset = %llu",
-           zsb->z_version, newvers, dmu_objset_id(os));
+       spa_history_log_internal_ds(dmu_objset_ds(os), "upgrade", tx,
+           "from %llu to %llu", zsb->z_version, newvers);
 
        dmu_tx_commit(tx);
 
        zsb->z_version = newvers;
 
-       if (zsb->z_version >= ZPL_VERSION_FUID)
-               zfs_set_fuid_feature(zsb);
+       zfs_set_fuid_feature(zsb);
 
        return (0);
 }
@@ -1538,7 +1636,7 @@ int
 zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value)
 {
        const char *pname;
-       int error = ENOENT;
+       int error = SET_ERROR(ENOENT);
 
        /*
         * Look up the file system's value for the property.  For the
@@ -1565,6 +1663,9 @@ zfs_get_zplprop(objset_t *os, zfs_prop_t prop, uint64_t *value)
                case ZFS_PROP_CASE:
                        *value = ZFS_CASE_SENSITIVE;
                        break;
+               case ZFS_PROP_ACLTYPE:
+                       *value = ZFS_ACLTYPE_OFF;
+                       break;
                default:
                        return (error);
                }
@@ -1587,6 +1688,7 @@ zfs_init(void)
 void
 zfs_fini(void)
 {
+       taskq_wait(system_taskq);
        unregister_filesystem(&zpl_fs_type);
        zfs_znode_fini();
        zfsctl_fini();