|
@@ -442,14 +442,14 @@ struct inode *jffs2_new_inode (struct inode *dir_i, int mode, struct jffs2_raw_i
|
|
|
|
|
|
memset(ri, 0, sizeof(*ri));
|
|
memset(ri, 0, sizeof(*ri));
|
|
/* Set OS-specific defaults for new inodes */
|
|
/* Set OS-specific defaults for new inodes */
|
|
- ri->uid = cpu_to_je16(current->fsuid);
|
|
|
|
|
|
+ ri->uid = cpu_to_je16(current_fsuid());
|
|
|
|
|
|
if (dir_i->i_mode & S_ISGID) {
|
|
if (dir_i->i_mode & S_ISGID) {
|
|
ri->gid = cpu_to_je16(dir_i->i_gid);
|
|
ri->gid = cpu_to_je16(dir_i->i_gid);
|
|
if (S_ISDIR(mode))
|
|
if (S_ISDIR(mode))
|
|
mode |= S_ISGID;
|
|
mode |= S_ISGID;
|
|
} else {
|
|
} else {
|
|
- ri->gid = cpu_to_je16(current->fsgid);
|
|
|
|
|
|
+ ri->gid = cpu_to_je16(current_fsgid());
|
|
}
|
|
}
|
|
|
|
|
|
/* POSIX ACLs have to be processed now, at least partly.
|
|
/* POSIX ACLs have to be processed now, at least partly.
|