mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 12:11:40 +00:00
user_ns: get rid of duplicate code in net_ctl_permissions
Get rid of duplicate code in net_ctl_permissions and fix the comment. Signed-off-by: Zhao Hongjiang <zhaohongjiang@huawei.com> Signed-off-by: Eric W. Biederman <ebiederm@xmission.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
cff109768b
commit
86937c05cb
@ -51,10 +51,10 @@ static int net_ctl_permissions(struct ctl_table_header *head,
|
||||
int mode = (table->mode >> 6) & 7;
|
||||
return (mode << 6) | (mode << 3) | mode;
|
||||
}
|
||||
/* Allow netns root group to have the same assess as the root group */
|
||||
/* Allow netns root group to have the same access as the root group */
|
||||
if (gid_eq(root_gid, current_gid())) {
|
||||
int mode = (table->mode >> 3) & 7;
|
||||
return (mode << 3) | (mode << 3) | mode;
|
||||
return (mode << 3) | mode;
|
||||
}
|
||||
return table->mode;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user