diff options
author | David Gwynne <dlg@cvs.openbsd.org> | 2019-04-27 05:11:51 +0000 |
---|---|---|
committer | David Gwynne <dlg@cvs.openbsd.org> | 2019-04-27 05:11:51 +0000 |
commit | 12633ed98f108a2dd1257ae13af8187bbfd4ef25 (patch) | |
tree | c3b0e47840ca268520128f7e62cff5bb16c3081a /sys/net | |
parent | 76874ced21da4c1da2f10212c69df612cd91fad8 (diff) |
fix some whitespace.
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_vlan.c | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c index 0d9ffa94553..c4db8df5b27 100644 --- a/sys/net/if_vlan.c +++ b/sys/net/if_vlan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vlan.c,v 1.190 2019/04/27 05:08:30 dlg Exp $ */ +/* $OpenBSD: if_vlan.c,v 1.191 2019/04/27 05:11:50 dlg Exp $ */ /* * Copyright 1998 Massachusetts Institute of Technology @@ -83,22 +83,23 @@ struct vlan_mc_entry { }; struct vlan_softc { - struct arpcom ifv_ac; /* make this an interface */ - unsigned int ifv_ifidx0; /* parent interface of this vlan */ - int ifv_rxprio; - struct ifv_linkmib { - int ifvm_prio; /* prio to apply on packet leaving if */ - u_int16_t ifvm_proto; /* encapsulation ethertype */ - u_int16_t ifvm_tag; /* tag to apply on packets leaving if */ - u_int16_t ifvm_type; /* non-standard ethertype or 0x8100 */ - } ifv_mib; - LIST_HEAD(__vlan_mchead, vlan_mc_entry) vlan_mc_listhead; - SRPL_ENTRY(vlan_softc) ifv_list; - int ifv_flags; - struct refcnt ifv_refcnt; - void *lh_cookie; - void *dh_cookie; - struct ifih *ifv_ifih; + struct arpcom ifv_ac; + unsigned int ifv_ifidx0; /* parent interface */ + int ifv_rxprio; + struct ifv_linkmib { + int ifvm_prio; + u_int16_t ifvm_proto; /* encapsulation ethertype */ + u_int16_t ifvm_tag; + u_int16_t ifvm_type; /* non-standard ethertype or 0x8100 */ + } ifv_mib; + LIST_HEAD(__vlan_mchead, vlan_mc_entry) + vlan_mc_listhead; + SRPL_ENTRY(vlan_softc) ifv_list; + int ifv_flags; + struct refcnt ifv_refcnt; + void *lh_cookie; + void *dh_cookie; + struct ifih *ifv_ifih; }; #define ifv_if ifv_ac.ac_if |