aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorK. Y. Srinivasan <kys@microsoft.com>2015-12-23 16:15:48 -0500
committerMartin K. Petersen <martin.petersen@oracle.com>2016-01-06 15:49:19 -0500
commit83d1e8b9b51b06d79653293d0bf34ff2c61abe46 (patch)
tree5f0ec0d60cb247c7f8e824cf76a3524588a52cf2
parentc56f5f1de3a6ab8ec985edbc358e1fd8d4e36a65 (diff)
storvsc: Fix a bug in the layout of the hv_fc_wwn_packet
The hv_fc_wwn_packet is exchanged over vmbus. Make the definition in Linux match the Windows definition. Signed-off-by: K. Y. Srinivasan <kys@microsoft.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Reviewed-by: Long Li <longli@microsoft.com> Reviewed-by: Hannes Reinecke <hare@suse.com> Tested-by: Alex Ng <alexng@microsoft.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
-rw-r--r--drivers/scsi/storvsc_drv.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/scsi/storvsc_drv.c b/drivers/scsi/storvsc_drv.c
index c41f6748823a..00bb4bdffe85 100644
--- a/drivers/scsi/storvsc_drv.c
+++ b/drivers/scsi/storvsc_drv.c
@@ -92,9 +92,8 @@ enum vstor_packet_operation {
92 */ 92 */
93 93
94struct hv_fc_wwn_packet { 94struct hv_fc_wwn_packet {
95 bool primary_active; 95 u8 primary_active;
96 u8 reserved1; 96 u8 reserved1[3];
97 u8 reserved2;
98 u8 primary_port_wwn[8]; 97 u8 primary_port_wwn[8];
99 u8 primary_node_wwn[8]; 98 u8 primary_node_wwn[8];
100 u8 secondary_port_wwn[8]; 99 u8 secondary_port_wwn[8];