aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeilBrown <neilb@suse.de>2006-01-06 03:20:56 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-01-06 11:34:09 -0500
commit93c8cad03f02dbd1532a5413bdced25f000d5728 (patch)
tree80930b6670c21088ed78362fe9281deba82ff7dd
parent014236d2b8ec6faea2a6134ab8e019d84d67b524 (diff)
[PATCH] md: export rdev->data_offset via sysfs
Signed-off-by: Neil Brown <neilb@suse.de> Acked-by: Greg KH <greg@kroah.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
-rw-r--r--Documentation/md.txt6
-rw-r--r--drivers/md/md.c23
2 files changed, 29 insertions, 0 deletions
diff --git a/Documentation/md.txt b/Documentation/md.txt
index d525fffc873b..866a1a887547 100644
--- a/Documentation/md.txt
+++ b/Documentation/md.txt
@@ -244,6 +244,12 @@ Each directory contains:
244 it currently fills. This can only be set while assembling an 244 it currently fills. This can only be set while assembling an
245 array. A device for which this is set is assumed to be working. 245 array. A device for which this is set is assumed to be working.
246 246
247 offset
248 This gives the location in the device (in sectors from the
249 start) where data from the array will be stored. Any part of
250 the device before this offset us not touched, unless it is
251 used for storing metadata (Formats 1.1 and 1.2).
252
247 253
248An active md device will also contain and entry for each active device 254An active md device will also contain and entry for each active device
249in the array. These are named 255in the array. These are named
diff --git a/drivers/md/md.c b/drivers/md/md.c
index a8169564209d..742a82a4d10b 100644
--- a/drivers/md/md.c
+++ b/drivers/md/md.c
@@ -1664,11 +1664,34 @@ slot_store(mdk_rdev_t *rdev, const char *buf, size_t len)
1664static struct rdev_sysfs_entry rdev_slot = 1664static struct rdev_sysfs_entry rdev_slot =
1665__ATTR(slot, 0644, slot_show, slot_store); 1665__ATTR(slot, 0644, slot_show, slot_store);
1666 1666
1667static ssize_t
1668offset_show(mdk_rdev_t *rdev, char *page)
1669{
1670 return sprintf(page, "%llu\n", rdev->data_offset);
1671}
1672
1673static ssize_t
1674offset_store(mdk_rdev_t *rdev, const char *buf, size_t len)
1675{
1676 char *e;
1677 unsigned long long offset = simple_strtoull(buf, &e, 10);
1678 if (e==buf || (*e && *e != '\n'))
1679 return -EINVAL;
1680 if (rdev->mddev->pers)
1681 return -EBUSY;
1682 rdev->data_offset = offset;
1683 return len;
1684}
1685
1686static struct rdev_sysfs_entry rdev_offset =
1687__ATTR(offset, 0644, offset_show, offset_store);
1688
1667static struct attribute *rdev_default_attrs[] = { 1689static struct attribute *rdev_default_attrs[] = {
1668 &rdev_state.attr, 1690 &rdev_state.attr,
1669 &rdev_super.attr, 1691 &rdev_super.attr,
1670 &rdev_errors.attr, 1692 &rdev_errors.attr,
1671 &rdev_slot.attr, 1693 &rdev_slot.attr,
1694 &rdev_offset.attr,
1672 NULL, 1695 NULL,
1673}; 1696};
1674static ssize_t 1697static ssize_t