mirror of https://gitee.com/openkylin/linux.git
cxgb4: Initialize data structures before using.
We should not assume reserve fields to be don't cares as fields may change. Clearing data structures before using. Signed-off-by: Jay Hernandez <jay@chelsio.com> Signed-off-by: Vipul Pandya <vipul@chelsio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a3d744e995
commit
0062b15c10
|
@ -2519,6 +2519,7 @@ int t4_fw_bye(struct adapter *adap, unsigned int mbox)
|
||||||
{
|
{
|
||||||
struct fw_bye_cmd c;
|
struct fw_bye_cmd c;
|
||||||
|
|
||||||
|
memset(&c, 0, sizeof(c));
|
||||||
INIT_CMD(c, BYE, WRITE);
|
INIT_CMD(c, BYE, WRITE);
|
||||||
return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
|
return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
|
||||||
}
|
}
|
||||||
|
@ -2535,6 +2536,7 @@ int t4_early_init(struct adapter *adap, unsigned int mbox)
|
||||||
{
|
{
|
||||||
struct fw_initialize_cmd c;
|
struct fw_initialize_cmd c;
|
||||||
|
|
||||||
|
memset(&c, 0, sizeof(c));
|
||||||
INIT_CMD(c, INITIALIZE, WRITE);
|
INIT_CMD(c, INITIALIZE, WRITE);
|
||||||
return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
|
return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
|
||||||
}
|
}
|
||||||
|
@ -2551,6 +2553,7 @@ int t4_fw_reset(struct adapter *adap, unsigned int mbox, int reset)
|
||||||
{
|
{
|
||||||
struct fw_reset_cmd c;
|
struct fw_reset_cmd c;
|
||||||
|
|
||||||
|
memset(&c, 0, sizeof(c));
|
||||||
INIT_CMD(c, RESET, WRITE);
|
INIT_CMD(c, RESET, WRITE);
|
||||||
c.val = htonl(reset);
|
c.val = htonl(reset);
|
||||||
return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
|
return t4_wr_mbox(adap, mbox, &c, sizeof(c), NULL);
|
||||||
|
@ -3278,6 +3281,7 @@ int t4_identify_port(struct adapter *adap, unsigned int mbox, unsigned int viid,
|
||||||
{
|
{
|
||||||
struct fw_vi_enable_cmd c;
|
struct fw_vi_enable_cmd c;
|
||||||
|
|
||||||
|
memset(&c, 0, sizeof(c));
|
||||||
c.op_to_viid = htonl(FW_CMD_OP(FW_VI_ENABLE_CMD) | FW_CMD_REQUEST |
|
c.op_to_viid = htonl(FW_CMD_OP(FW_VI_ENABLE_CMD) | FW_CMD_REQUEST |
|
||||||
FW_CMD_EXEC | FW_VI_ENABLE_CMD_VIID(viid));
|
FW_CMD_EXEC | FW_VI_ENABLE_CMD_VIID(viid));
|
||||||
c.ien_to_len16 = htonl(FW_VI_ENABLE_CMD_LED | FW_LEN16(c));
|
c.ien_to_len16 = htonl(FW_VI_ENABLE_CMD_LED | FW_LEN16(c));
|
||||||
|
|
Loading…
Reference in New Issue