| 1185 | } |
| 1186 | |
| 1187 | static void |
| 1188 | bstp_set_all_sync(struct bstp_state *bs) |
| 1189 | { |
| 1190 | struct bstp_port *bp; |
| 1191 | |
| 1192 | BSTP_LOCK_ASSERT(bs); |
| 1193 | |
| 1194 | LIST_FOREACH(bp, &bs->bs_bplist, bp_next) { |
| 1195 | bp->bp_sync = 1; |
| 1196 | bp->bp_synced = 0; /* Not explicit in spec */ |
| 1197 | } |
| 1198 | |
| 1199 | bs->bs_allsynced = 0; |
| 1200 | } |
| 1201 | |
| 1202 | static void |
| 1203 | bstp_set_port_state(struct bstp_port *bp, int state) |