diff options
| author | Bosko Milekic <bmilekic@FreeBSD.org> | 2001-06-20 19:48:35 +0000 |
|---|---|---|
| committer | Bosko Milekic <bmilekic@FreeBSD.org> | 2001-06-20 19:48:35 +0000 |
| commit | f5eece3fb99157ec3643100faf15515097904f54 (patch) | |
| tree | e79557908ee2eeed9a40c65a32399eb17abca830 /sys/dev/nge | |
| parent | 5a69ac96f564f1aa593d5d962e0919c5ad7406a8 (diff) | |
Notes
Diffstat (limited to 'sys/dev/nge')
| -rw-r--r-- | sys/dev/nge/if_nge.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/nge/if_nge.c b/sys/dev/nge/if_nge.c index 9c15beb794416..65dd7187e8246 100644 --- a/sys/dev/nge/if_nge.c +++ b/sys/dev/nge/if_nge.c @@ -1278,8 +1278,8 @@ static void nge_rxeof(sc) * only gigE chip I know of with alignment constraints * on receive buffers. RX buffers must be 64-bit aligned. */ - m0 = m_devget(mtod(m, char *) - ETHER_ALIGN, - total_len + ETHER_ALIGN, 0, ifp, NULL); + m0 = m_devget(mtod(m, char *), total_len, ETHER_ALIGN, ifp, + NULL); nge_newbuf(sc, cur_rx, m); if (m0 == NULL) { printf("nge%d: no receive buffers " @@ -1288,7 +1288,6 @@ static void nge_rxeof(sc) ifp->if_ierrors++; continue; } - m_adj(m0, ETHER_ALIGN); m = m0; ifp->if_ipackets++; |
