Skip site navigation (1)Skip section navigation (2)
From:      Kevin Bowling <kbowling@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: a58b4ee025fc - main - qlxgbe: Remove pointer printing in ql_ioctl.c PR: 238653 MFC after: 1 week

| raw e-mail | index | archive | help
The branch main has been updated by kbowling:

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

commit a58b4ee025fcac480e44e1f56acffe2feacc5845
Author:     Fuqian <huangfq.daxian@gmail.com>
AuthorDate: 2024-05-28 05:18:52 +0000
Commit:     Kevin Bowling <kbowling@FreeBSD.org>
CommitDate: 2024-05-28 05:18:52 +0000

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?>