Revert "vtnet: Adjust rx buffer so IP header 32-bit aligned"

This reverts commit 9e6d11ce9a.

This wasn't right to start with...

Requested by: markj
This commit is contained in:
Warner Losh 2023-12-28 10:20:42 -07:00
parent 8ee1cc4a7f
commit 23699ff23c

View file

@ -1532,8 +1532,8 @@ vtnet_rx_alloc_buf(struct vtnet_softc *sc, int nbufs, struct mbuf **m_tailp)
m_freem(m_head);
return (NULL);
}
m->m_len = size;
m_adj(m, ETHER_ALIGN);
if (m_head != NULL) {
m_tail->m_next = m;
m_tail = m;