Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 9056
b: refs/heads/master
c: a8f3914
h: refs/heads/master
v: v3
  • Loading branch information
Harald Welte authored and David S. Miller committed Sep 17, 2005
1 parent 120cc43 commit d2989e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 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: 136e92bbec0a6d4c2dd1e5b5ac869ab5470547a4
refs/heads/master: a8f39143ac67ffa2e26ce48aaac6bf5dc7dae95f
5 changes: 4 additions & 1 deletion trunk/net/ipv4/netfilter/ip_conntrack_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1143,7 +1143,10 @@ void ip_ct_refresh_acct(struct ip_conntrack *ct,
if (del_timer(&ct->timeout)) {
ct->timeout.expires = jiffies + extra_jiffies;
add_timer(&ct->timeout);
ip_conntrack_event_cache(IPCT_REFRESH, skb);
/* FIXME: We loose some REFRESH events if this function
* is called without an skb. I'll fix this later -HW */
if (skb)
ip_conntrack_event_cache(IPCT_REFRESH, skb);
}
ct_add_counters(ct, ctinfo, skb);
write_unlock_bh(&ip_conntrack_lock);
Expand Down

0 comments on commit d2989e5

Please sign in to comment.