diff options
author | Vikas Chaudhary <vikas.chaudhary@qlogic.com> | 2012-03-06 04:16:05 -0800 |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2012-03-27 08:26:35 +0100 |
commit | 5a5a15f2057baea9a4d282883183ceaca9c1e847 (patch) | |
tree | 9e28d0f73e1e30aad759dee70deeac44c1d3136a /include | |
parent | 1a590cabc272d62ffca1427d3010aea2098f414f (diff) | |
download | op-kernel-dev-5a5a15f2057baea9a4d282883183ceaca9c1e847.zip op-kernel-dev-5a5a15f2057baea9a4d282883183ceaca9c1e847.tar.gz |
[SCSI] 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 <vikas.chaudhary@qlogic.com>
Reviewed-by: Mike Christie <michaelc@cs.wisc.edu>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/scsi/iscsi_if.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scsi/iscsi_if.h b/include/scsi/iscsi_if.h index eab830a..917741b 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 |