mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-21 14:11:20 +00:00
net: Add netif_copy_real_num_queues() for use by virtual net drivers
This sets the active numbers of queues on a net device to match another. Signed-off-by: Ben Hutchings <bhutchings@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
62fe0b40ab
commit
3171d02629
1 changed files with 12 additions and 0 deletions
|
@ -1699,6 +1699,18 @@ static inline int netif_set_real_num_rx_queues(struct net_device *dev,
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
static inline int netif_copy_real_num_queues(struct net_device *to_dev,
|
||||||
|
const struct net_device *from_dev)
|
||||||
|
{
|
||||||
|
netif_set_real_num_tx_queues(to_dev, from_dev->real_num_tx_queues);
|
||||||
|
#ifdef CONFIG_RPS
|
||||||
|
return netif_set_real_num_rx_queues(to_dev,
|
||||||
|
from_dev->real_num_rx_queues);
|
||||||
|
#else
|
||||||
|
return 0;
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/* Use this variant when it is known for sure that it
|
/* Use this variant when it is known for sure that it
|
||||||
* is executing from hardware interrupt context or with hardware interrupts
|
* is executing from hardware interrupt context or with hardware interrupts
|
||||||
* disabled.
|
* disabled.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue