Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9122
b: refs/heads/master
c: ce5b65c
h: refs/heads/master
v: v3
  • Loading branch information
Hal Rosenstock authored and Roland Dreier committed Sep 19, 2005
1 parent 1a8b34e commit 81a9838
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d6cff021e24515255b296d399ec517a68bf2ed08
refs/heads/master: ce5b65cc9626feac0d4ffb96f798407e50c45575
6 changes: 3 additions & 3 deletions trunk/drivers/infiniband/ulp/ipoib/ipoib_multicast.c
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ static struct ipoib_mcast *ipoib_mcast_alloc(struct net_device *dev,

mcast->dev = dev;
mcast->created = jiffies;
mcast->backoff = HZ;
mcast->backoff = 1;
mcast->logcount = 0;

INIT_LIST_HEAD(&mcast->list);
Expand Down Expand Up @@ -396,7 +396,7 @@ static void ipoib_mcast_join_complete(int status,
IPOIB_GID_ARG(mcast->mcmember.mgid), status);

if (!status && !ipoib_mcast_join_finish(mcast, mcmember)) {
mcast->backoff = HZ;
mcast->backoff = 1;
down(&mcast_mutex);
if (test_bit(IPOIB_MCAST_RUN, &priv->flags))
queue_work(ipoib_workqueue, &priv->mcast_task);
Expand Down Expand Up @@ -496,7 +496,7 @@ static void ipoib_mcast_join(struct net_device *dev, struct ipoib_mcast *mcast,
if (test_bit(IPOIB_MCAST_RUN, &priv->flags))
queue_delayed_work(ipoib_workqueue,
&priv->mcast_task,
mcast->backoff);
mcast->backoff * HZ);
up(&mcast_mutex);
} else
mcast->query_id = ret;
Expand Down

0 comments on commit 81a9838

Please sign in to comment.