mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
efivarfs: Convert to new uid/gid option parsing helpers
Convert to new uid/gid option parsing helpers Signed-off-by: Eric Sandeen <sandeen@redhat.com> Link: https://lore.kernel.org/r/ff7c415c-43d4-4a1e-a987-246c781f8850@redhat.com Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
parent
49abee5991
commit
dcffad38c7
@ -275,8 +275,8 @@ enum {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static const struct fs_parameter_spec efivarfs_parameters[] = {
|
static const struct fs_parameter_spec efivarfs_parameters[] = {
|
||||||
fsparam_u32("uid", Opt_uid),
|
fsparam_uid("uid", Opt_uid),
|
||||||
fsparam_u32("gid", Opt_gid),
|
fsparam_gid("gid", Opt_gid),
|
||||||
{},
|
{},
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -293,14 +293,10 @@ static int efivarfs_parse_param(struct fs_context *fc, struct fs_parameter *para
|
|||||||
|
|
||||||
switch (opt) {
|
switch (opt) {
|
||||||
case Opt_uid:
|
case Opt_uid:
|
||||||
opts->uid = make_kuid(current_user_ns(), result.uint_32);
|
opts->uid = result.uid;
|
||||||
if (!uid_valid(opts->uid))
|
|
||||||
return -EINVAL;
|
|
||||||
break;
|
break;
|
||||||
case Opt_gid:
|
case Opt_gid:
|
||||||
opts->gid = make_kgid(current_user_ns(), result.uint_32);
|
opts->gid = result.gid;
|
||||||
if (!gid_valid(opts->gid))
|
|
||||||
return -EINVAL;
|
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
Loading…
Reference in New Issue
Block a user