From d26501783fa1a0c011311ad3551bf00d2ac83132 Mon Sep 17 00:00:00 2001 From: mav Date: Mon, 5 Oct 2015 10:43:45 +0000 Subject: [PATCH] MFC r287991: Pack struct ctl_ha_msg_hdr by 8 bytes. --- sys/cam/ctl/ctl_io.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/cam/ctl/ctl_io.h b/sys/cam/ctl/ctl_io.h index d8823fb1bffb..b32f554db3ff 100644 --- a/sys/cam/ctl/ctl_io.h +++ b/sys/cam/ctl/ctl_io.h @@ -385,10 +385,10 @@ struct ctl_pr_info { struct ctl_ha_msg_hdr { ctl_msg_type msg_type; + uint32_t status; /* transaction status */ union ctl_io *original_sc; union ctl_io *serializing_sc; struct ctl_nexus nexus; /* Initiator, port, target, lun */ - uint32_t status; /* transaction status */ }; #define CTL_HA_MAX_SG_ENTRIES 16