Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 98086
b: refs/heads/master
c: 5cb960a
h: refs/heads/master
v: v3
  • Loading branch information
David S. Miller committed Jun 12, 2008
1 parent 2795744 commit 76aad4c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 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: be4c798a41bf626cdaacf96c382f116ed2f7dbe9
refs/heads/master: 5cb960a80531211379f8f05c575725d7630098fe
3 changes: 1 addition & 2 deletions trunk/net/netfilter/nf_conntrack_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,6 @@ destroy_conntrack(struct nf_conntrack *nfct)
if (l4proto && l4proto->destroy)
l4proto->destroy(ct);

nf_ct_ext_destroy(ct);

rcu_read_unlock();

spin_lock_bh(&nf_conntrack_lock);
Expand Down Expand Up @@ -520,6 +518,7 @@ static void nf_conntrack_free_rcu(struct rcu_head *head)

void nf_conntrack_free(struct nf_conn *ct)
{
nf_ct_ext_destroy(ct);
call_rcu(&ct->rcu, nf_conntrack_free_rcu);
}
EXPORT_SYMBOL_GPL(nf_conntrack_free);
Expand Down
4 changes: 0 additions & 4 deletions trunk/net/netfilter/nf_log.c
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ void nf_log_packet(int pf,
vsnprintf(prefix, sizeof(prefix), fmt, args);
va_end(args);
logger->logfn(pf, hooknum, skb, in, out, loginfo, prefix);
} else if (net_ratelimit()) {
printk(KERN_WARNING "nf_log_packet: can\'t log since "
"no backend logging module loaded in! Please either "
"load one, or disable logging explicitly\n");
}
rcu_read_unlock();
}
Expand Down

0 comments on commit 76aad4c

Please sign in to comment.