diff options
author | NeilBrown <neilb@suse.de> | 2010-06-01 05:37:23 -0400 |
---|---|---|
committer | NeilBrown <neilb@suse.de> | 2010-07-20 23:27:53 -0400 |
commit | 00bcb4ac7ee7e557a491b614219142cea0ef16f4 (patch) | |
tree | 992cfa1d0e653aa3de8f0865c5e1a5a0fee4f935 /drivers/md/md.h | |
parent | d0c6f6258478e1dba532bf7c28e2cd6e1047d3a4 (diff) |
md: reduce dependence on sysfs.
We will want md devices to live as dm targets where sysfs is not
visible. So allow md to not connect to sysfs.
Signed-off-by: NeilBrown <neilb@suse.de>
Diffstat (limited to 'drivers/md/md.h')
-rw-r--r-- | drivers/md/md.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/drivers/md/md.h b/drivers/md/md.h index 10597bfec000..1e6405918eec 100644 --- a/drivers/md/md.h +++ b/drivers/md/md.h | |||
@@ -382,6 +382,18 @@ struct md_sysfs_entry { | |||
382 | }; | 382 | }; |
383 | extern struct attribute_group md_bitmap_group; | 383 | extern struct attribute_group md_bitmap_group; |
384 | 384 | ||
385 | static inline struct sysfs_dirent *sysfs_get_dirent_safe(struct sysfs_dirent *sd, char *name) | ||
386 | { | ||
387 | if (sd) | ||
388 | return sysfs_get_dirent(sd, NULL, name); | ||
389 | return sd; | ||
390 | } | ||
391 | static inline void sysfs_notify_dirent_safe(struct sysfs_dirent *sd) | ||
392 | { | ||
393 | if (sd) | ||
394 | sysfs_notify_dirent(sd); | ||
395 | } | ||
396 | |||
385 | static inline char * mdname (mddev_t * mddev) | 397 | static inline char * mdname (mddev_t * mddev) |
386 | { | 398 | { |
387 | return mddev->gendisk ? mddev->gendisk->disk_name : "mdX"; | 399 | return mddev->gendisk ? mddev->gendisk->disk_name : "mdX"; |