diff options
author | Namhyung Kim <namhyung@gmail.com> | 2011-05-26 21:06:50 +0200 |
---|---|---|
committer | Jens Axboe <jaxboe@fusionio.com> | 2011-05-26 21:06:50 +0200 |
commit | a2cba2913c7623789296e39d787b01031f9c7969 (patch) | |
tree | 1a8287d8e7155ac08f0c8752e1d4a085a593cc31 | |
parent | f4fa3424c66255ba1e07b26becfc3d6cab0fdf65 (diff) | |
download | linux-a2cba2913c7623789296e39d787b01031f9c7969.tar.gz linux-a2cba2913c7623789296e39d787b01031f9c7969.tar.bz2 linux-a2cba2913c7623789296e39d787b01031f9c7969.zip |
brd: get rid of unused members from struct brd_device
brd_refcnt, brd_offset, brd_sizelimit and brd_blocksize in struct
brd_device seem to be copied from struct loop_device but they're
not used anywhere. Let get rid of them.
Signed-off-by: Namhyung Kim <namhyung@gmail.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
-rw-r--r-- | drivers/block/brd.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/block/brd.c b/drivers/block/brd.c index b7f51e4594f8..bae9a3d4e15b 100644 --- a/drivers/block/brd.c +++ b/drivers/block/brd.c @@ -35,10 +35,6 @@ */ struct brd_device { int brd_number; - int brd_refcnt; - loff_t brd_offset; - loff_t brd_sizelimit; - unsigned brd_blocksize; struct request_queue *brd_queue; struct gendisk *brd_disk; |