Deleted Added
full compact
tws.h (262572) tws.h (272000)
1/*
2 * Copyright (c) 2010, LSI Corp.
3 * All rights reserved.
4 * Author : Manjunath Ranganathaiah
5 * Support: freebsdraid@lsi.com
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *
1/*
2 * Copyright (c) 2010, LSI Corp.
3 * All rights reserved.
4 * Author : Manjunath Ranganathaiah
5 * Support: freebsdraid@lsi.com
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions

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

26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *
34 * $FreeBSD: head/sys/dev/tws/tws.h 262572 2014-02-27 21:41:52Z delphij $
34 * $FreeBSD: head/sys/dev/tws/tws.h 272000 2014-09-22 20:38:01Z jhb $
35 */
36
37#include <sys/param.h> /* defines used in kernel.h */
38#include <sys/module.h>
39#include <sys/systm.h>
40#include <sys/proc.h>
41#include <sys/errno.h>
42#include <sys/kernel.h> /* types used in module initialization */

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

263 void *ioctl_data_mem; /* ioctl dmable memory */
264 bus_dmamap_t ioctl_data_map; /* ioctl data map */
265 struct tws_request *reqs; /* pointer to requests */
266 struct tws_sense *sense_bufs; /* pointer to sense buffers */
267 boolean obfl_q_overrun; /* OBFL overrun flag */
268 union ccb *scan_ccb; /* pointer to a ccb */
269 struct tws_request *q_head[TWS_MAX_QS]; /* head pointers to q's */
270 struct tws_request *q_tail[TWS_MAX_QS]; /* tail pointers to q's */
35 */
36
37#include <sys/param.h> /* defines used in kernel.h */
38#include <sys/module.h>
39#include <sys/systm.h>
40#include <sys/proc.h>
41#include <sys/errno.h>
42#include <sys/kernel.h> /* types used in module initialization */

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

263 void *ioctl_data_mem; /* ioctl dmable memory */
264 bus_dmamap_t ioctl_data_map; /* ioctl data map */
265 struct tws_request *reqs; /* pointer to requests */
266 struct tws_sense *sense_bufs; /* pointer to sense buffers */
267 boolean obfl_q_overrun; /* OBFL overrun flag */
268 union ccb *scan_ccb; /* pointer to a ccb */
269 struct tws_request *q_head[TWS_MAX_QS]; /* head pointers to q's */
270 struct tws_request *q_tail[TWS_MAX_QS]; /* tail pointers to q's */
271 struct callout stats_timer;
271};
272};