aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Kiyanovski <akiyano@amazon.com>2023-06-14 10:12:16 +0000
committerArthur Kiyanovski <akiyano@FreeBSD.org>2024-01-14 21:18:10 +0000
commit4526ef3d05dd469f5f61d22783a861d9db5c56fd (patch)
tree1917ffbb91c46d735779e4972306449f8aa330df
parent71cd348d245404b17c08c69b2aa8be3190e68732 (diff)
downloadsrc-4526ef3d05dd469f5f61d22783a861d9db5c56fd.tar.gz
src-4526ef3d05dd469f5f61d22783a861d9db5c56fd.zip
ena: Change measurement unit of time since last tx cleanup to ms
This commit: 1. Sets the time since last cleanup to milliseconds. 2. Fixes incorrect indentations. Approved by: cperciva (mentor) MFC after: 2 weeks Sponsored by: Amazon, Inc. (cherry picked from commit 9272e45c04c0d4fcb5d767e962783f3ab192f64e)
-rw-r--r--sys/dev/ena/ena.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ena/ena.c b/sys/dev/ena/ena.c
index 067c8a6f3a08..ba1712093a7a 100644
--- a/sys/dev/ena/ena.c
+++ b/sys/dev/ena/ena.c
@@ -3102,13 +3102,13 @@ check_missing_comp_in_tx_queue(struct ena_adapter *adapter,
if (unlikely(time_offset > adapter->missing_tx_timeout)) {
if (tx_buf->print_once) {
- time_since_last_cleanup = TICKS_2_USEC(ticks -
+ time_since_last_cleanup = TICKS_2_MSEC(ticks -
tx_ring->tx_last_cleanup_ticks);
missing_tx_comp_to = sbttoms(
adapter->missing_tx_timeout);
ena_log(pdev, WARN,
"Found a Tx that wasn't completed on time, qid %d, index %d. "
- "%d usecs have passed since last cleanup. Missing Tx timeout value %d msecs.\n",
+ "%d msecs have passed since last cleanup. Missing Tx timeout value %d msecs.\n",
tx_ring->qid, i, time_since_last_cleanup,
missing_tx_comp_to);
}