[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20131101101844.GA29795@longonot.mountain>
Date: Fri, 1 Nov 2013 13:18:44 +0300
From: Dan Carpenter <dan.carpenter@...cle.com>
To: Jay Vosburgh <fubar@...ibm.com>
Cc: Veaceslav Falico <vfalico@...hat.com>,
Andy Gospodarek <andy@...yhouse.net>, netdev@...r.kernel.org,
kernel-janitors@...r.kernel.org, Jiri Pirko <jiri@...nulli.us>
Subject: [patch -next] bonding: bond_get_size() returns wrong size
There is an extra semi-colon so bond_get_size() doesn't return the
correct value.
Fixes: ec76aa49855f ('bonding: add Netlink support active_slave option')
Signed-off-by: Dan Carpenter <dan.carpenter@...cle.com>
diff --git a/drivers/net/bonding/bond_netlink.c b/drivers/net/bonding/bond_netlink.c
index 7661261..40e7b1c 100644
--- a/drivers/net/bonding/bond_netlink.c
+++ b/drivers/net/bonding/bond_netlink.c
@@ -82,8 +82,8 @@ static int bond_newlink(struct net *src_net, struct net_device *bond_dev,
static size_t bond_get_size(const struct net_device *bond_dev)
{
- return nla_total_size(sizeof(u8)); /* IFLA_BOND_MODE */
- + nla_total_size(sizeof(u32)); /* IFLA_BOND_ACTIVE_SLAVE */
+ return nla_total_size(sizeof(u8)) + /* IFLA_BOND_MODE */
+ nla_total_size(sizeof(u32)); /* IFLA_BOND_ACTIVE_SLAVE */
}
static int bond_fill_info(struct sk_buff *skb,
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists