mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
be2net: set proper value to version field in req hdr
Before sending a command to the ASIC, set version properly. This is necessary for the ARM firmware to send correct data to the driver. This also fixes a bug in certain skews of the ASIC where the statistics are misreported. Signed-off-by: Ajit Khaparde <ajitk@serverengines.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
553f9118ab
commit
07793d33b4
1 changed files with 1 additions and 0 deletions
|
@ -296,6 +296,7 @@ static void be_cmd_hdr_prepare(struct be_cmd_req_hdr *req_hdr,
|
||||||
req_hdr->opcode = opcode;
|
req_hdr->opcode = opcode;
|
||||||
req_hdr->subsystem = subsystem;
|
req_hdr->subsystem = subsystem;
|
||||||
req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr));
|
req_hdr->request_length = cpu_to_le32(cmd_len - sizeof(*req_hdr));
|
||||||
|
req_hdr->version = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages,
|
static void be_cmd_page_addrs_prepare(struct phys_addr *pages, u32 max_pages,
|
||||||
|
|
Loading…
Add table
Reference in a new issue