Netdev List
 help / color / mirror / Atom feed
* [PATCH net-next] net: add an empty __netif_set_xps_queue() stab in the !CONFIG_XPS case
@ 2018-08-10  1:04 Andrei Vagin
  2018-08-12 17:25 ` kbuild test robot
  0 siblings, 1 reply; 2+ messages in thread
From: Andrei Vagin @ 2018-08-10  1:04 UTC (permalink / raw)
  To: David S. Miller; +Cc: netdev, Andrei Vagin

From: Andrei Vagin <avagin@gmail.com>

__netif_set_xps_queue() is used in drivers/net/virtio_net.c.

Fixes: 4d99f6602cb5 ("net: allow to call netif_reset_xps_queues() under cpus_read_lock")
Signed-off-by: Andrei Vagin <avagin@gmail.com>
---
 include/linux/netdevice.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h
index 282e2e95ad5b..a5e4b0a18f90 100644
--- a/include/linux/netdevice.h
+++ b/include/linux/netdevice.h
@@ -3406,6 +3406,13 @@ static inline int netif_attrmask_next_and(int n, const unsigned long *src1p,
 	return n + 1;
 }
 #else
+static inline int __netif_set_xps_queue(struct net_device *dev,
+					const unsigned long *mask,
+					u16 index, bool is_rxqs_map)
+{
+	return 0;
+}
+
 static inline int netif_set_xps_queue(struct net_device *dev,
 				      const struct cpumask *mask,
 				      u16 index)
-- 
2.17.1

^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-08-12 20:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-08-10  1:04 [PATCH net-next] net: add an empty __netif_set_xps_queue() stab in the !CONFIG_XPS case Andrei Vagin
2018-08-12 17:25 ` kbuild test robot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox