All of lore.kernel.org
 help / color / mirror / Atom feed
From: Veaceslav Falico <vfalico@redhat.com>
To: Scott Feldman <sfeldma@cumulusnetworks.com>
Cc: fubar@us.ibm.com, andy@greyhouse.net, netdev@vger.kernel.org,
	shm@cumulusnetworks.com
Subject: Re: [PATCH net-next 8/8] bonding: add arp_all_targets netlink support
Date: Thu, 7 Nov 2013 12:08:20 +0100	[thread overview]
Message-ID: <20131107110820.GI19702@redhat.com> (raw)
In-Reply-To: <20131107094344.15846.93348.stgit@monster-03.cumulusnetworks.com>

On Thu, Nov 07, 2013 at 01:43:44AM -0800, Scott Feldman wrote:
>Add IFLA_BOND_ARP_ALL_TARGETS to allow get/set of bonding parameter
>arp_all_targets via netlink.
>
>Signed-off-by: Scott Feldman <sfeldma@cumulusnetworks.com>
>---
> drivers/net/bonding/bond_netlink.c |   14 ++++++++++++++
> drivers/net/bonding/bond_options.c |   11 +++++++++++
> drivers/net/bonding/bond_sysfs.c   |   16 ++++++++++------
> drivers/net/bonding/bonding.h      |    1 +
> include/uapi/linux/if_link.h       |    1 +
> 5 files changed, 37 insertions(+), 6 deletions(-)
>
>diff --git a/drivers/net/bonding/bond_netlink.c b/drivers/net/bonding/bond_netlink.c
>index a5ca6e0..818a7ba 100644
>--- a/drivers/net/bonding/bond_netlink.c
>+++ b/drivers/net/bonding/bond_netlink.c
>@@ -31,6 +31,7 @@ static const struct nla_policy bond_policy[IFLA_BOND_MAX + 1] = {
> 	[IFLA_BOND_ARP_INTERVAL]	= { .type = NLA_U32 },
> 	[IFLA_BOND_ARP_IP_TARGET]	= { .type = NLA_NESTED },
> 	[IFLA_BOND_ARP_VALIDATE]	= { .type = NLA_U32 },
>+	[IFLA_BOND_ARP_ALL_TARGETS]	= { .type = NLA_U32 },
> };
>
> static int bond_validate(struct nlattr *tb[], struct nlattr *data[])
>@@ -133,6 +134,14 @@ static int bond_changelink(struct net_device *bond_dev,
> 		if (err)
> 			return err;
> 	}
>+	if (data[IFLA_BOND_ARP_ALL_TARGETS]) {
>+		int arp_all_targets =
>+			nla_get_u32(data[IFLA_BOND_ARP_ALL_TARGETS]);
>+
>+		err = bond_option_arp_all_targets_set(bond, arp_all_targets);
>+		if (err)
>+			return err;
>+	}
> 	return 0;
> }
>
>@@ -160,6 +169,7 @@ static size_t bond_get_size(const struct net_device *bond_dev)
> 						/* IFLA_BOND_ARP_IP_TARGET */
> 		nla_total_size(sizeof(u32)) * BOND_MAX_ARP_TARGETS +
> 		nla_total_size(sizeof(u32)) +	/* IFLA_BOND_ARP_VALIDATE */
>+		nla_total_size(sizeof(u32)) +	/* IFLA_BOND_ARP_ALL_TARGETS */
> 		0;
> }
>
>@@ -215,6 +225,10 @@ static int bond_fill_info(struct sk_buff *skb,
> 	if (nla_put_u32(skb, IFLA_BOND_ARP_VALIDATE, bond->params.arp_validate))
> 		goto nla_put_failure;
>
>+	if (nla_put_u32(skb, IFLA_BOND_ARP_ALL_TARGETS,
>+		bond->params.arp_all_targets))

One more tab to align?

>+		goto nla_put_failure;
>+
> 	return 0;
>
> nla_put_failure:
>diff --git a/drivers/net/bonding/bond_options.c b/drivers/net/bonding/bond_options.c
>index 9c36215..543a318 100644
>--- a/drivers/net/bonding/bond_options.c
>+++ b/drivers/net/bonding/bond_options.c
>@@ -426,3 +426,14 @@ int bond_option_arp_validate_set(struct bonding *bond, int arp_validate)
>
> 	return 0;
> }
>+
>+int bond_option_arp_all_targets_set(struct bonding *bond, int arp_all_targets)
>+{
>+	pr_info("%s: setting arp_all_targets to %s (%d).\n",
>+		bond->dev->name, arp_all_targets_tbl[arp_all_targets].modename,
>+		arp_all_targets);
>+
>+	bond->params.arp_all_targets = arp_all_targets;
>+
>+	return 0;
>+}
>diff --git a/drivers/net/bonding/bond_sysfs.c b/drivers/net/bonding/bond_sysfs.c
>index 8a35440..a3cd27e 100644
>--- a/drivers/net/bonding/bond_sysfs.c
>+++ b/drivers/net/bonding/bond_sysfs.c
>@@ -408,7 +408,7 @@ static ssize_t bonding_store_arp_all_targets(struct device *d,
> 					  const char *buf, size_t count)
> {
> 	struct bonding *bond = to_bond(d);
>-	int new_value;
>+	int new_value, ret;
>
> 	new_value = bond_parse_parm(buf, arp_all_targets_tbl);
> 	if (new_value < 0) {
>@@ -416,13 +416,17 @@ static ssize_t bonding_store_arp_all_targets(struct device *d,
> 		       bond->dev->name, buf);
> 		return -EINVAL;
> 	}
>-	pr_info("%s: setting arp_all_targets to %s (%d).\n",
>-		bond->dev->name, arp_all_targets_tbl[new_value].modename,
>-		new_value);
>
>-	bond->params.arp_all_targets = new_value;
>+	if (!rtnl_trylock())
>+		return restart_syscall();
>
>-	return count;
>+	ret = bond_option_arp_all_targets_set(bond, new_value);
>+	if (!ret)
>+		ret = count;
>+
>+	rtnl_unlock();
>+
>+	return ret;
> }
>
> static DEVICE_ATTR(arp_all_targets, S_IRUGO | S_IWUSR,
>diff --git a/drivers/net/bonding/bonding.h b/drivers/net/bonding/bonding.h
>index 77bbd71..ed35c8c 100644
>--- a/drivers/net/bonding/bonding.h
>+++ b/drivers/net/bonding/bonding.h
>@@ -437,6 +437,7 @@ int bond_option_arp_ip_target_set(struct bonding *bond, __be32 target);
> int bond_option_arp_ip_target_unset(struct bonding *bond, __be32 target);
> int bond_option_arp_ip_target_clear_all(struct bonding *bond);
> int bond_option_arp_validate_set(struct bonding *bond, int arp_validate);
>+int bond_option_arp_all_targets_set(struct bonding *bond, int arp_all_targets);
> struct net_device *bond_option_active_slave_get_rcu(struct bonding *bond);
> struct net_device *bond_option_active_slave_get(struct bonding *bond);
>
>diff --git a/include/uapi/linux/if_link.h b/include/uapi/linux/if_link.h
>index c17f801..ca01850 100644
>--- a/include/uapi/linux/if_link.h
>+++ b/include/uapi/linux/if_link.h
>@@ -338,6 +338,7 @@ enum {
> 	IFLA_BOND_ARP_INTERVAL,
> 	IFLA_BOND_ARP_IP_TARGET,
> 	IFLA_BOND_ARP_VALIDATE,
>+	IFLA_BOND_ARP_ALL_TARGETS,
> 	__IFLA_BOND_MAX,
> };
>
>

      reply	other threads:[~2013-11-07 11:10 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-11-07  9:43 [PATCH net-next 8/8] bonding: add arp_all_targets netlink support Scott Feldman
2013-11-07 11:08 ` Veaceslav Falico [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20131107110820.GI19702@redhat.com \
    --to=vfalico@redhat.com \
    --cc=andy@greyhouse.net \
    --cc=fubar@us.ibm.com \
    --cc=netdev@vger.kernel.org \
    --cc=sfeldma@cumulusnetworks.com \
    --cc=shm@cumulusnetworks.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.