diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2016-09-26 15:47:03 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2016-09-26 15:47:03 -0400 |
commit | 1e1b37273cf719545da50b76f214f983a710aaf4 (patch) | |
tree | 033f6062325ef7aaeefe8559bb409ab7d2be3c76 /net/openvswitch/conntrack.c | |
parent | c183a603e8d8a5a189729b77d0c623a3d5950e5f (diff) | |
parent | c291b015158577be533dd5a959dfc09bab119eed (diff) |
Merge branch 'x86/urgent' into x86/apic
Bring in the upstream modifications so we can fixup the silent merge
conflict which is introduced by this merge.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'net/openvswitch/conntrack.c')
-rw-r--r-- | net/openvswitch/conntrack.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/net/openvswitch/conntrack.c b/net/openvswitch/conntrack.c index c644c78ed485..e054a748ff25 100644 --- a/net/openvswitch/conntrack.c +++ b/net/openvswitch/conntrack.c | |||
@@ -433,7 +433,6 @@ ovs_ct_find_existing(struct net *net, const struct nf_conntrack_zone *zone, | |||
433 | struct nf_conntrack_l4proto *l4proto; | 433 | struct nf_conntrack_l4proto *l4proto; |
434 | struct nf_conntrack_tuple tuple; | 434 | struct nf_conntrack_tuple tuple; |
435 | struct nf_conntrack_tuple_hash *h; | 435 | struct nf_conntrack_tuple_hash *h; |
436 | enum ip_conntrack_info ctinfo; | ||
437 | struct nf_conn *ct; | 436 | struct nf_conn *ct; |
438 | unsigned int dataoff; | 437 | unsigned int dataoff; |
439 | u8 protonum; | 438 | u8 protonum; |
@@ -458,13 +457,8 @@ ovs_ct_find_existing(struct net *net, const struct nf_conntrack_zone *zone, | |||
458 | 457 | ||
459 | ct = nf_ct_tuplehash_to_ctrack(h); | 458 | ct = nf_ct_tuplehash_to_ctrack(h); |
460 | 459 | ||
461 | ctinfo = ovs_ct_get_info(h); | ||
462 | if (ctinfo == IP_CT_NEW) { | ||
463 | /* This should not happen. */ | ||
464 | WARN_ONCE(1, "ovs_ct_find_existing: new packet for %p\n", ct); | ||
465 | } | ||
466 | skb->nfct = &ct->ct_general; | 460 | skb->nfct = &ct->ct_general; |
467 | skb->nfctinfo = ctinfo; | 461 | skb->nfctinfo = ovs_ct_get_info(h); |
468 | return ct; | 462 | return ct; |
469 | } | 463 | } |
470 | 464 | ||