[IFLA_BOND_PRIMARY_RESELECT]    = { .type = NLA_U8 },
        [IFLA_BOND_FAIL_OVER_MAC]       = { .type = NLA_U8 },
        [IFLA_BOND_XMIT_HASH_POLICY]    = { .type = NLA_U8 },
+       [IFLA_BOND_RESEND_IGMP]         = { .type = NLA_U32 },
 };
 
 static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
                if (err)
                        return err;
        }
+       if (data[IFLA_BOND_RESEND_IGMP]) {
+               int resend_igmp =
+                       nla_get_u32(data[IFLA_BOND_RESEND_IGMP]);
+
+               err = bond_option_resend_igmp_set(bond, resend_igmp);
+               if (err)
+                       return err;
+       }
        return 0;
 }
 
                nla_total_size(sizeof(u8)) +    /* IFLA_BOND_PRIMARY_RESELECT */
                nla_total_size(sizeof(u8)) +    /* IFLA_BOND_FAIL_OVER_MAC */
                nla_total_size(sizeof(u8)) +    /* IFLA_BOND_XMIT_HASH_POLICY */
+               nla_total_size(sizeof(u32)) +   /* IFLA_BOND_RESEND_IGMP */
                0;
 }
 
                       bond->params.xmit_policy))
                goto nla_put_failure;
 
+       if (nla_put_u32(skb, IFLA_BOND_RESEND_IGMP,
+                       bond->params.resend_igmp))
+               goto nla_put_failure;
+
        return 0;
 
 nla_put_failure:
 
 
        return 0;
 }
+
+int bond_option_resend_igmp_set(struct bonding *bond, int resend_igmp)
+{
+       if (resend_igmp < 0 || resend_igmp > 255) {
+               pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
+                      bond->dev->name, resend_igmp);
+               return -EINVAL;
+       }
+
+       bond->params.resend_igmp = resend_igmp;
+       pr_info("%s: Setting resend_igmp to %d.\n",
+               bond->dev->name, resend_igmp);
+
+       return 0;
+}
 
        if (sscanf(buf, "%d", &new_value) != 1) {
                pr_err("%s: no resend_igmp value specified.\n",
                       bond->dev->name);
-               ret = -EINVAL;
-               goto out;
+               return -EINVAL;
        }
 
-       if (new_value < 0 || new_value > 255) {
-               pr_err("%s: Invalid resend_igmp value %d not in range 0-255; rejected.\n",
-                      bond->dev->name, new_value);
-               ret = -EINVAL;
-               goto out;
-       }
+       if (!rtnl_trylock())
+               return restart_syscall();
 
-       pr_info("%s: Setting resend_igmp to %d.\n",
-               bond->dev->name, new_value);
-       bond->params.resend_igmp = new_value;
-out:
+       ret = bond_option_resend_igmp_set(bond, new_value);
+       if (!ret)
+               ret = count;
+
+       rtnl_unlock();
        return ret;
 }
 
 
 int bond_option_fail_over_mac_set(struct bonding *bond, int fail_over_mac);
 int bond_option_xmit_hash_policy_set(struct bonding *bond,
                                     int xmit_hash_policy);
+int bond_option_resend_igmp_set(struct bonding *bond, int resend_igmp);
 struct net_device *bond_option_active_slave_get_rcu(struct bonding *bond);
 struct net_device *bond_option_active_slave_get(struct bonding *bond);
 
 
        IFLA_BOND_PRIMARY_RESELECT,
        IFLA_BOND_FAIL_OVER_MAC,
        IFLA_BOND_XMIT_HASH_POLICY,
+       IFLA_BOND_RESEND_IGMP,
        __IFLA_BOND_MAX,
 };