mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
infiniband: umode_t noise, including open-coded S_ISDIR()
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
faef2b6c99
commit
f9ec80061a
2 changed files with 6 additions and 6 deletions
|
@ -46,7 +46,7 @@
|
||||||
static struct super_block *ipath_super;
|
static struct super_block *ipath_super;
|
||||||
|
|
||||||
static int ipathfs_mknod(struct inode *dir, struct dentry *dentry,
|
static int ipathfs_mknod(struct inode *dir, struct dentry *dentry,
|
||||||
int mode, const struct file_operations *fops,
|
umode_t mode, const struct file_operations *fops,
|
||||||
void *data)
|
void *data)
|
||||||
{
|
{
|
||||||
int error;
|
int error;
|
||||||
|
@ -61,7 +61,7 @@ static int ipathfs_mknod(struct inode *dir, struct dentry *dentry,
|
||||||
inode->i_mode = mode;
|
inode->i_mode = mode;
|
||||||
inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
|
inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
|
||||||
inode->i_private = data;
|
inode->i_private = data;
|
||||||
if ((mode & S_IFMT) == S_IFDIR) {
|
if (S_ISDIR(mode)) {
|
||||||
inode->i_op = &simple_dir_inode_operations;
|
inode->i_op = &simple_dir_inode_operations;
|
||||||
inc_nlink(inode);
|
inc_nlink(inode);
|
||||||
inc_nlink(dir);
|
inc_nlink(dir);
|
||||||
|
@ -76,7 +76,7 @@ static int ipathfs_mknod(struct inode *dir, struct dentry *dentry,
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int create_file(const char *name, mode_t mode,
|
static int create_file(const char *name, umode_t mode,
|
||||||
struct dentry *parent, struct dentry **dentry,
|
struct dentry *parent, struct dentry **dentry,
|
||||||
const struct file_operations *fops, void *data)
|
const struct file_operations *fops, void *data)
|
||||||
{
|
{
|
||||||
|
|
|
@ -47,7 +47,7 @@ static struct super_block *qib_super;
|
||||||
#define private2dd(file) ((file)->f_dentry->d_inode->i_private)
|
#define private2dd(file) ((file)->f_dentry->d_inode->i_private)
|
||||||
|
|
||||||
static int qibfs_mknod(struct inode *dir, struct dentry *dentry,
|
static int qibfs_mknod(struct inode *dir, struct dentry *dentry,
|
||||||
int mode, const struct file_operations *fops,
|
umode_t mode, const struct file_operations *fops,
|
||||||
void *data)
|
void *data)
|
||||||
{
|
{
|
||||||
int error;
|
int error;
|
||||||
|
@ -67,7 +67,7 @@ static int qibfs_mknod(struct inode *dir, struct dentry *dentry,
|
||||||
inode->i_mtime = inode->i_atime;
|
inode->i_mtime = inode->i_atime;
|
||||||
inode->i_ctime = inode->i_atime;
|
inode->i_ctime = inode->i_atime;
|
||||||
inode->i_private = data;
|
inode->i_private = data;
|
||||||
if ((mode & S_IFMT) == S_IFDIR) {
|
if (S_ISDIR(mode)) {
|
||||||
inode->i_op = &simple_dir_inode_operations;
|
inode->i_op = &simple_dir_inode_operations;
|
||||||
inc_nlink(inode);
|
inc_nlink(inode);
|
||||||
inc_nlink(dir);
|
inc_nlink(dir);
|
||||||
|
@ -82,7 +82,7 @@ static int qibfs_mknod(struct inode *dir, struct dentry *dentry,
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int create_file(const char *name, mode_t mode,
|
static int create_file(const char *name, umode_t mode,
|
||||||
struct dentry *parent, struct dentry **dentry,
|
struct dentry *parent, struct dentry **dentry,
|
||||||
const struct file_operations *fops, void *data)
|
const struct file_operations *fops, void *data)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue