[PATCH] md: document sysfs usage of md, and make a couple of small refinements
Document in Documentation/md.txt the files that now appear in sysfs, and make a couple of small refinements to exactly when 'level' and 'raid_disks' are empty, to make it match the documentation. Signed-off-by: Neil Brown <neilb@suse.de> Acked-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
7eec314d75
commit
bb636547b0
@@ -1727,7 +1727,7 @@ static ssize_t
|
||||
level_show(mddev_t *mddev, char *page)
|
||||
{
|
||||
mdk_personality_t *p = mddev->pers;
|
||||
if (p == NULL)
|
||||
if (p == NULL && mddev->raid_disks == 0)
|
||||
return 0;
|
||||
if (mddev->level >= 0)
|
||||
return sprintf(page, "RAID-%d\n", mddev->level);
|
||||
@@ -1740,6 +1740,8 @@ static struct md_sysfs_entry md_level = __ATTR_RO(level);
|
||||
static ssize_t
|
||||
raid_disks_show(mddev_t *mddev, char *page)
|
||||
{
|
||||
if (mddev->raid_disks == 0)
|
||||
return 0;
|
||||
return sprintf(page, "%d\n", mddev->raid_disks);
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user