]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
be2net: Fix link status query command
authorPadmanabh Ratnakar <padmanabh.ratnakar@emulex.com>
Fri, 3 Feb 2012 09:49:46 +0000 (09:49 +0000)
committerMaxim Uvarov <maxim.uvarov@oracle.com>
Mon, 7 May 2012 21:44:14 +0000 (14:44 -0700)
Version number in query link status command is getting overwritten in
be_wrb_cmd_hdr_prepare() routine. Move the initialization to fix this
issue. Also initialize the domain field.

Signed-off-by: Padmanabh Ratnakar <padmanabh.ratnakar@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/benet/be_cmds.c

index 2f47cd1567863a730156b67847986ffd9bd78762..aef4ac60c49ea433aececfd05f7dc7d00015cab1 100644 (file)
@@ -1257,11 +1257,13 @@ int be_cmd_link_status_query(struct be_adapter *adapter, u8 *mac_speed,
        }
        req = embedded_payload(wrb);
 
+       be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
+               OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, sizeof(*req), wrb, NULL);
+
        if (adapter->generation == BE_GEN3 || lancer_chip(adapter))
                req->hdr.version = 1;
 
-       be_wrb_cmd_hdr_prepare(&req->hdr, CMD_SUBSYSTEM_COMMON,
-               OPCODE_COMMON_NTWK_LINK_STATUS_QUERY, sizeof(*req), wrb, NULL);
+       req->hdr.domain = dom;
 
        status = be_mcc_notify_wait(adapter);
        if (!status) {