diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2012-06-01 23:29:48 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2012-06-01 23:29:48 +0000 |
| commit | e2873b76a677769b047c86f6acbfbb58ef346c67 (patch) | |
| tree | 221e605810db01fdf9ad7488ea78bedd1853e5fa /sys/dev/isp/isp_freebsd.h | |
| parent | 5a1ae35dd13c0157e22d2fc172d7b7015f0bf6ee (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp/isp_freebsd.h')
| -rw-r--r-- | sys/dev/isp/isp_freebsd.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/isp/isp_freebsd.h b/sys/dev/isp/isp_freebsd.h index e212e1193383..457f9f2908a1 100644 --- a/sys/dev/isp/isp_freebsd.h +++ b/sys/dev/isp/isp_freebsd.h @@ -129,8 +129,10 @@ typedef struct tstate { struct ccb_hdr_slist atios; struct ccb_hdr_slist inots; uint32_t hold; - int atio_count; - int inot_count; + uint32_t + enabled : 1, + atio_count : 15, + inot_count : 15; inot_private_data_t * restart_queue; inot_private_data_t * ntfree; inot_private_data_t ntpool[ATPDPSIZE]; |
