aboutsummaryrefslogtreecommitdiffstats
path: root/fs/sysfs/sysfs.h
diff options
context:
space:
mode:
authorTejun Heo <htejun@gmail.com>2007-09-20 03:05:12 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2007-10-12 17:51:11 -0400
commitdc2f75f0e0cac645c22c85bcf429683b3fa0d2d9 (patch)
tree775a89f5abae0cdc9688a32a6209d74c61cb5975 /fs/sysfs/sysfs.h
parentd6b4fd2faeb9ddf55ce09cf90b88981e579ee010 (diff)
sysfs: make sysfs_root a regular directory dirent
sysfs_root is different from a regular directory dirent in that it's of type SYSFS_ROOT and doesn't have a name. These differences aren't used by anybody and only adds to complexity. Make sysfs_root a regular directory dirent. Signed-off-by: Tejun Heo <htejun@gmail.com> Acked-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'fs/sysfs/sysfs.h')
-rw-r--r--fs/sysfs/sysfs.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/fs/sysfs/sysfs.h b/fs/sysfs/sysfs.h
index 2a68bfa46e43..60405a6e4c22 100644
--- a/fs/sysfs/sysfs.h
+++ b/fs/sysfs/sysfs.h
@@ -48,11 +48,10 @@ struct sysfs_dirent {
48#define SD_DEACTIVATED_BIAS INT_MIN 48#define SD_DEACTIVATED_BIAS INT_MIN
49 49
50#define SYSFS_TYPE_MASK 0x00ff 50#define SYSFS_TYPE_MASK 0x00ff
51#define SYSFS_ROOT 0x0001 51#define SYSFS_DIR 0x0001
52#define SYSFS_DIR 0x0002 52#define SYSFS_KOBJ_ATTR 0x0002
53#define SYSFS_KOBJ_ATTR 0x0004 53#define SYSFS_KOBJ_BIN_ATTR 0x0004
54#define SYSFS_KOBJ_BIN_ATTR 0x0008 54#define SYSFS_KOBJ_LINK 0x0008
55#define SYSFS_KOBJ_LINK 0x0020
56#define SYSFS_COPY_NAME (SYSFS_DIR | SYSFS_KOBJ_LINK) 55#define SYSFS_COPY_NAME (SYSFS_DIR | SYSFS_KOBJ_LINK)
57 56
58#define SYSFS_FLAG_MASK ~SYSFS_TYPE_MASK 57#define SYSFS_FLAG_MASK ~SYSFS_TYPE_MASK