Date: Tue, 8 Feb 2022 18:56:59 GMT From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 14a15342bbc8 - main - Remove device lio from i386's LINT-NOIP Message-ID: <202202081856.218IuxVI015845@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by dim: URL: https://cgit.FreeBSD.org/src/commit/?id=14a15342bbc88906c97fbf84553eb5c6de8295ca commit 14a15342bbc88906c97fbf84553eb5c6de8295ca Author: Dimitry Andric <dim@FreeBSD.org> AuthorDate: 2022-02-08 18:53:52 +0000 Commit: Dimitry Andric <dim@FreeBSD.org> CommitDate: 2022-02-08 18:53:52 +0000 Remove device lio from i386's LINT-NOIP This fixes link errors for the LINT-NOIP kernel on i386: ``` ld: error: undefined symbol: tcp_lro_flush_all >>> referenced by lio_droq.c >>> lio_droq.o:(lio_droq_process_packets) ld: error: undefined symbol: tcp_lro_rx >>> referenced by lio_core.c >>> lio_core.o:(lio_push_packet) ld: error: undefined symbol: tcp_lro_init >>> referenced by lio_main.c >>> lio_main.o:(lio_attach) ld: error: undefined symbol: tcp_lro_free >>> referenced by lio_main.c >>> lio_main.o:(lio_attach) >>> referenced by lio_main.c >>> lio_main.o:(lio_destroy_nic_device) *** [kernel] Error code 1 ``` MFC after: 3 days --- sys/i386/conf/LINT-NOIP | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/i386/conf/LINT-NOIP b/sys/i386/conf/LINT-NOIP index a1ea6fa3202a..2f21766eb69e 100644 --- a/sys/i386/conf/LINT-NOIP +++ b/sys/i386/conf/LINT-NOIP @@ -12,6 +12,7 @@ nodevice bxe nodevice em nodevice fxp nodevice jme +nodevice lio nodevice msk nodevice mxge nodevice sge
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202202081856.218IuxVI015845>