aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/genhd.h
diff options
context:
space:
mode:
authorJun'ichi Nomura <j-nomura@ce.jp.nec.com>2006-03-27 04:17:55 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-27 11:44:59 -0500
commit6a4d44c1f1108d6c9e8850e8cf166aaba0e56eae (patch)
tree4e0b59ca2b4959e1593cbcdec4b90ec0d9041126 /include/linux/genhd.h
parent3ac51e741a46af7a20f55e79d3e3aeaa93c6c544 (diff)
[PATCH] dm/md dependency tree in sysfs: holders/slaves subdirectory
Creating "slaves" and "holders" directories in /sys/block/<disk> and creating "holders" directory under /sys/block/<disk>/<partition> Signed-off-by: Jun'ichi Nomura <j-nomura@ce.jp.nec.com> Cc: Alasdair G Kergon <agk@redhat.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include/linux/genhd.h')
-rw-r--r--include/linux/genhd.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/genhd.h b/include/linux/genhd.h
index fd647fde5ec1..eea61cc8fac1 100644
--- a/include/linux/genhd.h
+++ b/include/linux/genhd.h
@@ -78,6 +78,9 @@ struct hd_struct {
78 sector_t start_sect; 78 sector_t start_sect;
79 sector_t nr_sects; 79 sector_t nr_sects;
80 struct kobject kobj; 80 struct kobject kobj;
81#ifdef CONFIG_SYSFS
82 struct kobject *holder_dir;
83#endif
81 unsigned ios[2], sectors[2]; /* READs and WRITEs */ 84 unsigned ios[2], sectors[2]; /* READs and WRITEs */
82 int policy, partno; 85 int policy, partno;
83}; 86};
@@ -114,6 +117,10 @@ struct gendisk {
114 int number; /* more of the same */ 117 int number; /* more of the same */
115 struct device *driverfs_dev; 118 struct device *driverfs_dev;
116 struct kobject kobj; 119 struct kobject kobj;
120#ifdef CONFIG_SYSFS
121 struct kobject *holder_dir;
122 struct kobject *slave_dir;
123#endif
117 124
118 struct timer_rand_state *random; 125 struct timer_rand_state *random;
119 int policy; 126 int policy;