diff options
author | Tao Ma <boyu.mt@taobao.com> | 2011-05-06 21:30:02 -0400 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-05-06 21:30:02 -0400 |
commit | 23ceb5b7719e9276d4fa72a3ecf94dd396755276 (patch) | |
tree | f0613021d10b9e8464a26a78fcabf48e0f0b715b /fs/partitions | |
parent | 8af1954d172a46a63e5e79dae523a6d74715e458 (diff) |
block: Remove extra discard_alignment from hd_struct.
Currently, hd_struct.discard_alignment is only used when we
show /sys/block/sdx/sdx/discard_alignment. So remove it and
calculate when it is asked to show.
Signed-off-by: Tao Ma <boyu.mt@taobao.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
Diffstat (limited to 'fs/partitions')
-rw-r--r-- | fs/partitions/check.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c index d545e97d99c3..b7e16bccd5e5 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c | |||
@@ -255,7 +255,12 @@ ssize_t part_discard_alignment_show(struct device *dev, | |||
255 | struct device_attribute *attr, char *buf) | 255 | struct device_attribute *attr, char *buf) |
256 | { | 256 | { |
257 | struct hd_struct *p = dev_to_part(dev); | 257 | struct hd_struct *p = dev_to_part(dev); |
258 | return sprintf(buf, "%u\n", p->discard_alignment); | 258 | struct gendisk *disk = dev_to_disk(dev); |
259 | |||
260 | return sprintf(buf, "%u\n", | ||
261 | (unsigned long long)queue_limit_discard_alignment( | ||
262 | &disk->queue->limits, | ||
263 | p->start_sect)); | ||
259 | } | 264 | } |
260 | 265 | ||
261 | ssize_t part_stat_show(struct device *dev, | 266 | ssize_t part_stat_show(struct device *dev, |
@@ -449,8 +454,6 @@ struct hd_struct *add_partition(struct gendisk *disk, int partno, | |||
449 | p->start_sect = start; | 454 | p->start_sect = start; |
450 | p->alignment_offset = | 455 | p->alignment_offset = |
451 | queue_limit_alignment_offset(&disk->queue->limits, start); | 456 | queue_limit_alignment_offset(&disk->queue->limits, start); |
452 | p->discard_alignment = | ||
453 | queue_limit_discard_alignment(&disk->queue->limits, start); | ||
454 | p->nr_sects = len; | 457 | p->nr_sects = len; |
455 | p->partno = partno; | 458 | p->partno = partno; |
456 | p->policy = get_disk_ro(disk); | 459 | p->policy = get_disk_ro(disk); |