diff options
author | stephen hemminger <shemminger@vyatta.com> | 2012-04-10 22:34:43 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-13 21:31:00 +0400 |
commit | efacb309b50073a79ae604949a31509cd8b507ab (patch) | |
tree | 98fa69062e8e0cbaecbe069f9fef18f1917e1e65 /drivers/net/bonding | |
parent | 302846e3a692131a99b462078fe232ca2927b9d3 (diff) | |
download | linux-efacb309b50073a79ae604949a31509cd8b507ab.tar.xz |
rtnetlink & bonding: change args got get_tx_queues
Change get_tx_queues, drop unsused arg/return value real_tx_queues,
and use return by value (with error) rather than call by reference.
Probably bonding should just change to LLTX and the whole get_tx_queues
API could disappear!
Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding')
-rw-r--r-- | drivers/net/bonding/bond_main.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index 62d2409bb293..53ee6a0a3681 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -4820,12 +4820,9 @@ static int bond_validate(struct nlattr *tb[], struct nlattr *data[]) return 0; } -static int bond_get_tx_queues(struct net *net, struct nlattr *tb[], - unsigned int *num_queues, - unsigned int *real_num_queues) +static int bond_get_tx_queues(struct net *net, const struct nlattr *tb[]) { - *num_queues = tx_queues; - return 0; + return tx_queues; } static struct rtnl_link_ops bond_link_ops __read_mostly = { |