Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57169
b: refs/heads/master
c: 9a834b8
h: refs/heads/master
i:
  57167: 4ce5b69
v: v3
  • Loading branch information
Stephen Hemminger authored and David S. Miller committed May 31, 2007
1 parent bc9bed9 commit e2b388f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 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: 071f7722686151817855195654f16a0b65d9473c
refs/heads/master: 9a834b87c5544c347fd788cd9d4eb276402ab54a
3 changes: 2 additions & 1 deletion trunk/net/bridge/br_stp.c
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,8 @@ void br_transmit_config(struct net_bridge_port *p)
br_send_config_bpdu(p, &bpdu);
p->topology_change_ack = 0;
p->config_pending = 0;
mod_timer(&p->hold_timer, jiffies + BR_HOLD_TIME);
mod_timer(&p->hold_timer,
round_jiffies(jiffies + BR_HOLD_TIME));
}
}

Expand Down
2 changes: 1 addition & 1 deletion trunk/net/bridge/br_stp_timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ static void br_hello_timer_expired(unsigned long arg)
if (br->dev->flags & IFF_UP) {
br_config_bpdu_generation(br);

mod_timer(&br->hello_timer, jiffies + br->hello_time);
mod_timer(&br->hello_timer, round_jiffies(jiffies + br->hello_time));
}
spin_unlock(&br->lock);
}
Expand Down

0 comments on commit e2b388f

Please sign in to comment.