OSDN Git Service

net: ena: ethtool: get_channels: use combined only
authorSameeh Jubran <sameehj@amazon.com>
Sun, 6 Oct 2019 12:33:25 +0000 (15:33 +0300)
committerDavid S. Miller <davem@davemloft.net>
Mon, 7 Oct 2019 13:30:03 +0000 (09:30 -0400)
Since we use the same IRQ and NAPI to service RX and TX then we need to
use a combined channel instead of rx and tx channels.

Signed-off-by: Sameeh Jubran <sameehj@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/amazon/ena/ena_ethtool.c

index 3ad661f..03b4ae7 100644 (file)
@@ -734,14 +734,8 @@ static void ena_get_channels(struct net_device *netdev,
 {
        struct ena_adapter *adapter = netdev_priv(netdev);
 
-       channels->max_rx = adapter->num_io_queues;
-       channels->max_tx = adapter->num_io_queues;
-       channels->max_other = 0;
-       channels->max_combined = 0;
-       channels->rx_count = adapter->num_io_queues;
-       channels->tx_count = adapter->num_io_queues;
-       channels->other_count = 0;
-       channels->combined_count = 0;
+       channels->max_combined = adapter->num_io_queues;
+       channels->combined_count = adapter->num_io_queues;
 }
 
 static int ena_get_tunable(struct net_device *netdev,