Bug 277723

Summary: !VIMAGE breakage after PR277286 "linux: require vnet(9) context in ifname_bsd_to_linux_name()"
Product: Base System Reporter: Helge Oldach <freebsd>
Component: kernAssignee: Gleb Smirnoff <glebius>
Status: Closed FIXED    
Severity: Affects Only Me CC: freebsd
Priority: ---    
Version: 13.2-STABLE   
Hardware: amd64   
OS: Any   
See Also: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=277286

Description Helge Oldach 2024-03-15 17:32:05 UTC
When compiling *without* VIMAGE, linux.o bails out after db4429d00f0d95a1532f8707f8b828a744586dc7.

Probably also applies to 14-STABLE


===> linux (all)
===> linux64 (all)
===> linux_common (all)
cc -target x86_64-unknown-freebsd13.3 --sysroot=/usr/obj/usr/src/amd64.amd64/tmp -B/usr/obj/usr/src/amd64.amd64/tmp/usr/bin  -O2 -pipe -fno-common  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -DKLD_TIED -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/amd64.amd64/sys/HMO/opt_global.h -I. -I/usr/src/sys -I/usr/src/sys/contrib/ck/include -fno-common -g -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -fdebug-prefix-map=./machine=/usr/src/sys/amd64/include -fdebug-prefix-map=./x86=/usr/src/sys/x86/include -I/usr/obj/usr/src/amd64.amd64/sys/HMO     -MD  -MF.depend.linux.o -MTlinux.o -mcmodel=kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -Wall -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=tautological-compare -Wno-error=empty-body -Wno-error=parentheses-equality -Wno-error=unused-function -Wno-error=pointer-sign -Wno-error=shift-negative-value -Wno-address-of-packed-member -Wno-error=array-parameter -Wno-error=deprecated-non-prototype -Wno-error=strict-prototypes -Wno-error=unused-but-set-variable -Wno-error=unused-but-set-variable -Wno-format-zero-length   -mno-aes -mno-avx  -std=iso9899:1999 -c /usr/src/sys/compat/linux/linux.c -o linux.o
/usr/src/sys/compat/linux/linux.c:253:2: error: call to undeclared function 'CURVNET_ASSERT_SET'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration]
  253 |         CURVNET_ASSERT_SET();
      |         ^
1 error generated.
*** Error code 1

Stop.
make[4]: stopped in /usr/src/sys/modules/linux_common
*** Error code 1

Stop.
make[3]: stopped in /usr/src/sys/modules
*** Error code 1

Stop.
make[2]: stopped in /usr/obj/usr/src/amd64.amd64/sys/HMO
*** Error code 1

Stop.
make[1]: stopped in /usr/src
*** Error code 1

Stop.
make: stopped in /usr/src
Comment 1 Gleb Smirnoff freebsd_committer freebsd_triage 2024-03-15 18:01:53 UTC
Fixed with d68ccfb4ea2b. Sorry for the trouble caused.