When padding an mbuf chain to have a length that is a multiple

of 48 bytes for AAL0, we also need to update the packet header.

Spotted by: Anil Madhavapeddy <anil@recoil.org>
This commit is contained in:
harti 2003-07-22 08:20:09 +00:00
parent a05513a73b
commit d354b9a114

View File

@ -421,6 +421,7 @@ patm_tx_pad(struct patm_softc *sc, struct mbuf *m0)
return (m0);
}
pad = 48 - plen % 48;
m0->m_pkthdr.len += pad;
if (M_WRITABLE(last)) {
if (M_TRAILINGSPACE(last) >= pad) {
bzero(last->m_data + last->m_len, pad);