Deleted Added
full compact
cissvar.h (242089) cissvar.h (245459)
1/*-
2 * Copyright (c) 2001 Michael Smith
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Michael Smith
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/ciss/cissvar.h 242089 2012-10-25 18:46:02Z peter $
26 * $FreeBSD: head/sys/dev/ciss/cissvar.h 245459 2013-01-15 14:35:35Z sbruno $
27 */
28
29/*
30 * CISS adapter driver datastructures
31 */
32
33typedef STAILQ_HEAD(, ciss_request) cr_qhead_t;
34

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

40 * There is no guaranteed upper bound on the number of concurrent
41 * commands an adapter may claim to support. Cap it at a reasonable
42 * value.
43 */
44#define CISS_MAX_REQUESTS 1024
45
46/*
47 * Maximum number of logical drives we support.
27 */
28
29/*
30 * CISS adapter driver datastructures
31 */
32
33typedef STAILQ_HEAD(, ciss_request) cr_qhead_t;
34

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

40 * There is no guaranteed upper bound on the number of concurrent
41 * commands an adapter may claim to support. Cap it at a reasonable
42 * value.
43 */
44#define CISS_MAX_REQUESTS 1024
45
46/*
47 * Maximum number of logical drives we support.
48 * If the controller does not indicate a maximum
49 * value. This is a compatibiliy value to support
50 * older ciss controllers (e.g. model 6i)
48 */
51 */
49#define CISS_MAX_LOGICAL 63
52#define CISS_MAX_LOGICAL 16
50
51/*
52 * Maximum number of physical devices we support.
53 */
54#define CISS_MAX_PHYSICAL 1024
55
56/*
57 * Interrupt reduction can be controlled by tuning the interrupt

--- 337 unchanged lines hidden ---
53
54/*
55 * Maximum number of physical devices we support.
56 */
57#define CISS_MAX_PHYSICAL 1024
58
59/*
60 * Interrupt reduction can be controlled by tuning the interrupt

--- 337 unchanged lines hidden ---