Remove struct ifnet's unused if_switchport member
authorkn <kn@openbsd.org>
Tue, 30 Aug 2022 18:23:58 +0000 (18:23 +0000)
committerkn <kn@openbsd.org>
Tue, 30 Aug 2022 18:23:58 +0000 (18:23 +0000)
This is a switch(4) left-over.

Even though it is defined under _KERNEL, a few ports do define it and
include <net/if_var.h>, so this removal warrants a REVISION bump for all
potential ports consumers (once ports bulk machines run on a snapshot
containing this commit).

OK mvs

sys/net/if_var.h

index 394398c..443a71e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: if_var.h,v 1.115 2022/08/29 07:51:45 bluhm Exp $      */
+/*     $OpenBSD: if_var.h,v 1.116 2022/08/30 18:23:58 kn Exp $ */
 /*     $NetBSD: if.h,v 1.23 1996/05/07 02:40:27 thorpej Exp $  */
 
 /*
@@ -133,7 +133,6 @@ struct ifnet {                              /* and the entries */
        int     if_pcount;              /* [N] # of promiscuous listeners */
        unsigned int if_bridgeidx;      /* [K] used by bridge ports */
        caddr_t if_bpf;                 /* packet filter structure */
-       caddr_t if_switchport;          /* used by switch ports */
        caddr_t if_mcast;               /* used by multicast code */
        caddr_t if_mcast6;              /* used by IPv6 multicast code */
        caddr_t if_pf_kif;              /* pf interface abstraction */