__u8                    mc_ttl;
        __u8                    pmtudisc;
        __u8                    is_icsk:1,
-                               mc_loop:1,
                                transparent:1,
                                mc_all:1,
                                nodefrag:1;
        INET_FLAGS_RECVERR_RFC4884 = 10,
        INET_FLAGS_FREEBIND     = 11,
        INET_FLAGS_HDRINCL      = 12,
+       INET_FLAGS_MC_LOOP      = 13,
 };
 
 /* cmsg flags for inet */
 
                return true;
        switch (sk->sk_family) {
        case AF_INET:
-               return inet_sk(sk)->mc_loop;
+               return inet_test_bit(MC_LOOP, sk);
 #if IS_ENABLED(CONFIG_IPV6)
        case AF_INET6:
                return inet6_sk(sk)->mc_loop;
 
        sk->sk_txrehash = READ_ONCE(net->core.sysctl_txrehash);
 
        inet->uc_ttl    = -1;
-       inet->mc_loop   = 1;
+       inet_set_bit(MC_LOOP, sk);
        inet->mc_ttl    = 1;
        inet->mc_all    = 1;
        inet->mc_index  = 0;
 
        inet_sockopt.is_icsk    = inet->is_icsk;
        inet_sockopt.freebind   = inet_test_bit(FREEBIND, sk);
        inet_sockopt.hdrincl    = inet_test_bit(HDRINCL, sk);
-       inet_sockopt.mc_loop    = inet->mc_loop;
+       inet_sockopt.mc_loop    = inet_test_bit(MC_LOOP, sk);
        inet_sockopt.transparent = inet->transparent;
        inet_sockopt.mc_all     = inet->mc_all;
        inet_sockopt.nodefrag   = inet->nodefrag;
 
                        return -ENOPROTOOPT;
                inet_assign_bit(HDRINCL, sk, val);
                return 0;
+       case IP_MULTICAST_LOOP:
+               if (optlen < 1)
+                       return -EINVAL;
+               inet_assign_bit(MC_LOOP, sk, val);
+               return 0;
        }
 
        err = 0;
                        goto e_inval;
                inet->mc_ttl = val;
                break;
-       case IP_MULTICAST_LOOP:
-               if (optlen < 1)
-                       goto e_inval;
-               inet->mc_loop = !!val;
-               break;
        case IP_UNICAST_IF:
        {
                struct net_device *dev = NULL;
        case IP_HDRINCL:
                val = inet_test_bit(HDRINCL, sk);
                goto copyval;
+       case IP_MULTICAST_LOOP:
+               val = inet_test_bit(MC_LOOP, sk);
+               goto copyval;
        }
 
        if (needs_rtnl)
        case IP_MULTICAST_TTL:
                val = inet->mc_ttl;
                break;
-       case IP_MULTICAST_LOOP:
-               val = inet->mc_loop;
-               break;
        case IP_UNICAST_IF:
                val = (__force int)htonl((__u32) inet->uc_index);
                break;
 
        struct sock *sk = sock->sk;
 
        /* Disable multicast loopback */
-       inet_sk(sk)->mc_loop = 0;
+       inet_clear_bit(MC_LOOP, sk);
 
        /* Enable CHECKSUM_UNNECESSARY to CHECKSUM_COMPLETE conversion */
        inet_inc_convert_csum(sk);
 
         */
        inet->uc_ttl    = -1;
 
-       inet->mc_loop   = 1;
+       inet_set_bit(MC_LOOP, sk);
        inet->mc_ttl    = 1;
        inet->mc_index  = 0;
        RCU_INIT_POINTER(inet->mc_list, NULL);
 
  */
 static void set_mcast_loop(struct sock *sk, u_char loop)
 {
-       struct inet_sock *inet = inet_sk(sk);
-
        /* setsockopt(sock, SOL_IP, IP_MULTICAST_LOOP, &loop, sizeof(loop)); */
        lock_sock(sk);
-       inet->mc_loop = loop ? 1 : 0;
+       inet_assign_bit(MC_LOOP, sk, loop);
 #ifdef CONFIG_IP_VS_IPV6
        if (sk->sk_family == AF_INET6) {
                struct ipv6_pinfo *np = inet6_sk(sk);
 
        newinet->inet_id = get_random_u16();
 
        newinet->uc_ttl = inet->uc_ttl;
-       newinet->mc_loop = 1;
+       inet_set_bit(MC_LOOP, newsk);
        newinet->mc_ttl = 1;
        newinet->mc_index = 0;
        newinet->mc_list = NULL;