提交 3573540c 编写于 作者: M Michael S. Tsirkin 提交者: David S. Miller

netif_set_xps_queue: make cpu mask const

virtio wants to pass in cpumask_of(cpu), make parameter
const to avoid build warnings.
Signed-off-by: NMichael S. Tsirkin <mst@redhat.com>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 5e8a402f
...@@ -2264,11 +2264,12 @@ static inline void netif_wake_subqueue(struct net_device *dev, u16 queue_index) ...@@ -2264,11 +2264,12 @@ static inline void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
} }
#ifdef CONFIG_XPS #ifdef CONFIG_XPS
extern int netif_set_xps_queue(struct net_device *dev, struct cpumask *mask, extern int netif_set_xps_queue(struct net_device *dev,
const struct cpumask *mask,
u16 index); u16 index);
#else #else
static inline int netif_set_xps_queue(struct net_device *dev, static inline int netif_set_xps_queue(struct net_device *dev,
struct cpumask *mask, const struct cpumask *mask,
u16 index) u16 index)
{ {
return 0; return 0;
......
...@@ -1917,7 +1917,8 @@ static struct xps_map *expand_xps_map(struct xps_map *map, ...@@ -1917,7 +1917,8 @@ static struct xps_map *expand_xps_map(struct xps_map *map,
return new_map; return new_map;
} }
int netif_set_xps_queue(struct net_device *dev, struct cpumask *mask, u16 index) int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
u16 index)
{ {
struct xps_dev_maps *dev_maps, *new_dev_maps = NULL; struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
struct xps_map *map, *new_map; struct xps_map *map, *new_map;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册