summaryrefslogtreecommitdiffstats
path: root/sys/cam/scsi
diff options
context:
space:
mode:
authormjacob <mjacob@FreeBSD.org>2010-06-07 17:41:34 +0000
committermjacob <mjacob@FreeBSD.org>2010-06-07 17:41:34 +0000
commitde50224e92852178751a81d47695249fc681acd0 (patch)
tree08f78ef02f2dd8beb015414558da0e4bcb97f698 /sys/cam/scsi
parent077fb66c209247ede4b3f3db646d9423d6c923cd (diff)
downloadFreeBSD-src-de50224e92852178751a81d47695249fc681acd0.zip
FreeBSD-src-de50224e92852178751a81d47695249fc681acd0.tar.gz
Do a minor amount of stylifying. Also, get a Fibre Channel WWPN if one exists
for a da unit and create a sysctl OID for it.
Diffstat (limited to 'sys/cam/scsi')
-rw-r--r--sys/cam/scsi/scsi_da.c29
1 files changed, 27 insertions, 2 deletions
diff --git a/sys/cam/scsi/scsi_da.c b/sys/cam/scsi/scsi_da.c
index 377275a..34b42ff 100644
--- a/sys/cam/scsi/scsi_da.c
+++ b/sys/cam/scsi/scsi_da.c
@@ -130,6 +130,7 @@ struct da_softc {
struct sysctl_ctx_list sysctl_ctx;
struct sysctl_oid *sysctl_tree;
struct callout sendordered_c;
+ uint64_t wwpn;
};
struct da_quirk_entry {
@@ -1099,14 +1100,38 @@ dasysctlinit(void *context, int pending)
}
/*
- * Now register the sysctl handler, so the user can the value on
+ * Now register the sysctl handler, so the user can change the value on
* the fly.
*/
- SYSCTL_ADD_PROC(&softc->sysctl_ctx,SYSCTL_CHILDREN(softc->sysctl_tree),
+ SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree),
OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW,
&softc->minimum_cmd_size, 0, dacmdsizesysctl, "I",
"Minimum CDB size");
+ /*
+ * Add some addressing info.
+ */
+ memset(&cts, 0, sizeof (cts));
+ xpt_setup_ccb(&cts.ccb_h, periph->path, /*priority*/1);
+ cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS;
+ cts.type = CTS_TYPE_CURRENT_SETTINGS;
+ cam_periph_lock(periph);
+ xpt_action((union ccb *)&cts);
+ cam_periph_unlock(periph);
+ if (cts.ccb_h.status != CAM_REQ_CMP) {
+ cam_periph_release(periph);
+ return;
+ }
+ if (cts.protocol == PROTO_SCSI && cts.transport == XPORT_FC) {
+ struct ccb_trans_settings_fc *fc = &cts.xport_specific.fc;
+ if (fc->valid & CTS_FC_VALID_WWPN) {
+ softc->wwpn = fc->wwpn;
+ SYSCTL_ADD_XLONG(&softc->sysctl_ctx,
+ SYSCTL_CHILDREN(softc->sysctl_tree),
+ OID_AUTO, "wwpn", CTLTYPE_QUAD | CTLFLAG_RD,
+ &softc->wwpn, "World Wide Port Name");
+ }
+ }
cam_periph_release(periph);
}
OpenPOWER on IntegriCloud