git: 06c854adc984 - stable/13 - qlxgbe: Remove pointer printing in ql_ioctl.c
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 29 Sep 2024 04:01:53 UTC
The branch stable/13 has been updated by kbowling:
URL: https://cgit.FreeBSD.org/src/commit/?id=06c854adc98472b9e51cb064446d9f664edba5f4
commit 06c854adc98472b9e51cb064446d9f664edba5f4
Author: Fuqian <huangfq.daxian@gmail.com>
AuthorDate: 2024-05-28 05:18:52 +0000
Commit: Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2024-09-29 03:58:54 +0000
qlxgbe: Remove pointer printing in ql_ioctl.c
PR: 238653
(cherry picked from commit a58b4ee025fcac480e44e1f56acffe2feacc5845)
---
sys/dev/qlxgbe/ql_ioctl.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sys/dev/qlxgbe/ql_ioctl.c b/sys/dev/qlxgbe/ql_ioctl.c
index 06dda731ed4f..85e41888d289 100644
--- a/sys/dev/qlxgbe/ql_ioctl.c
+++ b/sys/dev/qlxgbe/ql_ioctl.c
@@ -652,8 +652,8 @@ ql_slowpath_log(qla_host_t *ha, qla_sp_log_t *log)
log->num_entries = ha->hw.sp_log_num_entries;
}
device_printf(ha->pci_dev,
- "%s: exit [rval = %d][%p, next_idx = %d, %d entries, %d bytes]\n",
- __func__, rval, log->buffer, log->next_idx, log->num_entries, size);
+ "%s: exit [rval = %d][next_idx = %d, %d entries, %d bytes]\n",
+ __func__, rval, log->next_idx, log->num_entries, size);
mtx_unlock(&ha->sp_log_lock);
return (rval);