mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
linux-headers: Update
Update to mainline commit: d1eef1c61974 ("Linux 5.5-rc2") Signed-off-by: Bharata B Rao <bharata@linux.ibm.com> Message-Id: <20191219031445.8949-2-bharata@linux.ibm.com> Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
This commit is contained in:
parent
bc5fdfc0a1
commit
50fd0c375b
7 changed files with 132 additions and 4 deletions
|
@ -58,7 +58,8 @@
|
|||
#define PVRDMA_ROCEV1_VERSION 17
|
||||
#define PVRDMA_ROCEV2_VERSION 18
|
||||
#define PVRDMA_PPN64_VERSION 19
|
||||
#define PVRDMA_VERSION PVRDMA_PPN64_VERSION
|
||||
#define PVRDMA_QPHANDLE_VERSION 20
|
||||
#define PVRDMA_VERSION PVRDMA_QPHANDLE_VERSION
|
||||
|
||||
#define PVRDMA_BOARD_ID 1
|
||||
#define PVRDMA_REV_ID 1
|
||||
|
@ -581,6 +582,17 @@ struct pvrdma_cmd_create_qp_resp {
|
|||
uint32_t max_inline_data;
|
||||
};
|
||||
|
||||
struct pvrdma_cmd_create_qp_resp_v2 {
|
||||
struct pvrdma_cmd_resp_hdr hdr;
|
||||
uint32_t qpn;
|
||||
uint32_t qp_handle;
|
||||
uint32_t max_send_wr;
|
||||
uint32_t max_recv_wr;
|
||||
uint32_t max_send_sge;
|
||||
uint32_t max_recv_sge;
|
||||
uint32_t max_inline_data;
|
||||
};
|
||||
|
||||
struct pvrdma_cmd_modify_qp {
|
||||
struct pvrdma_cmd_hdr hdr;
|
||||
uint32_t qp_handle;
|
||||
|
@ -663,6 +675,7 @@ union pvrdma_cmd_resp {
|
|||
struct pvrdma_cmd_create_cq_resp create_cq_resp;
|
||||
struct pvrdma_cmd_resize_cq_resp resize_cq_resp;
|
||||
struct pvrdma_cmd_create_qp_resp create_qp_resp;
|
||||
struct pvrdma_cmd_create_qp_resp_v2 create_qp_resp_v2;
|
||||
struct pvrdma_cmd_query_qp_resp query_qp_resp;
|
||||
struct pvrdma_cmd_destroy_qp_resp destroy_qp_resp;
|
||||
struct pvrdma_cmd_create_srq_resp create_srq_resp;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue