diff options
| author | Pravin B Shelar <pshelar@nicira.com> | 2013-06-13 14:11:44 -0400 |
|---|---|---|
| committer | Jesse Gross <jesse@nicira.com> | 2013-06-14 18:09:12 -0400 |
| commit | b34df5e805a6e98cae0bc5bc80c1b52d9ff811de (patch) | |
| tree | cc8d94ee92741fe21380180aeff3a6f12bb44adb /net/openvswitch/vport-netdev.c | |
| parent | 45bfa52e36ef016b789eca73c7847db3f7b4742d (diff) | |
openvswitch: make skb->csum consistent with rest of networking stack.
Following patch keeps skb->csum correct across ovs.
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net/openvswitch/vport-netdev.c')
| -rw-r--r-- | net/openvswitch/vport-netdev.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/openvswitch/vport-netdev.c b/net/openvswitch/vport-netdev.c index 43712217a372..40de815b4213 100644 --- a/net/openvswitch/vport-netdev.c +++ b/net/openvswitch/vport-netdev.c | |||
| @@ -49,6 +49,8 @@ static void netdev_port_receive(struct vport *vport, struct sk_buff *skb) | |||
| 49 | return; | 49 | return; |
| 50 | 50 | ||
| 51 | skb_push(skb, ETH_HLEN); | 51 | skb_push(skb, ETH_HLEN); |
| 52 | ovs_skb_postpush_rcsum(skb, skb->data, ETH_HLEN); | ||
| 53 | |||
| 52 | ovs_vport_receive(vport, skb); | 54 | ovs_vport_receive(vport, skb); |
| 53 | return; | 55 | return; |
| 54 | 56 | ||
