Deleted Added
full compact
if_igb.h (209616) if_igb.h (211913)
1/******************************************************************************
2
3 Copyright (c) 2001-2010, Intel Corporation
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8

--- 16 unchanged lines hidden (view full) ---

25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
31
32******************************************************************************/
1/******************************************************************************
2
3 Copyright (c) 2001-2010, Intel Corporation
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are met:
8

--- 16 unchanged lines hidden (view full) ---

25 CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26 SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
27 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
28 CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
29 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30 POSSIBILITY OF SUCH DAMAGE.
31
32******************************************************************************/
33/*$FreeBSD: head/sys/dev/e1000/if_igb.h 209616 2010-06-30 21:05:51Z jfv $*/
33/*$FreeBSD: head/sys/dev/e1000/if_igb.h 211913 2010-08-28 00:34:22Z yongari $*/
34
35#ifndef _IGB_H_DEFINED_
36#define _IGB_H_DEFINED_
37
38/* Tunables */
39
40/*
41 * IGB_TXD: Maximum number of Transmit Descriptors

--- 375 unchanged lines hidden (view full) ---

417 */
418 struct rx_ring *rx_rings;
419 bool rx_hdr_split;
420 u16 num_rx_desc;
421 int rx_process_limit;
422 u32 rx_mbuf_sz;
423 u32 rx_mask;
424
34
35#ifndef _IGB_H_DEFINED_
36#define _IGB_H_DEFINED_
37
38/* Tunables */
39
40/*
41 * IGB_TXD: Maximum number of Transmit Descriptors

--- 375 unchanged lines hidden (view full) ---

417 */
418 struct rx_ring *rx_rings;
419 bool rx_hdr_split;
420 u16 num_rx_desc;
421 int rx_process_limit;
422 u32 rx_mbuf_sz;
423 u32 rx_mask;
424
425 /* Multicast array memory */
426 u8 *mta;
425 /* Misc stats maintained by the driver */
426 unsigned long dropped_pkts;
427 unsigned long mbuf_defrag_failed;
428 unsigned long mbuf_header_failed;
429 unsigned long mbuf_packet_failed;
430 unsigned long no_tx_map_avail;
431 unsigned long no_tx_dma_setup;
432 unsigned long watchdog_events;

--- 93 unchanged lines hidden ---
427 /* Misc stats maintained by the driver */
428 unsigned long dropped_pkts;
429 unsigned long mbuf_defrag_failed;
430 unsigned long mbuf_header_failed;
431 unsigned long mbuf_packet_failed;
432 unsigned long no_tx_map_avail;
433 unsigned long no_tx_dma_setup;
434 unsigned long watchdog_events;

--- 93 unchanged lines hidden ---