Skip to content

Commit

Permalink
rtnl/do_setlink(): last arg is now a set of flags
Browse files Browse the repository at this point in the history
There is no functional changes with this commit, it only prepares the next one.

Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Nicolas Dichtel authored and David S. Miller committed Sep 2, 2014
1 parent 1889b0e commit 90c325e
Showing 1 changed file with 22 additions and 21 deletions.
43 changes: 22 additions & 21 deletions net/core/rtnetlink.c
Original file line number Diff line number Diff line change
Expand Up @@ -1481,9 +1481,10 @@ static int do_set_master(struct net_device *dev, int ifindex)
return 0;
}

#define DO_SETLINK_MODIFIED 0x01
static int do_setlink(const struct sk_buff *skb,
struct net_device *dev, struct ifinfomsg *ifm,
struct nlattr **tb, char *ifname, int modified)
struct nlattr **tb, char *ifname, int status)
{
const struct net_device_ops *ops = dev->netdev_ops;
int err;
Expand All @@ -1502,7 +1503,7 @@ static int do_setlink(const struct sk_buff *skb,
put_net(net);
if (err)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_MAP]) {
Expand Down Expand Up @@ -1531,7 +1532,7 @@ static int do_setlink(const struct sk_buff *skb,
if (err < 0)
goto errout;

modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_ADDRESS]) {
Expand All @@ -1551,19 +1552,19 @@ static int do_setlink(const struct sk_buff *skb,
kfree(sa);
if (err)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_MTU]) {
err = dev_set_mtu(dev, nla_get_u32(tb[IFLA_MTU]));
if (err < 0)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_GROUP]) {
dev_set_group(dev, nla_get_u32(tb[IFLA_GROUP]));
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

/*
Expand All @@ -1575,15 +1576,15 @@ static int do_setlink(const struct sk_buff *skb,
err = dev_change_name(dev, ifname);
if (err < 0)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_IFALIAS]) {
err = dev_set_alias(dev, nla_data(tb[IFLA_IFALIAS]),
nla_len(tb[IFLA_IFALIAS]));
if (err < 0)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_BROADCAST]) {
Expand All @@ -1601,21 +1602,21 @@ static int do_setlink(const struct sk_buff *skb,
err = do_set_master(dev, nla_get_u32(tb[IFLA_MASTER]));
if (err)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_CARRIER]) {
err = dev_change_carrier(dev, nla_get_u8(tb[IFLA_CARRIER]));
if (err)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_TXQLEN]) {
unsigned long value = nla_get_u32(tb[IFLA_TXQLEN]);

if (dev->tx_queue_len ^ value)
modified = 1;
status |= DO_SETLINK_MODIFIED;

dev->tx_queue_len = value;
}
Expand All @@ -1628,7 +1629,7 @@ static int do_setlink(const struct sk_buff *skb,

write_lock_bh(&dev_base_lock);
if (dev->link_mode ^ value)
modified = 1;
status |= DO_SETLINK_MODIFIED;
dev->link_mode = value;
write_unlock_bh(&dev_base_lock);
}
Expand All @@ -1644,7 +1645,7 @@ static int do_setlink(const struct sk_buff *skb,
err = do_setvfinfo(dev, attr);
if (err < 0)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}
}
err = 0;
Expand Down Expand Up @@ -1674,7 +1675,7 @@ static int do_setlink(const struct sk_buff *skb,
err = ops->ndo_set_vf_port(dev, vf, port);
if (err < 0)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}
}
err = 0;
Expand All @@ -1692,7 +1693,7 @@ static int do_setlink(const struct sk_buff *skb,
err = ops->ndo_set_vf_port(dev, PORT_SELF_VF, port);
if (err < 0)
goto errout;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (tb[IFLA_AF_SPEC]) {
Expand All @@ -1709,13 +1710,13 @@ static int do_setlink(const struct sk_buff *skb,
if (err < 0)
goto errout;

modified = 1;
status |= DO_SETLINK_MODIFIED;
}
}
err = 0;

errout:
if (err < 0 && modified)
if (err < 0 && status & DO_SETLINK_MODIFIED)
net_warn_ratelimited("A link change request failed with some changes committed already. Interface %s may have been left with an inconsistent configuration, please check.\n",
dev->name);

Expand Down Expand Up @@ -1999,7 +2000,7 @@ static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh)
}

if (dev) {
int modified = 0;
int status = 0;

if (nlh->nlmsg_flags & NLM_F_EXCL)
return -EEXIST;
Expand All @@ -2014,7 +2015,7 @@ static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh)
err = ops->changelink(dev, tb, data);
if (err < 0)
return err;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

if (linkinfo[IFLA_INFO_SLAVE_DATA]) {
Expand All @@ -2025,10 +2026,10 @@ static int rtnl_newlink(struct sk_buff *skb, struct nlmsghdr *nlh)
tb, slave_data);
if (err < 0)
return err;
modified = 1;
status |= DO_SETLINK_MODIFIED;
}

return do_setlink(skb, dev, ifm, tb, ifname, modified);
return do_setlink(skb, dev, ifm, tb, ifname, status);
}

if (!(nlh->nlmsg_flags & NLM_F_CREATE)) {
Expand Down

0 comments on commit 90c325e

Please sign in to comment.