zfs: add missing seqc write begin/end around zfs_acl_chown_setattr
It happens to trip over an assert but does not matter for correctness at this time. However, do it for future proofing. Reported by: avg
This commit is contained in:
parent
1239a72221
commit
1d8510c1a6
@ -2756,7 +2756,9 @@ zfs_setattr(znode_t *zp, vattr_t *vap, int flags, cred_t *cr)
|
||||
err = zfs_acl_chown_setattr(zp);
|
||||
ASSERT(err == 0);
|
||||
if (attrzp) {
|
||||
vn_seqc_write_begin(ZTOV(attrzp));
|
||||
err = zfs_acl_chown_setattr(attrzp);
|
||||
vn_seqc_write_end(ZTOV(attrzp));
|
||||
ASSERT(err == 0);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user