Deleted Added
full compact
if_ixv.c (293338) if_ixv.c (294327)
1/******************************************************************************
2
3 Copyright (c) 2001-2015, 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-2015, 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/if_ixv.c 293338 2016-01-07 18:34:56Z sbruno $*/
33/*$FreeBSD: head/sys/dev/ixgbe/if_ixv.c 294327 2016-01-19 15:33:28Z hselasky $*/
34
35
36#ifndef IXGBE_STANDALONE_BUILD
37#include "opt_inet.h"
38#include "opt_inet6.h"
39#endif
40
41#include "ixgbe.h"

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

2162 rxr = que->rxr;
2163 lro = &rxr->lro;
2164 device_printf(dev,"QUE(%d) IRQs Handled: %lu\n",
2165 que->msix, (long)que->irqs);
2166 device_printf(dev,"RX(%d) Packets Received: %lld\n",
2167 rxr->me, (long long)rxr->rx_packets);
2168 device_printf(dev,"RX(%d) Bytes Received: %lu\n",
2169 rxr->me, (long)rxr->rx_bytes);
34
35
36#ifndef IXGBE_STANDALONE_BUILD
37#include "opt_inet.h"
38#include "opt_inet6.h"
39#endif
40
41#include "ixgbe.h"

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

2162 rxr = que->rxr;
2163 lro = &rxr->lro;
2164 device_printf(dev,"QUE(%d) IRQs Handled: %lu\n",
2165 que->msix, (long)que->irqs);
2166 device_printf(dev,"RX(%d) Packets Received: %lld\n",
2167 rxr->me, (long long)rxr->rx_packets);
2168 device_printf(dev,"RX(%d) Bytes Received: %lu\n",
2169 rxr->me, (long)rxr->rx_bytes);
2170 device_printf(dev,"RX(%d) LRO Queued= %d\n",
2171 rxr->me, lro->lro_queued);
2172 device_printf(dev,"RX(%d) LRO Flushed= %d\n",
2173 rxr->me, lro->lro_flushed);
2170 device_printf(dev,"RX(%d) LRO Queued= %lld\n",
2171 rxr->me, (long long)lro->lro_queued);
2172 device_printf(dev,"RX(%d) LRO Flushed= %lld\n",
2173 rxr->me, (long long)lro->lro_flushed);
2174 device_printf(dev,"TX(%d) Packets Sent: %lu\n",
2175 txr->me, (long)txr->total_packets);
2176 device_printf(dev,"TX(%d) NO Desc Avail: %lu\n",
2177 txr->me, (long)txr->no_desc_avail);
2178 }
2179
2180 device_printf(dev,"MBX IRQ Handled: %lu\n",
2181 (long)adapter->link_irq);

--- 22 unchanged lines hidden ---
2174 device_printf(dev,"TX(%d) Packets Sent: %lu\n",
2175 txr->me, (long)txr->total_packets);
2176 device_printf(dev,"TX(%d) NO Desc Avail: %lu\n",
2177 txr->me, (long)txr->no_desc_avail);
2178 }
2179
2180 device_printf(dev,"MBX IRQ Handled: %lu\n",
2181 (long)adapter->link_irq);

--- 22 unchanged lines hidden ---