]> git.karo-electronics.de Git - linux-beck.git/commitdiff
ip: Move checksum convert defines to inet
authorTom Herbert <therbert@google.com>
Mon, 5 Jan 2015 21:56:14 +0000 (13:56 -0800)
committerDavid S. Miller <davem@davemloft.net>
Tue, 6 Jan 2015 03:44:46 +0000 (22:44 -0500)
Move convert_csum from udp_sock to inet_sock. This allows the
possibility that we can use convert checksum for different types
of sockets and also allows convert checksum to be enabled from
inet layer (what we'll want to do when enabling IP_CHECKSUM cmsg).

Signed-off-by: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/linux/udp.h
include/net/inet_sock.h
net/ipv4/fou.c
net/ipv4/udp.c
net/ipv4/udp_tunnel.c
net/ipv6/udp.c

index ee3277593222cf314f9b030eec6ec09d0c38c4e4..247cfdcc4b08bbf377ff5819ebd02683806b0c83 100644 (file)
@@ -49,11 +49,7 @@ struct udp_sock {
        unsigned int     corkflag;      /* Cork is required */
        __u8             encap_type;    /* Is this an Encapsulation socket? */
        unsigned char    no_check6_tx:1,/* Send zero UDP6 checksums on TX? */
-                        no_check6_rx:1,/* Allow zero UDP6 checksums on RX? */
-                        convert_csum:1;/* On receive, convert checksum
-                                        * unnecessary to checksum complete
-                                        * if possible.
-                                        */
+                        no_check6_rx:1;/* Allow zero UDP6 checksums on RX? */
        /*
         * Following member retains the information to create a UDP header
         * when the socket is uncorked.
@@ -102,16 +98,6 @@ static inline bool udp_get_no_check6_rx(struct sock *sk)
        return udp_sk(sk)->no_check6_rx;
 }
 
-static inline void udp_set_convert_csum(struct sock *sk, bool val)
-{
-       udp_sk(sk)->convert_csum = val;
-}
-
-static inline bool udp_get_convert_csum(struct sock *sk)
-{
-       return udp_sk(sk)->convert_csum;
-}
-
 #define udp_portaddr_for_each_entry(__sk, node, list) \
        hlist_nulls_for_each_entry(__sk, node, list, __sk_common.skc_portaddr_node)
 
index a829b77523cf3f28704dbc593ebf112802886951..360b110b3e36267399b83decddb7290b1a81fafa 100644 (file)
@@ -184,6 +184,7 @@ struct inet_sock {
                                mc_all:1,
                                nodefrag:1;
        __u8                    rcv_tos;
+       __u8                    convert_csum;
        int                     uc_index;
        int                     mc_index;
        __be32                  mc_addr;
@@ -250,4 +251,20 @@ static inline __u8 inet_sk_flowi_flags(const struct sock *sk)
        return flags;
 }
 
+static inline void inet_inc_convert_csum(struct sock *sk)
+{
+       inet_sk(sk)->convert_csum++;
+}
+
+static inline void inet_dec_convert_csum(struct sock *sk)
+{
+       if (inet_sk(sk)->convert_csum > 0)
+               inet_sk(sk)->convert_csum--;
+}
+
+static inline bool inet_get_convert_csum(struct sock *sk)
+{
+       return !!inet_sk(sk)->convert_csum;
+}
+
 #endif /* _INET_SOCK_H */
index b986298a7ba39908290ccd808a24947d776b91b4..2197c36f722fa0ae83b3dc4975a4fecbbf01497f 100644 (file)
@@ -490,7 +490,7 @@ static int fou_create(struct net *net, struct fou_cfg *cfg,
        sk->sk_user_data = fou;
        fou->sock = sock;
 
-       udp_set_convert_csum(sk, true);
+       inet_inc_convert_csum(sk);
 
        sk->sk_allocation = GFP_ATOMIC;
 
index 13b4dcf86ef610d1fcc1b26f7f69f5a6bbd31686..53358d88f11015e550d5d021af19de472180255f 100644 (file)
@@ -1806,7 +1806,7 @@ int __udp4_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
        if (sk != NULL) {
                int ret;
 
-               if (udp_sk(sk)->convert_csum && uh->check && !IS_UDPLITE(sk))
+               if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
                        skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
                                                 inet_compute_pseudo);
 
index 1671263e5fa0eae2e6a7ebad40f912cae002bc53..9996e63ed304888e471e6280b3f9db1324be9334 100644 (file)
@@ -63,7 +63,7 @@ void setup_udp_tunnel_sock(struct net *net, struct socket *sock,
        inet_sk(sk)->mc_loop = 0;
 
        /* Enable CHECKSUM_UNNECESSARY to CHECKSUM_COMPLETE conversion */
-       udp_set_convert_csum(sk, true);
+       inet_inc_convert_csum(sk);
 
        rcu_assign_sk_user_data(sk, cfg->sk_user_data);
 
index 189dc4ae3ecac1b140a7208c4b6de0b956e0b710..e41f017cd479c04ad5876ca2e978138af181a9d9 100644 (file)
@@ -909,7 +909,7 @@ int __udp6_lib_rcv(struct sk_buff *skb, struct udp_table *udptable,
                        goto csum_error;
                }
 
-               if (udp_sk(sk)->convert_csum && uh->check && !IS_UDPLITE(sk))
+               if (inet_get_convert_csum(sk) && uh->check && !IS_UDPLITE(sk))
                        skb_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
                                                 ip6_compute_pseudo);