diff options
author | Daniel Borkmann <daniel@iogearbox.net> | 2016-02-19 18:29:30 -0500 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-19 23:43:10 -0500 |
commit | 6b83d28a55a891a9d70fc61ccb1c138e47dcbe74 (patch) | |
tree | 53d156b1995604c21cd21579b98c4d82333d588f | |
parent | 321b4d4bd12f90e7497c9ab057aafcc2649aa902 (diff) |
net: use skb_postpush_rcsum instead of own implementations
Replace individual implementations with the recently introduced
skb_postpush_rcsum() helper.
Signed-off-by: Daniel Borkmann <daniel@iogearbox.net>
Acked-by: Tom Herbert <tom@herbertland.com>
Acked-by: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/core/skbuff.c | 4 | ||||
-rw-r--r-- | net/ipv6/reassembly.c | 6 | ||||
-rw-r--r-- | net/openvswitch/actions.c | 8 | ||||
-rw-r--r-- | net/openvswitch/vport-netdev.c | 2 | ||||
-rw-r--r-- | net/openvswitch/vport.h | 7 |
5 files changed, 7 insertions, 20 deletions
diff --git a/net/core/skbuff.c b/net/core/skbuff.c index a5bd067ec1a3..8bd4b7951bc0 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c | |||
@@ -4496,9 +4496,7 @@ int skb_vlan_push(struct sk_buff *skb, __be16 vlan_proto, u16 vlan_tci) | |||
4496 | skb->mac_len += VLAN_HLEN; | 4496 | skb->mac_len += VLAN_HLEN; |
4497 | __skb_pull(skb, offset); | 4497 | __skb_pull(skb, offset); |
4498 | 4498 | ||
4499 | if (skb->ip_summed == CHECKSUM_COMPLETE) | 4499 | skb_postpush_rcsum(skb, skb->data + (2 * ETH_ALEN), VLAN_HLEN); |
4500 | skb->csum = csum_add(skb->csum, csum_partial(skb->data | ||
4501 | + (2 * ETH_ALEN), VLAN_HLEN, 0)); | ||
4502 | } | 4500 | } |
4503 | __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci); | 4501 | __vlan_hwaccel_put_tag(skb, vlan_proto, vlan_tci); |
4504 | return 0; | 4502 | return 0; |
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c index 18f3498a6c80..e2ea31175ef9 100644 --- a/net/ipv6/reassembly.c +++ b/net/ipv6/reassembly.c | |||
@@ -496,10 +496,8 @@ static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff *prev, | |||
496 | IP6CB(head)->flags |= IP6SKB_FRAGMENTED; | 496 | IP6CB(head)->flags |= IP6SKB_FRAGMENTED; |
497 | 497 | ||
498 | /* Yes, and fold redundant checksum back. 8) */ | 498 | /* Yes, and fold redundant checksum back. 8) */ |
499 | if (head->ip_summed == CHECKSUM_COMPLETE) | 499 | skb_postpush_rcsum(head, skb_network_header(head), |
500 | head->csum = csum_partial(skb_network_header(head), | 500 | skb_network_header_len(head)); |
501 | skb_network_header_len(head), | ||
502 | head->csum); | ||
503 | 501 | ||
504 | rcu_read_lock(); | 502 | rcu_read_lock(); |
505 | IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMOKS); | 503 | IP6_INC_STATS_BH(net, __in6_dev_get(dev), IPSTATS_MIB_REASMOKS); |
diff --git a/net/openvswitch/actions.c b/net/openvswitch/actions.c index 2d59df521915..e9dd47b2a85b 100644 --- a/net/openvswitch/actions.c +++ b/net/openvswitch/actions.c | |||
@@ -158,9 +158,7 @@ static int push_mpls(struct sk_buff *skb, struct sw_flow_key *key, | |||
158 | new_mpls_lse = (__be32 *)skb_mpls_header(skb); | 158 | new_mpls_lse = (__be32 *)skb_mpls_header(skb); |
159 | *new_mpls_lse = mpls->mpls_lse; | 159 | *new_mpls_lse = mpls->mpls_lse; |
160 | 160 | ||
161 | if (skb->ip_summed == CHECKSUM_COMPLETE) | 161 | skb_postpush_rcsum(skb, new_mpls_lse, MPLS_HLEN); |
162 | skb->csum = csum_add(skb->csum, csum_partial(new_mpls_lse, | ||
163 | MPLS_HLEN, 0)); | ||
164 | 162 | ||
165 | hdr = eth_hdr(skb); | 163 | hdr = eth_hdr(skb); |
166 | hdr->h_proto = mpls->mpls_ethertype; | 164 | hdr->h_proto = mpls->mpls_ethertype; |
@@ -280,7 +278,7 @@ static int set_eth_addr(struct sk_buff *skb, struct sw_flow_key *flow_key, | |||
280 | ether_addr_copy_masked(eth_hdr(skb)->h_dest, key->eth_dst, | 278 | ether_addr_copy_masked(eth_hdr(skb)->h_dest, key->eth_dst, |
281 | mask->eth_dst); | 279 | mask->eth_dst); |
282 | 280 | ||
283 | ovs_skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2); | 281 | skb_postpush_rcsum(skb, eth_hdr(skb), ETH_ALEN * 2); |
284 | 282 | ||
285 | ether_addr_copy(flow_key->eth.src, eth_hdr(skb)->h_source); | 283 | ether_addr_copy(flow_key->eth.src, eth_hdr(skb)->h_source); |
286 | ether_addr_copy(flow_key->eth.dst, eth_hdr(skb)->h_dest); | 284 | ether_addr_copy(flow_key->eth.dst, eth_hdr(skb)->h_dest); |
@@ -639,7 +637,7 @@ static int ovs_vport_output(struct net *net, struct sock *sk, struct sk_buff *sk | |||
639 | /* Reconstruct the MAC header. */ | 637 | /* Reconstruct the MAC header. */ |
640 | skb_push(skb, data->l2_len); | 638 | skb_push(skb, data->l2_len); |
641 | memcpy(skb->data, &data->l2_data, data->l2_len); | 639 | memcpy(skb->data, &data->l2_data, data->l2_len); |
642 | ovs_skb_postpush_rcsum(skb, skb->data, data->l2_len); | 640 | skb_postpush_rcsum(skb, skb->data, data->l2_len); |
643 | skb_reset_mac_header(skb); | 641 | skb_reset_mac_header(skb); |
644 | 642 | ||
645 | ovs_vport_send(vport, skb); | 643 | ovs_vport_send(vport, skb); |
diff --git a/net/openvswitch/vport-netdev.c b/net/openvswitch/vport-netdev.c index 6a6adf314363..4e3972344aa6 100644 --- a/net/openvswitch/vport-netdev.c +++ b/net/openvswitch/vport-netdev.c | |||
@@ -58,7 +58,7 @@ static void netdev_port_receive(struct sk_buff *skb) | |||
58 | return; | 58 | return; |
59 | 59 | ||
60 | skb_push(skb, ETH_HLEN); | 60 | skb_push(skb, ETH_HLEN); |
61 | ovs_skb_postpush_rcsum(skb, skb->data, ETH_HLEN); | 61 | skb_postpush_rcsum(skb, skb->data, ETH_HLEN); |
62 | ovs_vport_receive(vport, skb, skb_tunnel_info(skb)); | 62 | ovs_vport_receive(vport, skb, skb_tunnel_info(skb)); |
63 | return; | 63 | return; |
64 | error: | 64 | error: |
diff --git a/net/openvswitch/vport.h b/net/openvswitch/vport.h index c10899cb9040..f01f28a567ad 100644 --- a/net/openvswitch/vport.h +++ b/net/openvswitch/vport.h | |||
@@ -185,13 +185,6 @@ static inline struct vport *vport_from_priv(void *priv) | |||
185 | int ovs_vport_receive(struct vport *, struct sk_buff *, | 185 | int ovs_vport_receive(struct vport *, struct sk_buff *, |
186 | const struct ip_tunnel_info *); | 186 | const struct ip_tunnel_info *); |
187 | 187 | ||
188 | static inline void ovs_skb_postpush_rcsum(struct sk_buff *skb, | ||
189 | const void *start, unsigned int len) | ||
190 | { | ||
191 | if (skb->ip_summed == CHECKSUM_COMPLETE) | ||
192 | skb->csum = csum_add(skb->csum, csum_partial(start, len, 0)); | ||
193 | } | ||
194 | |||
195 | static inline const char *ovs_vport_name(struct vport *vport) | 188 | static inline const char *ovs_vport_name(struct vport *vport) |
196 | { | 189 | { |
197 | return vport->dev->name; | 190 | return vport->dev->name; |