mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-23 03:29:33 +07:00
IPoIB/cm: Fix timeout check in ipoib_cm_dev_stop()
time_after() was used backwards, so the timeout occurred immediately. Signed-off-by: Michael S. Tsirkin <mst@dev.mellanox.co.il> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
65a2c841d6
commit
8fd357a6e3
@ -713,7 +713,7 @@ void ipoib_cm_dev_stop(struct net_device *dev)
|
||||
while (!list_empty(&priv->cm.rx_error_list) ||
|
||||
!list_empty(&priv->cm.rx_flush_list) ||
|
||||
!list_empty(&priv->cm.rx_drain_list)) {
|
||||
if (!time_after(jiffies, begin + 5 * HZ)) {
|
||||
if (time_after(jiffies, begin + 5 * HZ)) {
|
||||
ipoib_warn(priv, "RX drain timing out\n");
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user