Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ed56f34f authored by Dwight Engen's avatar Dwight Engen Committed by Ben Myers
Browse files

powerpc/spufs: convert userns uid/gid mount options to kuid/kgid

parent 5d5e3d57
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -620,12 +620,16 @@ spufs_parse_options(struct super_block *sb, char *options, struct inode *root)
		case Opt_uid:
			if (match_int(&args[0], &option))
				return 0;
			root->i_uid = option;
			root->i_uid = make_kuid(current_user_ns(), option);
			if (!uid_valid(root->i_uid))
				return 0;
			break;
		case Opt_gid:
			if (match_int(&args[0], &option))
				return 0;
			root->i_gid = option;
			root->i_gid = make_kgid(current_user_ns(), option);
			if (!gid_valid(root->i_gid))
				return 0;
			break;
		case Opt_mode:
			if (match_octal(&args[0], &option))