Date: Fri, 11 Jul 2025 23:13:47 +0000 From: bugzilla-noreply@freebsd.org To: net@FreeBSD.org Subject: [Bug 287445] [qlnxe] QLogic/Marvell/Dell 41164 ping loss Message-ID: <bug-287445-7501-ZUCF11l73j@https.bugs.freebsd.org/bugzilla/> In-Reply-To: <bug-287445-7501@https.bugs.freebsd.org/bugzilla/> References: <bug-287445-7501@https.bugs.freebsd.org/bugzilla/>
next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D287445 --- Comment #22 from leper <leper4@protonmail.com> --- Created attachment 262060 --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D262060&action= =3Dedit messages with dp_level=3D0 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 =3D ECORE_LEVEL_VERBOSE;*/ //ha->dp_module =3D ECORE_MSG_RDMA | ECORE_MSG_INTR | ECORE_MSG_LL2; - ha->dp_level =3D ECORE_LEVEL_NOTICE; - //ha->dp_level =3D ECORE_LEVEL_VERBOSE; + //ha->dp_level =3D ECORE_LEVEL_NOTICE; + ha->dp_level =3D 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 =3D 0x01; + //ha->dp_level =3D 0x01; + ha->dp_level =3D 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. --=20 You are receiving this mail because: You are the assignee for the bug.=
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-287445-7501-ZUCF11l73j>