Commit faef2b6c authored by Al Viro's avatar Al Viro

sysfs: propagate umode_t

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
parent 5b91aca0
...@@ -70,7 +70,7 @@ An attribute definition is simply: ...@@ -70,7 +70,7 @@ An attribute definition is simply:
struct attribute { struct attribute {
char * name; char * name;
struct module *owner; struct module *owner;
mode_t mode; umode_t mode;
}; };
......
...@@ -518,7 +518,7 @@ int sysfs_attr_ns(struct kobject *kobj, const struct attribute *attr, ...@@ -518,7 +518,7 @@ int sysfs_attr_ns(struct kobject *kobj, const struct attribute *attr,
} }
int sysfs_add_file_mode(struct sysfs_dirent *dir_sd, int sysfs_add_file_mode(struct sysfs_dirent *dir_sd,
const struct attribute *attr, int type, mode_t amode) const struct attribute *attr, int type, umode_t amode)
{ {
umode_t mode = (amode & S_IALLUGO) | S_IFREG; umode_t mode = (amode & S_IALLUGO) | S_IFREG;
struct sysfs_addrm_cxt acxt; struct sysfs_addrm_cxt acxt;
......
...@@ -187,7 +187,7 @@ int sysfs_setxattr(struct dentry *dentry, const char *name, const void *value, ...@@ -187,7 +187,7 @@ int sysfs_setxattr(struct dentry *dentry, const char *name, const void *value,
return error; return error;
} }
static inline void set_default_inode_attr(struct inode * inode, mode_t mode) static inline void set_default_inode_attr(struct inode * inode, umode_t mode)
{ {
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;
......
...@@ -79,7 +79,7 @@ struct sysfs_dirent { ...@@ -79,7 +79,7 @@ struct sysfs_dirent {
}; };
unsigned int s_flags; unsigned int s_flags;
unsigned short s_mode; umode_t s_mode;
ino_t s_ino; ino_t s_ino;
struct sysfs_inode_attrs *s_iattr; struct sysfs_inode_attrs *s_iattr;
}; };
...@@ -229,7 +229,7 @@ int sysfs_add_file(struct sysfs_dirent *dir_sd, ...@@ -229,7 +229,7 @@ int sysfs_add_file(struct sysfs_dirent *dir_sd,
const struct attribute *attr, int type); const struct attribute *attr, int type);
int sysfs_add_file_mode(struct sysfs_dirent *dir_sd, int sysfs_add_file_mode(struct sysfs_dirent *dir_sd,
const struct attribute *attr, int type, mode_t amode); const struct attribute *attr, int type, umode_t amode);
/* /*
* bin.c * bin.c
*/ */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment