CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2022/09/08 04:22:07
Modified files:
sys/arch/amd64/amd64: autoconf.c
sys/arch/arm64/arm64: autoconf.c
sys/arch/armv7/armv7: autoconf.c
sys/arch/i386/i386: autoconf.c
sys/arch/powerpc64/powerpc64: autoconf.c
sys/arch/riscv64/riscv64: autoconf.c
sys/dev/pv : hypervic.c vmt.c
sys/net : if.c if_loop.c if_var.h rtsock.c
sys/netinet : igmp.c in.c ip_carp.c ip_mroute.c
sys/netinet6 : in6.c in6_ifattach.c ip6_mroute.c mld6.c nd6.c
Log message:
Rename global ifnet TAILQ
Naming the list like the struct itself makes for awful grepping.
Call the global variable "ifnetlist" from now on.
There used to be kvm(3) consumers in base picking up this symbol, but those
have long been converted to other interfaces.
A few potential ports users remain, same deal as sys/net/if_var.h r1.116
"Remove struct ifnet's unused if_switchport member": they get bumped.
Previous users pointed out by deraadt
OK bluhm