Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 108360
b: refs/heads/master
c: 8ab19ea
h: refs/heads/master
v: v3
  • Loading branch information
Sven Wegener committed Aug 11, 2008
1 parent 559c6fa commit 691aa81
Show file tree
Hide file tree
Showing 2 changed files with 6 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: bc0fde2fad007a81ecffceb25a893a6c3f1ed767
refs/heads/master: 8ab19ea36c5c5340ff598e4d15fc084eb65671dc
7 changes: 5 additions & 2 deletions trunk/net/ipv4/ipvs/ip_vs_est.c
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,11 @@ void ip_vs_kill_estimator(struct ip_vs_stats *stats)
kfree(est);
killed++;
}
if (killed && est_list == NULL)
del_timer_sync(&est_timer);
while (killed && !est_list && try_to_del_timer_sync(&est_timer) < 0) {
write_unlock_bh(&est_lock);
cpu_relax();
write_lock_bh(&est_lock);
}
write_unlock_bh(&est_lock);
}

Expand Down

0 comments on commit 691aa81

Please sign in to comment.