Home
last modified time | relevance | path

Searched refs:_trunk (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/net/
H A Dif_vlan.c132 #define VLAN_FOREACH(_ifv, _trunk) \ argument
135 if (((_ifv) = (_trunk)->vlans[_i]) != NULL)
137 #define VLAN_FOREACH(_ifv, _trunk) \ argument
140 for (_i = 0; _i < (1 << (_trunk)->hwidth); _i++) \
141 CK_SLIST_FOREACH_SAFE((_ifv), &(_trunk)->hash[_i], ifv_list, _next)
151 #define VLAN_FOREACH_UNTIL_SAFE(_ifv, _trunk, _cond) \ argument
154 if (((_ifv) = (_trunk)->vlans[_i]))
164 #define VLAN_FOREACH_UNTIL_SAFE(_ifv, _trunk, _cond) \ argument
168 !(_cond) && _i < (1 << (_trunk)->hwidth); \
169 _i = (_touch && ((_trunk) != NULL) ? 0 : _i + 1), _touch = false) \
[all …]