Deleted Added
full compact
ixgbe.h (215911) ixgbe.h (215914)
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/ixgbe/ixgbe.h 215911 2010-11-26 22:46:32Z jfv $*/
33/*$FreeBSD: head/sys/dev/ixgbe/ixgbe.h 215914 2010-11-27 00:00:33Z jfv $*/
34
35
36#ifndef _IXGBE_H_
37#define _IXGBE_H_
38
39
40#include <sys/param.h>
41#include <sys/systm.h>

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

422 * Receive rings:
423 * Allocated at run time, an array of rings.
424 */
425 struct rx_ring *rx_rings;
426 int num_rx_desc;
427 u64 que_mask;
428 u32 rx_process_limit;
429
34
35
36#ifndef _IXGBE_H_
37#define _IXGBE_H_
38
39
40#include <sys/param.h>
41#include <sys/systm.h>

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

422 * Receive rings:
423 * Allocated at run time, an array of rings.
424 */
425 struct rx_ring *rx_rings;
426 int num_rx_desc;
427 u64 que_mask;
428 u32 rx_process_limit;
429
430 /* Multicast array memory */
431 u8 *mta;
432
430 /* Misc stats maintained by the driver */
431 unsigned long dropped_pkts;
432 unsigned long mbuf_defrag_failed;
433 unsigned long mbuf_header_failed;
434 unsigned long mbuf_packet_failed;
435 unsigned long no_tx_map_avail;
436 unsigned long no_tx_dma_setup;
437 unsigned long watchdog_events;

--- 59 unchanged lines hidden ---
433 /* Misc stats maintained by the driver */
434 unsigned long dropped_pkts;
435 unsigned long mbuf_defrag_failed;
436 unsigned long mbuf_header_failed;
437 unsigned long mbuf_packet_failed;
438 unsigned long no_tx_map_avail;
439 unsigned long no_tx_dma_setup;
440 unsigned long watchdog_events;

--- 59 unchanged lines hidden ---