diff options
author | Bryan O'Sullivan <bos@pathscale.com> | 2006-07-01 04:36:00 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-01 09:55:59 -0700 |
commit | a40f55fc333cc20d85af92887334f41f7844e0c2 (patch) | |
tree | 3858247889f81c011604b4f998ff94eb071585e7 /drivers | |
parent | b1d8865a2075934158af41bea5fde725efb70408 (diff) | |
download | linux-3.10-a40f55fc333cc20d85af92887334f41f7844e0c2.tar.gz linux-3.10-a40f55fc333cc20d85af92887334f41f7844e0c2.tar.bz2 linux-3.10-a40f55fc333cc20d85af92887334f41f7844e0c2.zip |
[PATCH] IB/ipath: enable freeze mode when shutting down device
Signed-off-by: Dave Olson <dave.olson@qlogic.com>
Signed-off-by: Bryan O'Sullivan <bryan.osullivan@qlogic.com>
Cc: "Michael S. Tsirkin" <mst@mellanox.co.il>
Cc: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_driver.c b/drivers/infiniband/hw/ipath/ipath_driver.c index 9763d3af830..8fad35740fd 100644 --- a/drivers/infiniband/hw/ipath/ipath_driver.c +++ b/drivers/infiniband/hw/ipath/ipath_driver.c @@ -1656,7 +1656,7 @@ void ipath_shutdown_device(struct ipath_devdata *dd) /* disable IBC */ dd->ipath_control &= ~INFINIPATH_C_LINKENABLE; ipath_write_kreg(dd, dd->ipath_kregs->kr_control, - dd->ipath_control); + dd->ipath_control | INFINIPATH_C_FREEZEMODE); /* * clear SerdesEnable and turn the leds off; do this here because |