Deleted Added
full compact
isp_freebsd.h (231985) isp_freebsd.h (236427)
1/* $FreeBSD: head/sys/dev/isp/isp_freebsd.h 231985 2012-02-22 01:08:59Z kevlo $ */
1/* $FreeBSD: head/sys/dev/isp/isp_freebsd.h 236427 2012-06-01 23:29:48Z mjacob $ */
2/*-
3 * Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions
4 *
5 * Copyright (c) 1997-2008 by Matthew Jacob
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

124};
125
126typedef struct tstate {
127 SLIST_ENTRY(tstate) next;
128 struct cam_path *owner;
129 struct ccb_hdr_slist atios;
130 struct ccb_hdr_slist inots;
131 uint32_t hold;
2/*-
3 * Qlogic ISP SCSI Host Adapter FreeBSD Wrapper Definitions
4 *
5 * Copyright (c) 1997-2008 by Matthew Jacob
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

124};
125
126typedef struct tstate {
127 SLIST_ENTRY(tstate) next;
128 struct cam_path *owner;
129 struct ccb_hdr_slist atios;
130 struct ccb_hdr_slist inots;
131 uint32_t hold;
132 int atio_count;
133 int inot_count;
132 uint32_t
133 enabled : 1,
134 atio_count : 15,
135 inot_count : 15;
134 inot_private_data_t * restart_queue;
135 inot_private_data_t * ntfree;
136 inot_private_data_t ntpool[ATPDPSIZE];
137 atio_private_data_t * atfree;
138 atio_private_data_t atpool[ATPDPSIZE];
139} tstate_t;
140
141#define LUN_HASH_SIZE 32

--- 548 unchanged lines hidden ---
136 inot_private_data_t * restart_queue;
137 inot_private_data_t * ntfree;
138 inot_private_data_t ntpool[ATPDPSIZE];
139 atio_private_data_t * atfree;
140 atio_private_data_t atpool[ATPDPSIZE];
141} tstate_t;
142
143#define LUN_HASH_SIZE 32

--- 548 unchanged lines hidden ---