Deleted Added
full compact
sfxge.h (294077) sfxge.h (294996)
1/*-
2 * Copyright (c) 2010-2015 Solarflare Communications Inc.
3 * All rights reserved.
4 *
5 * This software was developed in part by Philip Paeps under contract for
6 * Solarflare Communications, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
27 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * The views and conclusions contained in the software and documentation are
30 * those of the authors and should not be interpreted as representing official
31 * policies, either expressed or implied, of the FreeBSD Project.
32 *
1/*-
2 * Copyright (c) 2010-2015 Solarflare Communications Inc.
3 * All rights reserved.
4 *
5 * This software was developed in part by Philip Paeps under contract for
6 * Solarflare Communications, Inc.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

25 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
26 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
27 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 *
29 * The views and conclusions contained in the software and documentation are
30 * those of the authors and should not be interpreted as representing official
31 * policies, either expressed or implied, of the FreeBSD Project.
32 *
33 * $FreeBSD: head/sys/dev/sfxge/sfxge.h 294077 2016-01-15 06:25:26Z arybchik $
33 * $FreeBSD: head/sys/dev/sfxge/sfxge.h 294996 2016-01-28 16:51:56Z glebius $
34 */
35
36#ifndef _SFXGE_H
37#define _SFXGE_H
38
39#include <sys/param.h>
40#include <sys/kernel.h>
41#include <sys/socket.h>

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

268
269 struct sfxge_txq *txq[SFXGE_TXQ_NTYPES + SFXGE_RX_SCALE_MAX];
270
271 struct ifmedia media;
272
273 size_t rx_prefix_size;
274 size_t rx_buffer_size;
275 size_t rx_buffer_align;
34 */
35
36#ifndef _SFXGE_H
37#define _SFXGE_H
38
39#include <sys/param.h>
40#include <sys/kernel.h>
41#include <sys/socket.h>

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

268
269 struct sfxge_txq *txq[SFXGE_TXQ_NTYPES + SFXGE_RX_SCALE_MAX];
270
271 struct ifmedia media;
272
273 size_t rx_prefix_size;
274 size_t rx_buffer_size;
275 size_t rx_buffer_align;
276 uma_zone_t rx_buffer_zone;
276 int rx_cluster_size;
277
278 unsigned int evq_max;
279 unsigned int evq_count;
280 unsigned int rxq_count;
281 unsigned int txq_count;
282
283 unsigned int tso_fw_assisted;
284#define SFXGE_FATSOV1 (1 << 0)

--- 154 unchanged lines hidden ---
277
278 unsigned int evq_max;
279 unsigned int evq_count;
280 unsigned int rxq_count;
281 unsigned int txq_count;
282
283 unsigned int tso_fw_assisted;
284#define SFXGE_FATSOV1 (1 << 0)

--- 154 unchanged lines hidden ---