Lines Matching defs:mode
161 umode_t mode, bool excl)
177 inode = jffs2_new_inode(dir_i, mode, ri);
208 jffs2_dbg(1, "%s(): Created ino #%lu with mode %o, nlink %d(%d). nrpages %ld\n",
441 static int jffs2_mkdir (struct inode *dir_i, struct dentry *dentry, umode_t mode)
454 mode |= S_IFDIR;
474 inode = jffs2_new_inode(dir_i, mode, ri);
612 static int jffs2_mknod (struct inode *dir_i, struct dentry *dentry, umode_t mode, dev_t rdev)
633 if (S_ISBLK(mode) || S_ISCHR(mode))
648 inode = jffs2_new_inode(dir_i, mode, ri);
723 rd->type = (mode & S_IFMT) >> 12;