mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-27 04:54:41 +08:00
gve: Fix swapped vars when fetching max queues
Fixes: 893ce44df5
("gve: Add basic driver framework for Compute Engine Virtual NIC")
Signed-off-by: Bailey Forrest <bcf@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
ff70202b2d
commit
1db1a862a0
@ -1295,8 +1295,8 @@ static int gve_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
|
||||
|
||||
gve_write_version(®_bar->driver_version);
|
||||
/* Get max queues to alloc etherdev */
|
||||
max_rx_queues = ioread32be(®_bar->max_tx_queues);
|
||||
max_tx_queues = ioread32be(®_bar->max_rx_queues);
|
||||
max_tx_queues = ioread32be(®_bar->max_tx_queues);
|
||||
max_rx_queues = ioread32be(®_bar->max_rx_queues);
|
||||
/* Alloc and setup the netdev and priv */
|
||||
dev = alloc_etherdev_mqs(sizeof(*priv), max_tx_queues, max_rx_queues);
|
||||
if (!dev) {
|
||||
|
Loading…
Reference in New Issue
Block a user