summaryrefslogtreecommitdiffstats
path: root/sys/cam
diff options
context:
space:
mode:
authormav <mav@FreeBSD.org>2015-09-25 09:55:51 +0000
committermav <mav@FreeBSD.org>2015-09-25 09:55:51 +0000
commit87240643a5d82293f88fb5f502fc9987199b90e5 (patch)
tree0e2a0f7306a72c88c90e2b571697c599311dd8bc /sys/cam
parente36a0596e3208107fdfa5165a5a222aed39c028a (diff)
downloadFreeBSD-src-87240643a5d82293f88fb5f502fc9987199b90e5.zip
FreeBSD-src-87240643a5d82293f88fb5f502fc9987199b90e5.tar.gz
Collect DMA statistics on secondary HA node.
Diffstat (limited to 'sys/cam')
-rw-r--r--sys/cam/ctl/ctl.c16
1 files changed, 13 insertions, 3 deletions
diff --git a/sys/cam/ctl/ctl.c b/sys/cam/ctl/ctl.c
index a623ac0..f1ab0a7 100644
--- a/sys/cam/ctl/ctl.c
+++ b/sys/cam/ctl/ctl.c
@@ -1365,6 +1365,9 @@ ctl_isc_event_handler(ctl_ha_channel channel, ctl_ha_event event, int param)
io->io_hdr.status = msg->hdr.status;
if (msg->dt.sg_sequence == 0) {
+#ifdef CTL_TIME_IO
+ getbintime(&io->io_hdr.dma_start_bt);
+#endif
i = msg->dt.kern_sg_entries +
msg->dt.kern_data_len /
CTL_HA_DATAMOVE_SEGMENT + 1;
@@ -12622,9 +12625,11 @@ static void
ctl_send_datamove_done(union ctl_io *io, int have_lock)
{
union ctl_ha_msg msg;
+#ifdef CTL_TIME_IO
+ struct bintime cur_bt;
+#endif
memset(&msg, 0, sizeof(msg));
-
msg.hdr.msg_type = CTL_MSG_DATAMOVE_DONE;
msg.hdr.original_sc = io;
msg.hdr.serializing_sc = io->io_hdr.serializing_sc;
@@ -12640,15 +12645,20 @@ ctl_send_datamove_done(union ctl_io *io, int have_lock)
msg.scsi.fetd_status = io->io_hdr.port_status;
msg.scsi.residual = io->scsiio.residual;
io->io_hdr.flags &= ~CTL_FLAG_IO_ACTIVE;
-
if (io->io_hdr.flags & CTL_FLAG_FAILOVER) {
ctl_failover_io(io, /*have_lock*/ have_lock);
return;
}
-
ctl_ha_msg_send(CTL_HA_CHAN_CTL, &msg,
sizeof(msg.scsi) - sizeof(msg.scsi.sense_data) +
msg.scsi.sense_len, M_WAITOK);
+
+#ifdef CTL_TIME_IO
+ getbintime(&cur_bt);
+ bintime_sub(&cur_bt, &io->io_hdr.dma_start_bt);
+ bintime_add(&io->io_hdr.dma_bt, &cur_bt);
+ io->io_hdr.num_dmas++;
+#endif
}
/*
OpenPOWER on IntegriCloud