mirror of https://github.com/xqemu/xqemu.git
hw/pvrdma: Make default pkey 0xFFFF
0x7FFF is not the default pkey - fix it. Signed-off-by: Yuval Shaia <yuval.shaia@oracle.com> Reviewed-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> Message-Id: <20180805153518.2983-6-yuval.shaia@oracle.com> Signed-off-by: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
This commit is contained in:
parent
eca0f2a6be
commit
6e7dba23af
|
@ -50,6 +50,9 @@
|
||||||
#define PVRDMA_HW_VERSION 17
|
#define PVRDMA_HW_VERSION 17
|
||||||
#define PVRDMA_FW_VERSION 14
|
#define PVRDMA_FW_VERSION 14
|
||||||
|
|
||||||
|
/* Some defaults */
|
||||||
|
#define PVRDMA_PKEY 0x7FFF
|
||||||
|
|
||||||
typedef struct DSRInfo {
|
typedef struct DSRInfo {
|
||||||
dma_addr_t dma;
|
dma_addr_t dma;
|
||||||
struct pvrdma_device_shared_region *dsr;
|
struct pvrdma_device_shared_region *dsr;
|
||||||
|
|
|
@ -166,7 +166,7 @@ static int query_pkey(PVRDMADev *dev, union pvrdma_cmd_req *req,
|
||||||
resp->hdr.ack = PVRDMA_CMD_QUERY_PKEY_RESP;
|
resp->hdr.ack = PVRDMA_CMD_QUERY_PKEY_RESP;
|
||||||
resp->hdr.err = 0;
|
resp->hdr.err = 0;
|
||||||
|
|
||||||
resp->pkey = 0x7FFF;
|
resp->pkey = PVRDMA_PKEY;
|
||||||
pr_dbg("pkey=0x%x\n", resp->pkey);
|
pr_dbg("pkey=0x%x\n", resp->pkey);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in New Issue