Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

pnfs/blocklayout: pnfs_block_dev_map uses bytes, not sectors

Fixup the field types to match their use.

Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
Signed-off-by: Trond Myklebust <trondmy@gmail.com>

authored by

Benjamin Coddington and committed by
Trond Myklebust
b3960475 535cb8f3

+3 -4
+3 -4
fs/nfs/blocklayout/blocklayout.h
··· 92 92 }; 93 93 94 94 struct pnfs_block_dev_map { 95 - sector_t start; 96 - sector_t len; 97 - 98 - sector_t disk_offset; 95 + u64 start; 96 + u64 len; 97 + u64 disk_offset; 99 98 struct block_device *bdev; 100 99 }; 101 100