svn commit: r287991 - head/sys/cam/ctl

Alexander Motin mav at FreeBSD.org
Sat Sep 19 18:23:07 UTC 2015


Author: mav
Date: Sat Sep 19 18:23:06 2015
New Revision: 287991
URL: https://svnweb.freebsd.org/changeset/base/287991

Log:
  Pack struct ctl_ha_msg_hdr by 8 bytes.

Modified:
  head/sys/cam/ctl/ctl_io.h

Modified: head/sys/cam/ctl/ctl_io.h
==============================================================================
--- head/sys/cam/ctl/ctl_io.h	Sat Sep 19 18:22:59 2015	(r287990)
+++ head/sys/cam/ctl/ctl_io.h	Sat Sep 19 18:23:06 2015	(r287991)
@@ -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


More information about the svn-src-all mailing list