diff options
author | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-12-17 14:23:49 +0000 |
---|---|---|
committer | Mike Belopuhov <mikeb@cvs.openbsd.org> | 2012-12-17 14:23:49 +0000 |
commit | 5997eb9dc12c1e3c9940fbd09c17b563ea9420ae (patch) | |
tree | 6b42b40c6441970eb95d5f413f4e894dc0e2e325 /sys/dev/pci/if_ix.h | |
parent | 5a7ab644d25e734c4391ae13c344469ee880ce30 (diff) |
Catch up with upstream, where rxbuf->m_pack was renamed to rxbuf->buf
and rxbuf->pmap to rxbuf->map. Tested on 82599 and X540.
Diffstat (limited to 'sys/dev/pci/if_ix.h')
-rw-r--r-- | sys/dev/pci/if_ix.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/pci/if_ix.h b/sys/dev/pci/if_ix.h index 5931f2b0112..2ea73978d60 100644 --- a/sys/dev/pci/if_ix.h +++ b/sys/dev/pci/if_ix.h @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ix.h,v 1.22 2012/12/17 13:46:23 mikeb Exp $ */ +/* $OpenBSD: if_ix.h,v 1.23 2012/12/17 14:23:48 mikeb Exp $ */ /****************************************************************************** @@ -133,9 +133,9 @@ struct ixgbe_tx_buf { }; struct ixgbe_rx_buf { - struct mbuf *m_pack; + struct mbuf *buf; struct mbuf *fmp; - bus_dmamap_t pmap; + bus_dmamap_t map; }; /* @@ -215,7 +215,6 @@ struct rx_ring { /* Soft stats */ uint64_t rx_irq; - uint64_t rx_split_packets; uint64_t rx_packets; uint64_t rx_bytes; uint64_t rx_discarded; |