qla2xxx: Fix warnings reported by static checker.
authorHimanshu Madhani <himanshu.madhani@qlogic.com>
Thu, 9 Apr 2015 18:59:55 +0000 (14:59 -0400)
committerJames Bottomley <JBottomley@Odin.com>
Fri, 10 Apr 2015 15:32:15 +0000 (08:32 -0700)
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Giridhar Malavali <giridhar.malavali@qlogic.com>
Signed-off-by: Himanshu Madhani <himanshu.madhani@qlogic.com>
Reviewed-by: Hannes Reinecke <hare@suse.de>
Signed-off-by: James Bottomley <JBottomley@Odin.com>
drivers/scsi/qla2xxx/qla_def.h

index 5f6b2960cccb5c88dd6582954c6cba9c4395967e..cdaf52e26ffff0691d7e9e164a77b137e6054265 100644 (file)
@@ -2163,7 +2163,7 @@ struct ct_fdmi_hba_attr {
                uint8_t node_name[WWN_SIZE];
                uint8_t manufacturer[64];
                uint8_t serial_num[32];
-               uint8_t model[16];
+               uint8_t model[16+1];
                uint8_t model_desc[80];
                uint8_t hw_version[32];
                uint8_t driver_version[32];
@@ -2184,9 +2184,9 @@ struct ct_fdmiv2_hba_attr {
        uint16_t len;
        union {
                uint8_t node_name[WWN_SIZE];
-               uint8_t manufacturer[32];
+               uint8_t manufacturer[64];
                uint8_t serial_num[32];
-               uint8_t model[16];
+               uint8_t model[16+1];
                uint8_t model_desc[80];
                uint8_t hw_version[16];
                uint8_t driver_version[32];
@@ -2252,7 +2252,7 @@ struct ct_fdmiv2_port_attr {
                uint32_t cur_speed;
                uint32_t max_frame_size;
                uint8_t os_dev_name[32];
-               uint8_t host_name[32];
+               uint8_t host_name[256];
                uint8_t node_name[WWN_SIZE];
                uint8_t port_name[WWN_SIZE];
                uint8_t port_sym_name[128];
@@ -2283,7 +2283,7 @@ struct ct_fdmi_port_attr {
                uint32_t cur_speed;
                uint32_t max_frame_size;
                uint8_t os_dev_name[32];
-               uint8_t host_name[32];
+               uint8_t host_name[256];
        } a;
 };