diff options
author | Jakub Kicinski <jakub.kicinski@netronome.com> | 2018-07-30 20:43:51 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2018-07-31 09:48:21 -0700 |
commit | c29c2ebd2ae0066c026045a21aa33ccbfcd8bb3c (patch) | |
tree | f28d1c0908110d3fbf8d84c1ea2c3b942fff9288 /include | |
parent | 39c64d8c876622e766dd2112baf81151dd82da02 (diff) | |
download | linux-stable-c29c2ebd2ae0066c026045a21aa33ccbfcd8bb3c.tar.gz linux-stable-c29c2ebd2ae0066c026045a21aa33ccbfcd8bb3c.tar.bz2 linux-stable-c29c2ebd2ae0066c026045a21aa33ccbfcd8bb3c.zip |
net: update real_num_rx_queues even when !CONFIG_SYSFS
We used to depend on real_num_rx_queues as a upper bound for sanity
checks. For AF_XDP socket validation it's useful if the check behaves
the same regardless of CONFIG_SYSFS setting.
Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: Quentin Monnet <quentin.monnet@netronome.com>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netdevice.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index 9c917467a2c7..3bf7e93c9e96 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -3431,8 +3431,9 @@ int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq); int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq); #else static inline int netif_set_real_num_rx_queues(struct net_device *dev, - unsigned int rxq) + unsigned int rxqs) { + dev->real_num_rx_queues = rxqs; return 0; } #endif |