]> git.baikalelectronics.ru Git - kernel.git/commit
netvsc: don't access netdev->num_rx_queues directly
authorArnd Bergmann <arnd@arndb.de>
Wed, 21 Jun 2017 22:16:37 +0000 (00:16 +0200)
committerDavid S. Miller <davem@davemloft.net>
Thu, 22 Jun 2017 17:27:28 +0000 (13:27 -0400)
commitf0f93c61aea02edb0de0ef787beb826b86f0731c
treedceea91aa8b1983e5d6fd8f027e43c024f782a75
parent71e51d852bd7a46c5ab674c85a54cbfcd511138c
netvsc: don't access netdev->num_rx_queues directly

This structure member is hidden behind CONFIG_SYSFS, and we
get a build error when that is disabled:

drivers/net/hyperv/netvsc_drv.c: In function 'netvsc_set_channels':
drivers/net/hyperv/netvsc_drv.c:754:49: error: 'struct net_device' has no member named 'num_rx_queues'; did you mean 'num_tx_queues'?
drivers/net/hyperv/netvsc_drv.c: In function 'netvsc_set_rxfh':
drivers/net/hyperv/netvsc_drv.c:1181:25: error: 'struct net_device' has no member named 'num_rx_queues'; did you mean 'num_tx_queues'?

As the value is only set once to the argument of alloc_netdev_mq(),
we can compare against that constant directly.

Fixes: 3807eedf7471 ("netvsc: allow get/set of RSS indirection table")
Fixes: 0855741b8570 ("netvsc: allow more flexible setting of number of channels")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: Stephen Hemminger <sthemmin@microsoft.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/hyperv/netvsc_drv.c