aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/sysfs.h
diff options
context:
space:
mode:
Diffstat (limited to 'fs/sysfs/sysfs.h')
-rw-r--r--fs/sysfs/sysfs.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/fs/sysfs/sysfs.h b/fs/sysfs/sysfs.h
index 6f8aaf3805d2..06b5085804a1 100644
--- a/fs/sysfs/sysfs.h
+++ b/fs/sysfs/sysfs.h
@@ -34,7 +34,7 @@ struct sysfs_dirent {
34 struct sysfs_elem_bin_attr bin_attr; 34 struct sysfs_elem_bin_attr bin_attr;
35 } s_elem; 35 } s_elem;
36 36
37 int s_type; 37 unsigned int s_flags;
38 umode_t s_mode; 38 umode_t s_mode;
39 ino_t s_ino; 39 ino_t s_ino;
40 struct dentry * s_dentry; 40 struct dentry * s_dentry;
@@ -86,6 +86,11 @@ extern const struct file_operations bin_fops;
86extern const struct inode_operations sysfs_dir_inode_operations; 86extern const struct inode_operations sysfs_dir_inode_operations;
87extern const struct inode_operations sysfs_symlink_inode_operations; 87extern const struct inode_operations sysfs_symlink_inode_operations;
88 88
89static inline unsigned int sysfs_type(struct sysfs_dirent *sd)
90{
91 return sd->s_flags & SYSFS_TYPE_MASK;
92}
93
89static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd) 94static inline struct sysfs_dirent * sysfs_get(struct sysfs_dirent * sd)
90{ 95{
91 if (sd) { 96 if (sd) {