|
Lines 269-278
Link Here
|
| 269 |
continue; |
269 |
continue; |
| 270 |
} |
270 |
} |
| 271 |
IF_ENQUEUE(&p->if_snd, m); |
271 |
IF_ENQUEUE(&p->if_snd, m); |
| 272 |
if ((p->if_flags & IFF_OACTIVE) == 0) { |
272 |
ifp->if_opackets++; |
|
|
273 |
p->if_obytes += m->m_pkthdr.len; |
| 274 |
if (m->m_flags & M_MCAST) |
| 275 |
p->if_omcasts++; |
| 276 |
if ((p->if_flags & IFF_OACTIVE) == 0) |
| 273 |
p->if_start(p); |
277 |
p->if_start(p); |
| 274 |
ifp->if_opackets++; |
|
|
| 275 |
} |
| 276 |
} |
278 |
} |
| 277 |
ifp->if_flags &= ~IFF_OACTIVE; |
279 |
ifp->if_flags &= ~IFF_OACTIVE; |