summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorOr Gerlitz <ogerlitz@mellanox.com>2011-08-01 21:12:09 +0000
committerRoland Dreier <roland@purestorage.com>2011-08-17 09:40:55 -0700
commit0ace64b85ea7b90e3bffe408b9d7c3364692bfa4 (patch)
tree2606a343505441fe0c1f4cf638c6ebc9bb9929b5 /drivers
parent322a8b034003c0d46d39af85bf24fee27b902f48 (diff)
downloadlinux-3.10-0ace64b85ea7b90e3bffe408b9d7c3364692bfa4.tar.gz
linux-3.10-0ace64b85ea7b90e3bffe408b9d7c3364692bfa4.tar.bz2
linux-3.10-0ace64b85ea7b90e3bffe408b9d7c3364692bfa4.zip
IBiser: Fix wrong mask when sizeof (dma_addr_t) > sizeof (unsigned long)
The code that prepares the SG associated with SCSI command for FMR was buggy for systems with DMA addresses that don't fit in unsigned long, e.g under the 32-bit based XenServer dom0 sizeof(dma_addr_t) is 8. Fix that by casting to unsigned long long a masking constant used by the code. This resolves a crash in iser_sg_to_page_vec on this system. Signed-off-by: Or Gerlitz <ogerlitz@mellanox.co.il> Signed-off-by: Roland Dreier <roland@purestorage.com>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/infiniband/ulp/iser/iscsi_iser.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/ulp/iser/iscsi_iser.h b/drivers/infiniband/ulp/iser/iscsi_iser.h
index 342cbc1bdaa..db6f3ce9f3b 100644
--- a/drivers/infiniband/ulp/iser/iscsi_iser.h
+++ b/drivers/infiniband/ulp/iser/iscsi_iser.h
@@ -89,7 +89,7 @@
} while (0)
#define SHIFT_4K 12
-#define SIZE_4K (1UL << SHIFT_4K)
+#define SIZE_4K (1ULL << SHIFT_4K)
#define MASK_4K (~(SIZE_4K-1))
/* support up to 512KB in one RDMA */