diff options
Diffstat (limited to 'net/ipv4/tcp.c')
-rw-r--r-- | net/ipv4/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 7a0f0b27bf1f..ff6adecc54c6 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c | |||
@@ -2544,7 +2544,7 @@ struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb) | |||
2544 | 2544 | ||
2545 | th2 = tcp_hdr(p); | 2545 | th2 = tcp_hdr(p); |
2546 | 2546 | ||
2547 | if ((th->source ^ th2->source) | (th->dest ^ th2->dest)) { | 2547 | if (*(u32 *)&th->source ^ *(u32 *)&th2->source) { |
2548 | NAPI_GRO_CB(p)->same_flow = 0; | 2548 | NAPI_GRO_CB(p)->same_flow = 0; |
2549 | continue; | 2549 | continue; |
2550 | } | 2550 | } |