Skip to content

Commit

Permalink
net-sysfs: get_netdev_queue_index() cleanup
Browse files Browse the repository at this point in the history
Remove one inline keyword, and no need for a loop to find
an index into a table.

Signed-off-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Eric Dumazet authored and David S. Miller committed Feb 14, 2014
1 parent a56cddd commit ed1acc8
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions net/core/net-sysfs.c
Original file line number Diff line number Diff line change
@@ -996,15 +996,12 @@ static struct attribute_group dql_group = {
#endif /* CONFIG_BQL */

#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;
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);

return i;

0 comments on commit ed1acc8

Please sign in to comment.