summaryrefslogtreecommitdiff
path: root/sys/dev/isp
diff options
context:
space:
mode:
authorMatt Jacob <mjacob@FreeBSD.org>2001-07-30 01:32:53 +0000
committerMatt Jacob <mjacob@FreeBSD.org>2001-07-30 01:32:53 +0000
commit5096fabdfc8d987917cb32aa8416e94ed89e98fc (patch)
tree1435efb8490408041bd1878dac2e2470adf74ffb /sys/dev/isp
parenta6b748f0fe4da63a1c66f9a05ffbc14767959fbe (diff)
Notes
Diffstat (limited to 'sys/dev/isp')
-rw-r--r--sys/dev/isp/ispvar.h24
1 files changed, 14 insertions, 10 deletions
diff --git a/sys/dev/isp/ispvar.h b/sys/dev/isp/ispvar.h
index 292ea34cb4a4..8526866bff91 100644
--- a/sys/dev/isp/ispvar.h
+++ b/sys/dev/isp/ispvar.h
@@ -54,7 +54,7 @@
#endif
#define ISP_CORE_VERSION_MAJOR 2
-#define ISP_CORE_VERSION_MINOR 1
+#define ISP_CORE_VERSION_MINOR 2
/*
* Vector for bus specific code to provide specific services.
@@ -179,17 +179,21 @@ typedef struct {
u_int8_t isp_retry_count;
u_int8_t isp_retry_delay;
struct {
- u_int dev_enable : 1, /* ignored */
+ u_int32_t
+ exc_throttle : 8,
: 1,
+ dev_enable : 1, /* ignored */
dev_update : 1,
dev_refresh : 1,
- exc_throttle : 8,
- cur_offset : 4,
- sync_offset : 4;
- u_int8_t cur_period; /* current sync period */
- u_int8_t sync_period; /* goal sync period */
- u_int16_t dev_flags; /* goal device flags */
- u_int16_t cur_dflags; /* current device flags */
+ actv_offset : 4,
+ goal_offset : 4,
+ nvrm_offset : 4;
+ u_int8_t actv_period; /* current sync period */
+ u_int8_t goal_period; /* goal sync period */
+ u_int8_t nvrm_period; /* nvram sync period */
+ u_int16_t actv_flags; /* current device flags */
+ u_int16_t goal_flags; /* goal device flags */
+ u_int16_t nvrm_flags; /* nvram device flags */
} isp_devparam[MAX_TARGETS];
} sdparam;
@@ -569,7 +573,7 @@ void isp_done(XS_T *);
* and logging out of fabric devices (if one is on a fabric) and then marking
* the 'loop state' as being ready to now be used for sending commands to
* devices. Originally fabric name server and local loop scanning were
- * part of this function. It's now been seperated to allow for finer control.
+ * part of this function. It's now been separated to allow for finer control.
*/
typedef enum {
ISPCTL_RESET_BUS, /* Reset Bus */