From: Vikas Chaudhary Date: Tue, 6 Mar 2012 03:28:32 +0000 (-0500) Subject: qla4xxx: Removed packed attr from struct iscsi_chap_rec X-Git-Tag: v2.6.39-400.9.0~97 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=32324e8c8822cb4e38b74b98a00e77d4d1f70f6c;p=users%2Fjedix%2Flinux-maple.git qla4xxx: Removed packed attr from struct iscsi_chap_rec We don't need to pack 'struct iscsi_chap_rec' as buffer is built locally in the driver and pass to the user-space. Signed-off-by: Vikas Chaudhary --- diff --git a/include/scsi/iscsi_if.h b/include/scsi/iscsi_if.h index eab830acf9ed..917741bb8e11 100644 --- a/include/scsi/iscsi_if.h +++ b/include/scsi/iscsi_if.h @@ -593,6 +593,6 @@ struct iscsi_chap_rec { char username[ISCSI_CHAP_AUTH_NAME_MAX_LEN]; uint8_t password[ISCSI_CHAP_AUTH_SECRET_MAX_LEN]; uint8_t password_length; -} __packed; +}; #endif