From: K. Y. Srinivasan Date: Wed, 23 Dec 2015 21:15:48 +0000 (-0800) Subject: storvsc: Fix a bug in the layout of the hv_fc_wwn_packet X-Git-Tag: Ubuntu-5.4-5.4.0-11.14~10951^2~10 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=83d1e8b9b51b06d79653293d0bf34ff2c61abe46;p=mirror_ubuntu-focal-kernel.git 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 Reviewed-by: Johannes Thumshirn Reviewed-by: Long Li Reviewed-by: Hannes Reinecke Tested-by: Alex Ng Signed-off-by: Martin K. Petersen --- 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 { */ struct hv_fc_wwn_packet { - bool primary_active; - u8 reserved1; - u8 reserved2; + u8 primary_active; + u8 reserved1[3]; u8 primary_port_wwn[8]; u8 primary_node_wwn[8]; u8 secondary_port_wwn[8];