diff options
author | Tejun Heo <tj@kernel.org> | 2008-08-25 06:56:07 -0400 |
---|---|---|
committer | Jens Axboe <jens.axboe@oracle.com> | 2008-10-09 02:56:07 -0400 |
commit | 80795aefb76d10c5d698e60c7e7750b5330787da (patch) | |
tree | f22a55483cb2fe77580ee1507c1124bc73b93c3d /fs | |
parent | b5d0b9df0ba5d9a044f3a21e7544f53d90bd1465 (diff) |
block: move capacity from disk to part0
Move disk->capacity to part0->nr_sects and convert all users who
directly accessed the field to use {get|set}_capacity(). This is done
early to allow the __dev field to be moved.
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Jens Axboe <jens.axboe@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/partitions/check.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/partitions/check.c b/fs/partitions/check.c index b60699c271ac..902b95f1f9d5 100644 --- a/fs/partitions/check.c +++ b/fs/partitions/check.c | |||
@@ -586,7 +586,7 @@ void del_gendisk(struct gendisk *disk) | |||
586 | disk_part_iter_exit(&piter); | 586 | disk_part_iter_exit(&piter); |
587 | 587 | ||
588 | invalidate_partition(disk, 0); | 588 | invalidate_partition(disk, 0); |
589 | disk->capacity = 0; | 589 | set_capacity(disk, 0); |
590 | disk->flags &= ~GENHD_FL_UP; | 590 | disk->flags &= ~GENHD_FL_UP; |
591 | unlink_gendisk(disk); | 591 | unlink_gendisk(disk); |
592 | disk_stat_set_all(disk, 0); | 592 | disk_stat_set_all(disk, 0); |