From 5997eb9dc12c1e3c9940fbd09c17b563ea9420ae Mon Sep 17 00:00:00 2001 From: Mike Belopuhov Date: Mon, 17 Dec 2012 14:23:49 +0000 Subject: Catch up with upstream, where rxbuf->m_pack was renamed to rxbuf->buf and rxbuf->pmap to rxbuf->map. Tested on 82599 and X540. --- sys/dev/pci/if_ix.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'sys/dev/pci/if_ix.h') 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; -- cgit v1.2.3