forked from Minki/linux
net: ena: Add debug prints for invalid req_id resets
Add qid and req_id to error prints when ENA_REGS_RESET_INV_TX_REQ_ID reset occurs. Switch from %hu to %u, since u16 should be printed with %u, as explained in [1]. [1] - https://www.kernel.org/doc/html/latest/core-api/printk-formats.html Signed-off-by: Arthur Kiyanovski <akiyano@amazon.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
c215941aba
commit
9b648bb1d8
@ -1269,14 +1269,14 @@ static int handle_invalid_req_id(struct ena_ring *ring, u16 req_id,
|
||||
netif_err(ring->adapter,
|
||||
tx_done,
|
||||
ring->netdev,
|
||||
"tx_info doesn't have valid %s",
|
||||
is_xdp ? "xdp frame" : "skb");
|
||||
"tx_info doesn't have valid %s. qid %u req_id %u",
|
||||
is_xdp ? "xdp frame" : "skb", ring->qid, req_id);
|
||||
else
|
||||
netif_err(ring->adapter,
|
||||
tx_done,
|
||||
ring->netdev,
|
||||
"Invalid req_id: %hu\n",
|
||||
req_id);
|
||||
"Invalid req_id %u in qid %u\n",
|
||||
req_id, ring->qid);
|
||||
|
||||
ena_increase_stat(&ring->tx_stats.bad_req_id, 1, &ring->syncp);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user