mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-07-23 23:32:14 +00:00
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>
This commit is contained in:
parent
302846e3a6
commit
efacb309b5
3 changed files with 8 additions and 12 deletions
|
@ -75,9 +75,8 @@ struct rtnl_link_ops {
|
|||
size_t (*get_xstats_size)(const struct net_device *dev);
|
||||
int (*fill_xstats)(struct sk_buff *skb,
|
||||
const struct net_device *dev);
|
||||
int (*get_tx_queues)(struct net *net, struct nlattr *tb[],
|
||||
unsigned int *tx_queues,
|
||||
unsigned int *real_tx_queues);
|
||||
int (*get_tx_queues)(struct net *net,
|
||||
const struct nlattr *tb[]);
|
||||
};
|
||||
|
||||
extern int __rtnl_link_register(struct rtnl_link_ops *ops);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue