diff options
author | Tom Herbert <therbert@google.com> | 2011-01-09 19:36:31 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-01-10 16:05:30 -0800 |
commit | 36909ea43814cba34f7c921e99cba33d770a54e1 (patch) | |
tree | 294b44411dc7939e152aa1002f9f5fe9868751f6 /include/linux/etherdevice.h | |
parent | 91b5c98c2e062f982423686c77b8bf31f37fa196 (diff) | |
download | op-kernel-dev-36909ea43814cba34f7c921e99cba33d770a54e1.zip op-kernel-dev-36909ea43814cba34f7c921e99cba33d770a54e1.tar.gz |
net: Add alloc_netdev_mqs function
Added alloc_netdev_mqs function which allows the number of transmit and
receive queues to be specified independenty. alloc_netdev_mq was
changed to a macro to call the new function. Also added
alloc_etherdev_mqs with same purpose.
Signed-off-by: Tom Herbert <therbert@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/etherdevice.h')
-rw-r--r-- | include/linux/etherdevice.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/etherdevice.h b/include/linux/etherdevice.h index f16a010..bec8b82 100644 --- a/include/linux/etherdevice.h +++ b/include/linux/etherdevice.h @@ -48,8 +48,10 @@ extern int eth_validate_addr(struct net_device *dev); -extern struct net_device *alloc_etherdev_mq(int sizeof_priv, unsigned int queue_count); +extern struct net_device *alloc_etherdev_mqs(int sizeof_priv, unsigned int txqs, + unsigned int rxqs); #define alloc_etherdev(sizeof_priv) alloc_etherdev_mq(sizeof_priv, 1) +#define alloc_etherdev_mq(sizeof_priv, count) alloc_etherdev_mqs(sizeof_priv, count, count) /** * is_zero_ether_addr - Determine if give Ethernet address is all zeros. |