diff options
| author | Matt Jacob <mjacob@FreeBSD.org> | 2002-06-16 04:54:46 +0000 |
|---|---|---|
| committer | Matt Jacob <mjacob@FreeBSD.org> | 2002-06-16 04:54:46 +0000 |
| commit | 9dba6a4ecb988a0ba88dfb24d98476dd03abc4c6 (patch) | |
| tree | 3ad1bf323950b5c2baa32676a39ecad1e4134908 /sys/dev/isp | |
| parent | 0322f8f8f79b7a7c43ee2492593df61a2c74e338 (diff) | |
Notes
Diffstat (limited to 'sys/dev/isp')
| -rw-r--r-- | sys/dev/isp/isp_target.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/sys/dev/isp/isp_target.h b/sys/dev/isp/isp_target.h index 5362987af0714..c59e59ab6cf02 100644 --- a/sys/dev/isp/isp_target.h +++ b/sys/dev/isp/isp_target.h @@ -523,8 +523,8 @@ int isp_target_notify(struct ispsoftc *, void *, u_int16_t *); * Enable/Disable/Modify a logical unit. * (softc, cmd, bus, tgt, lun, cmd_cnt, inotify_cnt, opaque) */ -#define DFLT_CMND_CNT 32 -#define DFLT_INOT_CNT 4 +#define DFLT_CMND_CNT 0xfe /* unmonitored */ +#define DFLT_INOT_CNT 16 int isp_lun_cmd(struct ispsoftc *, int, int, int, int, int, int, u_int32_t); /* @@ -549,8 +549,10 @@ int isp_endcmd(struct ispsoftc *, void *, u_int32_t, u_int16_t); /* * Handle an asynchronous event + * + * Return nonzero if the interrupt that generated this event has been dismissed. */ -void isp_target_async(struct ispsoftc *, int, int); +int isp_target_async(struct ispsoftc *, int, int); #endif #endif /* _ISP_TARGET_H */ |
