diff options
author | loli10K <[email protected]> | 2020-11-16 18:10:29 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-11-16 09:10:29 -0800 |
commit | 4072f465bc3630bbab50afccfd6c7baf41afcc4c (patch) | |
tree | 3eabc85191eb9d0fb9dd788fe1e1305596d2a728 /tests/runfiles | |
parent | 2c210f68189c6f781be050bfdc890cd6dc231fea (diff) |
Fix 'zfs userspace' for received datasets in encrypted root
For encrypted receives, where user accounting is initially disabled on
creation, both 'zfs userspace' and 'zfs groupspace' fails with
EOPNOTSUPP: this is because dmu_objset_id_quota_upgrade_cb() forgets to
set OBJSET_FLAG_USERACCOUNTING_COMPLETE on the objset flags after a
successful dmu_objset_space_upgrade().
Reviewed-by: Brian Behlendorf <[email protected]>
Co-authored-by: Brian Behlendorf <[email protected]>
Signed-off-by: loli10K <[email protected]>
Closes #9501
Closes #9596
Diffstat (limited to 'tests/runfiles')
-rw-r--r-- | tests/runfiles/common.run | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runfiles/common.run b/tests/runfiles/common.run index c91da0a45..280537fe5 100644 --- a/tests/runfiles/common.run +++ b/tests/runfiles/common.run @@ -857,7 +857,7 @@ tests = [ 'userquota_004_pos', 'userquota_005_neg', 'userquota_006_pos', 'userquota_007_pos', 'userquota_008_pos', 'userquota_009_pos', 'userquota_010_pos', 'userquota_011_pos', 'userquota_012_neg', - 'userspace_001_pos', 'userspace_002_pos'] + 'userspace_001_pos', 'userspace_002_pos', 'userspace_encrypted'] tags = ['functional', 'userquota'] [tests/functional/vdev_zaps] |