Deleted Added
full compact
cxgb_adapter.h (177807) cxgb_adapter.h (180583)
1/**************************************************************************
2
3Copyright (c) 2007, Chelsio Inc.
4All rights reserved.
5
6Redistribution and use in source and binary forms, with or without
7modification, are permitted provided that the following conditions are met:
8

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

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

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

21CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26POSSIBILITY OF SUCH DAMAGE.
27
28
29$FreeBSD: head/sys/dev/cxgb/cxgb_adapter.h 177807 2008-03-31 21:02:27Z kmacy $
29$FreeBSD: head/sys/dev/cxgb/cxgb_adapter.h 180583 2008-07-18 06:12:31Z kmacy $
30
31***************************************************************************/
32
33
34#ifndef _CXGB_ADAPTER_H_
35#define _CXGB_ADAPTER_H_
36
37#include <sys/lock.h>

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

165 TXQ_OFLD = 1,
166 TXQ_CTRL = 2, };
167
168
169/*
170 * work request size in bytes
171 */
172#define WR_LEN (WR_FLITS * 8)
30
31***************************************************************************/
32
33
34#ifndef _CXGB_ADAPTER_H_
35#define _CXGB_ADAPTER_H_
36
37#include <sys/lock.h>

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

165 TXQ_OFLD = 1,
166 TXQ_CTRL = 2, };
167
168
169/*
170 * work request size in bytes
171 */
172#define WR_LEN (WR_FLITS * 8)
173#define PIO_LEN (WR_LEN - sizeof(struct cpl_tx_pkt))
173#define PIO_LEN (WR_LEN - sizeof(struct cpl_tx_pkt_lso))
174
175
176/* careful, the following are set on priv_flags and must not collide with
177 * IFF_ flags!
178 */
179enum {
180 LRO_ACTIVE = (1 << 8),
181};

--- 466 unchanged lines hidden ---
174
175
176/* careful, the following are set on priv_flags and must not collide with
177 * IFF_ flags!
178 */
179enum {
180 LRO_ACTIVE = (1 << 8),
181};

--- 466 unchanged lines hidden ---