Deleted Added
full compact
aacvar.h (97214) aacvar.h (103675)
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 97214 2002-05-24 05:57:47Z peter $
29 * $FreeBSD: head/sys/dev/aac/aacvar.h 103675 2002-09-20 12:52:03Z phk $
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

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

115struct aac_disk
116{
117 device_t ad_dev;
118 dev_t ad_dev_t;
119 struct aac_softc *ad_controller;
120 struct aac_container *ad_container;
121 struct disk ad_disk;
122 struct devstat ad_stats;
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

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

115struct aac_disk
116{
117 device_t ad_dev;
118 dev_t ad_dev_t;
119 struct aac_softc *ad_controller;
120 struct aac_container *ad_container;
121 struct disk ad_disk;
122 struct devstat ad_stats;
123 struct disklabel ad_label;
124 int ad_flags;
125#define AAC_DISK_OPEN (1<<0)
126 int ad_cylinders;
127 int ad_heads;
128 int ad_sectors;
129 u_int32_t ad_size;
130 int unit;
131};

--- 458 unchanged lines hidden ---
123 int ad_flags;
124#define AAC_DISK_OPEN (1<<0)
125 int ad_cylinders;
126 int ad_heads;
127 int ad_sectors;
128 u_int32_t ad_size;
129 int unit;
130};

--- 458 unchanged lines hidden ---