be2net: Use GET_FUNCTION_CONFIG V1 cmd
Skyhawk-R requires V1 version of GET_FUNCTION_CONFIG cmd to be used for querrying resources available per function. Signed-off-by: Kalesh AP <kalesh.purayil@emulex.com> Signed-off-by: Somnath Kotur <somnath.kotur@emulex.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
14d3692f04
commit
28710c55f4
|
@ -2936,7 +2936,7 @@ static struct be_nic_resource_desc *be_get_nic_desc(u8 *buf, u32 desc_count,
|
|||
int i;
|
||||
|
||||
for (i = 0; i < desc_count; i++) {
|
||||
desc->desc_len = RESOURCE_DESC_SIZE;
|
||||
desc->desc_len = desc->desc_len ? : RESOURCE_DESC_SIZE;
|
||||
if (((void *)desc + desc->desc_len) >
|
||||
(void *)(buf + max_buf_size)) {
|
||||
desc = NULL;
|
||||
|
@ -2987,6 +2987,9 @@ int be_cmd_get_func_config(struct be_adapter *adapter)
|
|||
OPCODE_COMMON_GET_FUNC_CONFIG,
|
||||
cmd.size, wrb, &cmd);
|
||||
|
||||
if (skyhawk_chip(adapter))
|
||||
req->hdr.version = 1;
|
||||
|
||||
status = be_mbox_notify_wait(adapter);
|
||||
if (!status) {
|
||||
struct be_cmd_resp_get_func_config *resp = cmd.va;
|
||||
|
|
|
@ -1741,7 +1741,7 @@ struct be_cmd_req_get_func_config {
|
|||
};
|
||||
|
||||
struct be_cmd_resp_get_func_config {
|
||||
struct be_cmd_req_hdr hdr;
|
||||
struct be_cmd_resp_hdr hdr;
|
||||
u32 desc_count;
|
||||
u8 func_param[MAX_RESOURCE_DESC * RESOURCE_DESC_SIZE];
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue