enum {
        UDP_FLAGS_CORK,         /* Cork is required */
+       UDP_FLAGS_NO_CHECK6_TX, /* Send zero UDP6 checksums on TX? */
 };
 
 struct udp_sock {
 
        int              pending;       /* Any pending frames ? */
        __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? */
+       unsigned char    no_check6_rx:1,/* Allow zero UDP6 checksums on RX? */
                         encap_enabled:1, /* This socket enabled encap
                                           * processing; UDP tunnels and
                                           * different encapsulation layer set
 
 static inline void udp_set_no_check6_tx(struct sock *sk, bool val)
 {
-       udp_sk(sk)->no_check6_tx = val;
+       udp_assign_bit(NO_CHECK6_TX, sk, val);
 }
 
 static inline void udp_set_no_check6_rx(struct sock *sk, bool val)
        udp_sk(sk)->no_check6_rx = val;
 }
 
-static inline bool udp_get_no_check6_tx(struct sock *sk)
+static inline bool udp_get_no_check6_tx(const struct sock *sk)
 {
-       return udp_sk(sk)->no_check6_tx;
+       return udp_test_bit(NO_CHECK6_TX, sk);
 }
 
 static inline bool udp_get_no_check6_rx(struct sock *sk)
 
                break;
 
        case UDP_NO_CHECK6_TX:
-               up->no_check6_tx = valbool;
+               udp_set_no_check6_tx(sk, valbool);
                break;
 
        case UDP_NO_CHECK6_RX:
                break;
 
        case UDP_NO_CHECK6_TX:
-               val = up->no_check6_tx;
+               val = udp_get_no_check6_tx(sk);
                break;
 
        case UDP_NO_CHECK6_RX:
 
                        kfree_skb(skb);
                        return -EINVAL;
                }
-               if (udp_sk(sk)->no_check6_tx) {
+               if (udp_get_no_check6_tx(sk)) {
                        kfree_skb(skb);
                        return -EINVAL;
                }
 
        if (is_udplite)
                csum = udplite_csum(skb);
-       else if (udp_sk(sk)->no_check6_tx) {   /* UDP csum disabled */
+       else if (udp_get_no_check6_tx(sk)) {   /* UDP csum disabled */
                skb->ip_summed = CHECKSUM_NONE;
                goto send;
        } else if (skb->ip_summed == CHECKSUM_PARTIAL) { /* UDP hardware csum */