mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
linux headers: update against Linux 5.2-rc1
commit a188339ca5a396acc588e5851ed7e19f66b0ebd9 Signed-off-by: Cornelia Huck <cohuck@redhat.com>
This commit is contained in:
parent
b1b9e0dc78
commit
d9cb433615
36 changed files with 906 additions and 143 deletions
|
@ -57,7 +57,8 @@
|
|||
|
||||
#define PVRDMA_ROCEV1_VERSION 17
|
||||
#define PVRDMA_ROCEV2_VERSION 18
|
||||
#define PVRDMA_VERSION PVRDMA_ROCEV2_VERSION
|
||||
#define PVRDMA_PPN64_VERSION 19
|
||||
#define PVRDMA_VERSION PVRDMA_PPN64_VERSION
|
||||
|
||||
#define PVRDMA_BOARD_ID 1
|
||||
#define PVRDMA_REV_ID 1
|
||||
|
@ -279,8 +280,10 @@ struct pvrdma_device_shared_region {
|
|||
/* W: Async ring page info. */
|
||||
struct pvrdma_ring_page_info cq_ring_pages;
|
||||
/* W: CQ ring page info. */
|
||||
uint32_t uar_pfn; /* W: UAR pageframe. */
|
||||
uint32_t pad2; /* Pad to 8-byte align. */
|
||||
union {
|
||||
uint32_t uar_pfn; /* W: UAR pageframe. */
|
||||
uint64_t uar_pfn64; /* W: 64-bit UAR page frame. */
|
||||
};
|
||||
struct pvrdma_device_caps caps; /* R: Device capabilities. */
|
||||
};
|
||||
|
||||
|
@ -411,8 +414,10 @@ struct pvrdma_cmd_query_pkey_resp {
|
|||
|
||||
struct pvrdma_cmd_create_uc {
|
||||
struct pvrdma_cmd_hdr hdr;
|
||||
uint32_t pfn; /* UAR page frame number */
|
||||
uint8_t reserved[4];
|
||||
union {
|
||||
uint32_t pfn; /* UAR page frame number */
|
||||
uint64_t pfn64; /* 64-bit UAR page frame number */
|
||||
};
|
||||
};
|
||||
|
||||
struct pvrdma_cmd_create_uc_resp {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue