Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/davem/net-2.6

Conflicts:

	net/netfilter/nf_conntrack_proto_tcp.c
This commit is contained in:
David S. Miller
2008-07-14 20:23:54 -07:00
22 changed files with 306 additions and 107 deletions

View File

@@ -844,8 +844,14 @@ static int tcp_packet(struct nf_conn *ct,
/* Attempt to reopen a closed/aborted connection.
* Delete this connection and look up again. */
write_unlock_bh(&tcp_lock);
nf_ct_kill(ct);
return -NF_REPEAT;
/* Only repeat if we can actually remove the timer.
* Destruction may already be in progress in process
* context and we must give it a chance to terminate.
*/
if (nf_ct_kill(ct))
return -NF_REPEAT;
return -NF_DROP;
}
/* Fall through */
case TCP_CONNTRACK_IGNORE: