Deleted Added
full compact
aacvar.h (110604) aacvar.h (111141)
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2001 Scott Long
4 * Copyright (c) 2000 BSDi
5 * Copyright (c) 2001 Adaptec, Inc.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
1/*-
2 * Copyright (c) 2000 Michael Smith
3 * Copyright (c) 2001 Scott Long
4 * Copyright (c) 2000 BSDi
5 * Copyright (c) 2001 Adaptec, Inc.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

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

21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * $FreeBSD: head/sys/dev/aac/aacvar.h 110604 2003-02-10 00:34:24Z scottl $
29 * $FreeBSD: head/sys/dev/aac/aacvar.h 111141 2003-02-19 21:38:29Z scottl $
30 */
31
32/*
33 * Driver Parameter Definitions
34 */
35
36/*
37 * The firmware interface allows for a 16-bit s/g list length. We limit

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

43 * We allocate a small set of FIBs for the adapter to use to send us messages.
44 */
45#define AAC_ADAPTER_FIBS 8
46
47/*
48 * FIBs are allocated in page-size chunks and can grow up to the 512
49 * limit imposed by the hardware.
50 */
30 */
31
32/*
33 * Driver Parameter Definitions
34 */
35
36/*
37 * The firmware interface allows for a 16-bit s/g list length. We limit

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

43 * We allocate a small set of FIBs for the adapter to use to send us messages.
44 */
45#define AAC_ADAPTER_FIBS 8
46
47/*
48 * FIBs are allocated in page-size chunks and can grow up to the 512
49 * limit imposed by the hardware.
50 */
51#define AAC_FIB_COUNT 8
51#define AAC_FIB_COUNT (PAGE_SIZE/sizeof(struct aac_fib))
52#define AAC_PREALLOCATE_FIBS 128
52#define AAC_MAX_FIBS 512
53
54/*
55 * The controller reports status events in AIFs. We hang on to a number of
56 * these in order to pass them out to user-space management tools.
57 */
58#define AAC_AIFQ_LENGTH 64
59

--- 549 unchanged lines hidden ---
53#define AAC_MAX_FIBS 512
54
55/*
56 * The controller reports status events in AIFs. We hang on to a number of
57 * these in order to pass them out to user-space management tools.
58 */
59#define AAC_AIFQ_LENGTH 64
60

--- 549 unchanged lines hidden ---