diff options
author | Sameeh Jubran <sameehj@amazon.com> | 2019-10-06 15:33:23 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-10-07 09:30:03 -0400 |
commit | faa615f9da5d79937756363ff0628d04b61015a1 (patch) | |
tree | 682a9957978c170872c2c7344038c09ad2ff321e /drivers/net/ethernet/amazon/ena/ena_netdev.h | |
parent | 9b75803e6ed763c60166d8f433e52b8164390c25 (diff) | |
download | linux-faa615f9da5d79937756363ff0628d04b61015a1.tar.bz2 |
net: ena: change num_queues to num_io_queues for clarity and consistency
Most places in the code refer to the IO queues as io_queues and not
simply queues. Examples - max_io_queues_per_vf, ENA_MAX_NUM_IO_QUEUES,
ena_destroy_all_io_queues() etc..
We are also adding the new max_num_io_queues field to struct ena_adapter
in the following commit.
The changes included in this commit are:
struct ena_adapter->num_queues => struct ena_adapter->num_io_queues
Signed-off-by: Arthur Kiyanovski <akiyano@amazon.com>
Signed-off-by: Sameeh Jubran <sameehj@amazon.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/amazon/ena/ena_netdev.h')
-rw-r--r-- | drivers/net/ethernet/amazon/ena/ena_netdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/amazon/ena/ena_netdev.h b/drivers/net/ethernet/amazon/ena/ena_netdev.h index 72ee51a82ec7..7e8e51e323e9 100644 --- a/drivers/net/ethernet/amazon/ena/ena_netdev.h +++ b/drivers/net/ethernet/amazon/ena/ena_netdev.h @@ -324,7 +324,7 @@ struct ena_adapter { u32 rx_copybreak; u32 max_mtu; - int num_queues; + int num_io_queues; int msix_vecs; |