exfat: 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/dda575de-11a7-4139-8a25-07957d311ed3@redhat.com
Signed-off-by: Christian Brauner <brauner@kernel.org>
This commit is contained in:
Eric Sandeen 2024-06-27 19:31:51 -05:00 committed by Christian Brauner
parent dcffad38c7
commit ffe1b94d74
No known key found for this signature in database
GPG key ID: 91C61BC06578DCA2

View file

@ -225,8 +225,8 @@ static const struct constant_table exfat_param_enums[] = {
}; };
static const struct fs_parameter_spec exfat_parameters[] = { static const struct fs_parameter_spec exfat_parameters[] = {
fsparam_u32("uid", Opt_uid), fsparam_uid("uid", Opt_uid),
fsparam_u32("gid", Opt_gid), fsparam_gid("gid", Opt_gid),
fsparam_u32oct("umask", Opt_umask), fsparam_u32oct("umask", Opt_umask),
fsparam_u32oct("dmask", Opt_dmask), fsparam_u32oct("dmask", Opt_dmask),
fsparam_u32oct("fmask", Opt_fmask), fsparam_u32oct("fmask", Opt_fmask),
@ -262,10 +262,10 @@ static int exfat_parse_param(struct fs_context *fc, struct fs_parameter *param)
switch (opt) { switch (opt) {
case Opt_uid: case Opt_uid:
opts->fs_uid = make_kuid(current_user_ns(), result.uint_32); opts->fs_uid = result.uid;
break; break;
case Opt_gid: case Opt_gid:
opts->fs_gid = make_kgid(current_user_ns(), result.uint_32); opts->fs_gid = result.gid;
break; break;
case Opt_umask: case Opt_umask:
opts->fs_fmask = result.uint_32; opts->fs_fmask = result.uint_32;