Commit 9aa1c152 authored by Shannon Nelson's avatar Shannon Nelson Committed by David S. Miller

ionic: fix up a couple of debug strings

Fix the queue name displayed.
Signed-off-by: default avatarShannon Nelson <snelson@pensando.io>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent eba87609
...@@ -433,14 +433,14 @@ static int ionic_qcq_alloc(struct ionic_lif *lif, unsigned int type, ...@@ -433,14 +433,14 @@ static int ionic_qcq_alloc(struct ionic_lif *lif, unsigned int type,
err = ionic_intr_alloc(lif, &new->intr); err = ionic_intr_alloc(lif, &new->intr);
if (err) { if (err) {
netdev_warn(lif->netdev, "no intr for %s: %d\n", netdev_warn(lif->netdev, "no intr for %s: %d\n",
name, err); new->q.name, err);
goto err_out; goto err_out;
} }
err = ionic_bus_get_irq(lif->ionic, new->intr.index); err = ionic_bus_get_irq(lif->ionic, new->intr.index);
if (err < 0) { if (err < 0) {
netdev_warn(lif->netdev, "no vector for %s: %d\n", netdev_warn(lif->netdev, "no vector for %s: %d\n",
name, err); new->q.name, err);
goto err_out_free_intr; goto err_out_free_intr;
} }
new->intr.vector = err; new->intr.vector = err;
...@@ -449,7 +449,8 @@ static int ionic_qcq_alloc(struct ionic_lif *lif, unsigned int type, ...@@ -449,7 +449,8 @@ static int ionic_qcq_alloc(struct ionic_lif *lif, unsigned int type,
err = ionic_request_irq(lif, new); err = ionic_request_irq(lif, new);
if (err) { if (err) {
netdev_warn(lif->netdev, "irq request failed %d\n", err); netdev_warn(lif->netdev, "irq request failed for %s: %d\n",
new->q.name, err);
goto err_out_free_intr; goto err_out_free_intr;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment