|
@@ -996,15 +996,12 @@ static struct attribute_group dql_group = {
|
|
#endif /* CONFIG_BQL */
|
|
#endif /* CONFIG_BQL */
|
|
|
|
|
|
#ifdef CONFIG_XPS
|
|
#ifdef CONFIG_XPS
|
|
-static inline unsigned int get_netdev_queue_index(struct netdev_queue *queue)
|
|
|
|
|
|
+static unsigned int get_netdev_queue_index(struct netdev_queue *queue)
|
|
{
|
|
{
|
|
struct net_device *dev = queue->dev;
|
|
struct net_device *dev = queue->dev;
|
|
- int i;
|
|
|
|
-
|
|
|
|
- for (i = 0; i < dev->num_tx_queues; i++)
|
|
|
|
- if (queue == &dev->_tx[i])
|
|
|
|
- break;
|
|
|
|
|
|
+ unsigned int i;
|
|
|
|
|
|
|
|
+ i = queue - dev->_tx;
|
|
BUG_ON(i >= dev->num_tx_queues);
|
|
BUG_ON(i >= dev->num_tx_queues);
|
|
|
|
|
|
return i;
|
|
return i;
|