Commit b3960475 authored by Benjamin Coddington's avatar Benjamin Coddington Committed by Trond Myklebust

pnfs/blocklayout: pnfs_block_dev_map uses bytes, not sectors

Fixup the field types to match their use.
Signed-off-by: default avatarBenjamin Coddington <bcodding@redhat.com>
Signed-off-by: default avatarTrond Myklebust <trondmy@gmail.com>
parent 535cb8f3
......@@ -92,10 +92,9 @@ struct pnfs_block_volume {
};
struct pnfs_block_dev_map {
sector_t start;
sector_t len;
sector_t disk_offset;
u64 start;
u64 len;
u64 disk_offset;
struct block_device *bdev;
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment