https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=287445
--- Comment #22 from leper <[email protected]> ---
Created attachment 262060
--> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=262060&action=edit
messages with dp_level=0
dev.ql.0.MFW_Version: 8.50.11.0
dev.ql.0.STORMFW_Version: 8.33.7.0
dev.ql.0.Driver_Version: v2.0.112
The tunable is dev.ql.X.dp_level, but changing does not seem to produce any
verbose output. With the below patch applied to the driver there is a little
more output.
diff --git a/sys/dev/qlnx/qlnxe/qlnx_os.c b/sys/dev/qlnx/qlnxe/qlnx_os.c
index 171a782cafcc..63234d69b8e8 100644
--- a/sys/dev/qlnx/qlnxe/qlnx_os.c
+++ b/sys/dev/qlnx/qlnxe/qlnx_os.c
@@ -1205,8 +1205,8 @@ qlnx_init_hw(qlnx_host_t *ha)
ECORE_MSG_RDMA;
ha->dp_level = ECORE_LEVEL_VERBOSE;*/
//ha->dp_module = ECORE_MSG_RDMA | ECORE_MSG_INTR | ECORE_MSG_LL2;
- ha->dp_level = ECORE_LEVEL_NOTICE;
- //ha->dp_level = ECORE_LEVEL_VERBOSE;
+ //ha->dp_level = ECORE_LEVEL_NOTICE;
+ ha->dp_level = ECORE_LEVEL_VERBOSE;
ecore_init_dp(&ha->cdev, ha->dp_module, ha->dp_level, ha->pci_dev);
@@ -2173,7 +2173,8 @@ qlnx_add_sysctls(qlnx_host_t *ha)
OID_AUTO, "debug", CTLFLAG_RW,
&ha->dbg_level, ha->dbg_level, "Debug Level");
- ha->dp_level = 0x01;
+ //ha->dp_level = 0x01;
+ ha->dp_level = 0x00;
SYSCTL_ADD_UINT(ctx, children,
OID_AUTO, "dp_level", CTLFLAG_RW,
&ha->dp_level, ha->dp_level, "DP Level");
Not sure the output is revealing anything however.
--
You are receiving this mail because:
You are the assignee for the bug.
lmpx.com only provides a reader for public news (NNTP) servers. It is not
affiliated with the servers or forums shown here and is not responsible for
the content of articles, which is written by their respective authors.