aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/infiniband/hw/ipath
diff options
context:
space:
mode:
authorDave Olson <dave.olson@qlogic.com>2008-08-15 11:25:20 -0700
committerRoland Dreier <rolandd@cisco.com>2008-08-15 11:25:20 -0700
commit24babadec0209e5f84c067cb89aca6515486d35c (patch)
tree25740b4379e917f5bb01b5e5264a74653a05d98c /drivers/infiniband/hw/ipath
parentIB/ipath: Fix lost UD send work request (diff)
downloadlinux-dev-24babadec0209e5f84c067cb89aca6515486d35c.tar.xz
linux-dev-24babadec0209e5f84c067cb89aca6515486d35c.zip
IB/ipath: Fix incorrect check for max physical address in TID
The check for max physical address was incorrect, thus limiting the range of allowed physical addresses. Signed-off-by: Dave Olson <dave.olson@qlogic.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
Diffstat (limited to 'drivers/infiniband/hw/ipath')
-rw-r--r--drivers/infiniband/hw/ipath/ipath_iba7220.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_iba7220.c b/drivers/infiniband/hw/ipath/ipath_iba7220.c
index d90f5e9a54fa..9839e20119bc 100644
--- a/drivers/infiniband/hw/ipath/ipath_iba7220.c
+++ b/drivers/infiniband/hw/ipath/ipath_iba7220.c
@@ -1720,7 +1720,7 @@ static void ipath_7220_put_tid(struct ipath_devdata *dd, u64 __iomem *tidptr,
"not 2KB aligned!\n", pa);
return;
}
- if (pa >= (1UL << IBA7220_TID_SZ_SHIFT)) {
+ if (chippa >= (1UL << IBA7220_TID_SZ_SHIFT)) {
ipath_dev_err(dd,
"BUG: Physical page address 0x%lx "
"larger than supported\n", pa);