diff options
author | Jason Wright <jason@cvs.openbsd.org> | 2006-05-31 19:43:57 +0000 |
---|---|---|
committer | Jason Wright <jason@cvs.openbsd.org> | 2006-05-31 19:43:57 +0000 |
commit | 9bb7cf18c9d40ab50ebe805b82f5c392aff28db3 (patch) | |
tree | 23bbb17c8b2f5c6289417a85663da490a6f0c62d | |
parent | d66b8ad730447fd867eb6e74ff8240d5366bc5d4 (diff) |
add a place to store the PortWWN and NodeWWN for fibre channel stuffs.
-rw-r--r-- | sys/scsi/scsiconf.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/scsi/scsiconf.h b/sys/scsi/scsiconf.h index 0d774d40a50..9dc1b48dd7a 100644 --- a/sys/scsi/scsiconf.h +++ b/sys/scsi/scsiconf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: scsiconf.h,v 1.64 2006/05/11 00:45:59 krw Exp $ */ +/* $OpenBSD: scsiconf.h,v 1.65 2006/05/31 19:43:56 jason Exp $ */ /* $NetBSD: scsiconf.h,v 1.35 1997/04/02 02:29:38 mycroft Exp $ */ /* @@ -163,6 +163,8 @@ struct scsi_link { u_int8_t scsibus; /* the Nth scsibus */ u_int16_t target; /* targ of this dev */ u_int16_t lun; /* lun of this dev */ + u_int64_t port_wwn; + u_int64_t node_wwn; u_int16_t adapter_target; /* what are we on the scsi bus */ u_int16_t adapter_buswidth; /* 8 (regular) or 16 (wide). (0 becomes 8) */ u_int16_t openings; /* available operations */ |