Reduce nesting in vn_access.
No functional changes.
This commit is contained in:
parent
2c383f119e
commit
a39d200bb9
@ -1994,23 +1994,23 @@ vn_access(vp, user_flags, cred, td)
|
||||
int error;
|
||||
|
||||
/* Flags == 0 means only check for existence. */
|
||||
error = 0;
|
||||
if (user_flags) {
|
||||
accmode = 0;
|
||||
if (user_flags & R_OK)
|
||||
accmode |= VREAD;
|
||||
if (user_flags & W_OK)
|
||||
accmode |= VWRITE;
|
||||
if (user_flags & X_OK)
|
||||
accmode |= VEXEC;
|
||||
if (user_flags == 0)
|
||||
return (0);
|
||||
|
||||
accmode = 0;
|
||||
if (user_flags & R_OK)
|
||||
accmode |= VREAD;
|
||||
if (user_flags & W_OK)
|
||||
accmode |= VWRITE;
|
||||
if (user_flags & X_OK)
|
||||
accmode |= VEXEC;
|
||||
#ifdef MAC
|
||||
error = mac_vnode_check_access(cred, vp, accmode);
|
||||
if (error != 0)
|
||||
return (error);
|
||||
error = mac_vnode_check_access(cred, vp, accmode);
|
||||
if (error != 0)
|
||||
return (error);
|
||||
#endif
|
||||
if ((accmode & VWRITE) == 0 || (error = vn_writechk(vp)) == 0)
|
||||
error = VOP_ACCESS(vp, accmode, cred, td);
|
||||
}
|
||||
if ((accmode & VWRITE) == 0 || (error = vn_writechk(vp)) == 0)
|
||||
error = VOP_ACCESS(vp, accmode, cred, td);
|
||||
return (error);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user