Deleted Added
full compact
35c35
< * $FreeBSD: head/sys/dev/sge/if_sgereg.h 207380 2010-04-29 18:14:14Z yongari $
---
> * $FreeBSD: head/sys/dev/sge/if_sgereg.h 207628 2010-05-04 19:04:51Z yongari $
286c286
< #define SGE_MAXTXSEGS 1
---
> #define SGE_MAXTXSEGS 16
300a301,311
> struct sge_txdesc {
> struct mbuf *tx_m;
> bus_dmamap_t tx_dmamap;
> int tx_ndesc;
> };
>
> struct sge_rxdesc {
> struct mbuf *rx_m;
> bus_dmamap_t rx_dmamap;
> };
>
309,311c320,321
< struct mbuf *sge_rx_mbuf[SGE_RX_RING_CNT];
< struct mbuf *sge_tx_mbuf[SGE_TX_RING_CNT];
< bus_dmamap_t sge_rx_map[SGE_RX_RING_CNT];
---
> struct sge_txdesc sge_txdesc[SGE_TX_RING_CNT];
> struct sge_rxdesc sge_rxdesc[SGE_RX_RING_CNT];
313d322
< bus_dmamap_t sge_tx_map[SGE_TX_RING_CNT];