FreeBSD: 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. Done for future proofing. Reviewed-by: Ryan Moeller <ryan@iXsystems.com> Signed-off-by: Mateusz Guzik <mjguzik@gmail.com> Closes #11884
This commit is contained in:
parent
4568b5cfba
commit
a6b82cc0bb
|
@ -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