]> git.karo-electronics.de Git - karo-tx-linux.git/commit
[PATCH] IB/srp: Fix FMR mapping for 32-bit kernels and addresses above 4G
authorRoland Dreier <rdreier@cisco.com>
Sat, 16 Dec 2006 04:58:14 +0000 (20:58 -0800)
committerChris Wright <chrisw@sous-sol.org>
Wed, 10 Jan 2007 19:05:19 +0000 (11:05 -0800)
commit5033031c3a98f3c1169745c341dbb7342b24e2a1
tree0f17704fd860f1b60a830fa87e0492473015dddc
parentfb0ddf36bdfec06438610afd1e44e40b6de06e55
[PATCH] IB/srp: Fix FMR mapping for 32-bit kernels and addresses above 4G

struct srp_device.fmr_page_mask was unsigned long, which means that
the top part of addresses above 4G was being chopped off on 32-bit
architectures.  Of course nothing good happens when data from SRP
targets is DMAed to the wrong place.

Fix this by changing fmr_page_mask to u64, to match the addresses
actually used by IB devices.

Thanks to Brian Cain <Brian.Cain@ge.com> and David McMillen
<davem@systemfabricworks.com> for help diagnosing the bug and testing
the fix.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
drivers/infiniband/ulp/srp/ib_srp.c
drivers/infiniband/ulp/srp/ib_srp.h