[Bug 287445] [qlnxe] QLogic/Marvell/Dell 41164 ping loss
| Newsgroups | gmane.os.freebsd.devel.net |
|---|---|
| Message-ID | <[email protected]/bugzilla/> |
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=287445 --- Comment #23 from Zhenlei Huang <[email protected]> --- (In reply to leper from comment #22) Emm, sorry I forgot the `dp_module`. Try this, ``` ### Enable ECORE_MSG_LINK sysctl dev.ql.0.dp_module=4 ``` Or from the source code, ``` --- 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_module = ECORE_MSG_LINK; + ha->dp_level = ECORE_LEVEL_VERBOSE; ecore_init_dp(&ha->cdev, ha->dp_module, ha->dp_level, ha->pci_dev); ``` -- You are receiving this mail because: You are the assignee for the bug.