|
@@ -1092,7 +1092,7 @@ static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
|
|
|
}
|
|
|
|
|
|
static struct inode *shmem_get_inode(struct super_block *sb, const struct inode *dir,
|
|
|
- int mode, dev_t dev, unsigned long flags)
|
|
|
+ umode_t mode, dev_t dev, unsigned long flags)
|
|
|
{
|
|
|
struct inode *inode;
|
|
|
struct shmem_inode_info *info;
|
|
@@ -2128,7 +2128,7 @@ static int shmem_show_options(struct seq_file *seq, struct vfsmount *vfs)
|
|
|
if (sbinfo->max_inodes != shmem_default_max_inodes())
|
|
|
seq_printf(seq, ",nr_inodes=%lu", sbinfo->max_inodes);
|
|
|
if (sbinfo->mode != (S_IRWXUGO | S_ISVTX))
|
|
|
- seq_printf(seq, ",mode=%03o", sbinfo->mode);
|
|
|
+ seq_printf(seq, ",mode=%03ho", sbinfo->mode);
|
|
|
if (sbinfo->uid != 0)
|
|
|
seq_printf(seq, ",uid=%u", sbinfo->uid);
|
|
|
if (sbinfo->gid != 0)
|
|
@@ -2239,7 +2239,7 @@ static void shmem_destroy_callback(struct rcu_head *head)
|
|
|
|
|
|
static void shmem_destroy_inode(struct inode *inode)
|
|
|
{
|
|
|
- if ((inode->i_mode & S_IFMT) == S_IFREG)
|
|
|
+ if (S_ISREG(inode->i_mode))
|
|
|
mpol_free_shared_policy(&SHMEM_I(inode)->policy);
|
|
|
call_rcu(&inode->i_rcu, shmem_destroy_callback);
|
|
|
}
|