From nobody Wed Jan 17 09:07:31 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4TFKlc4YC2z57NZ6 for ; Wed, 17 Jan 2024 09:07:40 +0000 (UTC) (envelope-from lexi@le-fay.org) Received: from thyme.eden.le-Fay.ORG (THYME.EDEN.LE-FAY.ORG [81.187.47.194]) by mx1.freebsd.org (Postfix) with ESMTP id 4TFKlb4SCWz4Q3P for ; Wed, 17 Jan 2024 09:07:39 +0000 (UTC) (envelope-from lexi@le-fay.org) Authentication-Results: mx1.freebsd.org; dkim=pass header.d=le-fay.org header.s=thyme header.b=c7xW9yhr; dmarc=none; spf=pass (mx1.freebsd.org: domain of lexi@le-fay.org designates 81.187.47.194 as permitted sender) smtp.mailfrom=lexi@le-fay.org Received: from iris.eden.le-Fay.ORG (IRIS.EDEN.LE-FAY.ORG [IPv6:2001:8b0:aab5:106::18]) by thyme.eden.le-Fay.ORG (Postfix) with ESMTP id 1FFDC28642; Wed, 17 Jan 2024 09:07:32 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=le-fay.org; s=thyme; t=1705482452; bh=6EmvKnQJdAx1mQuna9270KfSwRdpuoOJsjtJXeNHtQg=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=c7xW9yhrLLnJ/31kCtpAjVLsLebnOi5Rk2sP5fbOqGm2uigHiI2IclMSD3F12woQG tzjg7RVA+xDX4+j2He0WJzCb7ge1l05SFtcBEtmwUADcDacoymbf0A7uiUIx3yUTFB KoW0ZXbblf7li+GhicYwkBXVmrqlmFZsIo7sQHqw= Received: from ilythia.eden.le-fay.org (ILYTHIA.EDEN.LE-FAY.ORG [IPv6:2001:8b0:aab5:104:3::101]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature ECDSA (secp384r1) server-digest SHA384) (No client certificate requested) by iris.eden.le-Fay.ORG (Postfix) with ESMTPSA id 08C0B84AE; Wed, 17 Jan 2024 09:07:32 +0000 (GMT) Date: Wed, 17 Jan 2024 09:07:31 +0000 From: Lexi Winter To: Rocky Hotas Cc: FreeBSD Questions Subject: Re: Network interface not working: watchdog timeout error Message-ID: References: List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-questions@freebsd.org X-BeenThere: freebsd-questions@freebsd.org MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="WhekbcWYu/2QLDj0" Content-Disposition: inline In-Reply-To: X-Spamd-Bar: ----- X-Spamd-Result: default: False [-5.49 / 15.00]; SIGNED_PGP(-2.00)[]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.99)[-0.990]; MIME_GOOD(-0.20)[multipart/signed,text/plain]; R_SPF_ALLOW(-0.20)[+ip4:81.187.47.194]; R_DKIM_ALLOW(-0.20)[le-fay.org:s=thyme]; RCVD_NO_TLS_LAST(0.10)[]; DKIM_TRACE(0.00)[le-fay.org:+]; TO_DN_ALL(0.00)[]; DMARC_NA(0.00)[le-fay.org]; FREEMAIL_TO(0.00)[post.com]; RCPT_COUNT_TWO(0.00)[2]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; ASN(0.00)[asn:20712, ipnet:81.187.0.0/16, country:GB]; MIME_TRACE(0.00)[0:+,1:+,2:~]; RCVD_COUNT_TWO(0.00)[2]; FROM_EQ_ENVFROM(0.00)[]; MISSING_XM_UA(0.00)[]; TO_MATCH_ENVRCPT_SOME(0.00)[]; MLMMJ_DEST(0.00)[freebsd-questions@freebsd.org]; MID_RHS_MATCH_FROMTLD(0.00)[]; RCVD_VIA_SMTP_AUTH(0.00)[]; DWL_DNSWL_NONE(0.00)[le-fay.org:dkim] X-Rspamd-Queue-Id: 4TFKlb4SCWz4Q3P --WhekbcWYu/2QLDj0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Rocky Hotas: > With FreeBSD 14.0-RELEASE I have this (quite old) network interface, > which is embedded in the motherboard: > > nfe0@pci0:0:15:0: class=3D0x020000 rev=3D0xa2 hdr=3D0x00 vendor=3D0= x10de device=3D0x07dc subvendor=3D0x1734 subdevice=3D0x115b =20 > It performed normally for several days and across several reboots. Then, > without applying any modification to the configuration, the system was > physically powered down and booted again: the network card did no more > work. After another reboot, nothing changed. [...] > Is there anything that can be done from the OS, or is it a hardware issue? according to the nfe(4) manual page, it supports the hw.nfe.msix_disable and hw.nfe.msi_disable loader tunables. i don't know anything about nfe(4) specifically, but some other network cards (such as alc(4)) have issues with MSI or MSI-X enabled, so it might be worth turning those off in /boot/loader.conf to see if that makes any difference. for example: hw.nfe.msi_disable=3D1 hw.nfe.msix_disable=3D1 --WhekbcWYu/2QLDj0 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQGzBAABCAAdFiEEuwt6MaPcv/+Mo+ftDHqbqZ41x5kFAmWnmNAACgkQDHqbqZ41 x5mCFAv/TaGoySYHd37ydetKmL19A7EARfaOx50BQ7pAQ13G/q80HaPEHAzmKikg clFIQojwAWt74ZJteU5Z3Vt9pBz0m+iiwBZUHWTBHeWw41VbF7D06WXfKrkg+bYM MX3yvHlidu+aLZgEpqwrJgkLTLvU6KEM+9YmhhMOec4uDmexQEjJSHEoLJYErR+l A7GEVfYA3VaEKgIe/HGnQVCR/f13MJaxt692Ckn1Ep0e5aVcvlx8rWTVEVcpdleB L19MxB1GKA2bpmwwYK0aZWcifDYbDDXNIl7rtyR7ZdTroAw1aZjDRBx1pI9zIY5J AVhG9lhFDp6G4sOt+HffMbrH2BV2y6VvbJ9fSN6jL4vdMErxeor2dwglnvx8B46u 3Cr9FpkKAXubGt7+dFispwqT8fKAOZvELuv6J8RJcVQ2Azk18bjcpgDHOAxFyhTb wAMmmVI+U5+06HjS0ngrmzuGztB6n5LsLBrF4WYTpSxIG4zK0K03n8491IJD2qtu DoxIl7FL =EZfw -----END PGP SIGNATURE----- --WhekbcWYu/2QLDj0--