aboutsummaryrefslogtreecommitdiff
path: root/sys/net/if_vlan.c
diff options
context:
space:
mode:
authorGleb Smirnoff <glebius@FreeBSD.org>2006-10-11 10:06:35 +0000
committerGleb Smirnoff <glebius@FreeBSD.org>2006-10-11 10:06:35 +0000
commitaad0be7a3b47f163041ef843f43b185c725af522 (patch)
tree62323b7d71b98b4e801f612ccf333df431eb5c5f /sys/net/if_vlan.c
parent1c6b148eb1d08d43c040ad1a735f960f30623398 (diff)
downloadsrc-aad0be7a3b47f163041ef843f43b185c725af522.tar.gz
src-aad0be7a3b47f163041ef843f43b185c725af522.zip
- Update the baudrate every time the parent changes its link state.
- Rearrange the curly braces so that this piece of code is more readable.
Notes
Notes: svn path=/head/; revision=163232
Diffstat (limited to 'sys/net/if_vlan.c')
-rw-r--r--sys/net/if_vlan.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/sys/net/if_vlan.c b/sys/net/if_vlan.c
index 0fef2173e4f6..64912ca8b273 100644
--- a/sys/net/if_vlan.c
+++ b/sys/net/if_vlan.c
@@ -1265,12 +1265,13 @@ vlan_link_state(struct ifnet *ifp, int link)
if (trunk->vlans[i] != NULL) {
ifv = trunk->vlans[i];
#else
- for (i = 0; i < (1 << trunk->hwidth); i++) {
- LIST_FOREACH(ifv, &trunk->hash[i], ifv_list)
+ for (i = 0; i < (1 << trunk->hwidth); i++)
+ LIST_FOREACH(ifv, &trunk->hash[i], ifv_list) {
#endif
+ ifv->ifv_ifp->if_baudrate = trunk->parent->if_baudrate;
if_link_state_change(ifv->ifv_ifp,
trunk->parent->if_link_state);
- }
+ }
TRUNK_UNLOCK(trunk);
}