linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] pnfs/blocklayout: pnfs_block_dev_map uses bytes, not sectors
@ 2018-01-25 14:36 Benjamin Coddington
  2018-01-25 14:36 ` [PATCH 2/2 v2] pnfs/blocklayout: Ensure disk address in block device map Benjamin Coddington
  0 siblings, 1 reply; 2+ messages in thread
From: Benjamin Coddington @ 2018-01-25 14:36 UTC (permalink / raw)
  To: Trond Myklebust, Anna Schumaker; +Cc: Christoph Hellwig, linux-nfs

Fixup the field types to match their use.

Signed-off-by: Benjamin Coddington <bcodding@redhat.com>
---
 fs/nfs/blocklayout/blocklayout.h | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/fs/nfs/blocklayout/blocklayout.h b/fs/nfs/blocklayout/blocklayout.h
index efc007f00742..716bc75e9ed2 100644
--- a/fs/nfs/blocklayout/blocklayout.h
+++ b/fs/nfs/blocklayout/blocklayout.h
@@ -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;
 };
 
-- 
2.9.3


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-01-25 14:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-01-25 14:36 [PATCH 1/2] pnfs/blocklayout: pnfs_block_dev_map uses bytes, not sectors Benjamin Coddington
2018-01-25 14:36 ` [PATCH 2/2 v2] pnfs/blocklayout: Ensure disk address in block device map Benjamin Coddington

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).