The branch stable/14 has been updated by kbowling:

URL: 
https://cgit.FreeBSD.org/src/commit/?id=88462a368a7fefeae4b9f5a190254d2e54950a2f

commit 88462a368a7fefeae4b9f5a190254d2e54950a2f
Author:     Fuqian <[email protected]>
AuthorDate: 2024-05-28 05:18:52 +0000
Commit:     Kevin Bowling <[email protected]>
CommitDate: 2024-06-07 05:47:02 +0000

    qlxgbe: Remove pointer printing in ql_ioctl.c
    
    PR:             238653
    MFC after:      1 week
    
    (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 b34a9cc508c0..c95cbd9df688 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);

Reply via email to