net: Add extack argument to rtnl_create_link
Add extack arg to rtnl_create_link and add messages for invalid number of Tx or Rx queues. Signed-off-by: David Ahern <dsahern@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
0b215b9798
commit
d0522f1cd2
@@ -2885,9 +2885,11 @@ int rtnl_configure_link(struct net_device *dev, const struct ifinfomsg *ifm)
|
||||
}
|
||||
EXPORT_SYMBOL(rtnl_configure_link);
|
||||
|
||||
struct net_device *rtnl_create_link(struct net *net,
|
||||
const char *ifname, unsigned char name_assign_type,
|
||||
const struct rtnl_link_ops *ops, struct nlattr *tb[])
|
||||
struct net_device *rtnl_create_link(struct net *net, const char *ifname,
|
||||
unsigned char name_assign_type,
|
||||
const struct rtnl_link_ops *ops,
|
||||
struct nlattr *tb[],
|
||||
struct netlink_ext_ack *extack)
|
||||
{
|
||||
struct net_device *dev;
|
||||
unsigned int num_tx_queues = 1;
|
||||
@@ -2903,11 +2905,15 @@ struct net_device *rtnl_create_link(struct net *net,
|
||||
else if (ops->get_num_rx_queues)
|
||||
num_rx_queues = ops->get_num_rx_queues();
|
||||
|
||||
if (num_tx_queues < 1 || num_tx_queues > 4096)
|
||||
if (num_tx_queues < 1 || num_tx_queues > 4096) {
|
||||
NL_SET_ERR_MSG(extack, "Invalid number of transmit queues");
|
||||
return ERR_PTR(-EINVAL);
|
||||
}
|
||||
|
||||
if (num_rx_queues < 1 || num_rx_queues > 4096)
|
||||
if (num_rx_queues < 1 || num_rx_queues > 4096) {
|
||||
NL_SET_ERR_MSG(extack, "Invalid number of receive queues");
|
||||
return ERR_PTR(-EINVAL);
|
||||
}
|
||||
|
||||
dev = alloc_netdev_mqs(ops->priv_size, ifname, name_assign_type,
|
||||
ops->setup, num_tx_queues, num_rx_queues);
|
||||
@@ -3163,7 +3169,7 @@ replay:
|
||||
}
|
||||
|
||||
dev = rtnl_create_link(link_net ? : dest_net, ifname,
|
||||
name_assign_type, ops, tb);
|
||||
name_assign_type, ops, tb, extack);
|
||||
if (IS_ERR(dev)) {
|
||||
err = PTR_ERR(dev);
|
||||
goto out;
|
||||
|
Reference in New Issue
Block a user