diff options
author | Vishnu DASA <vdasa@vmware.com> | 2019-02-15 16:32:47 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2019-02-26 12:53:55 +0100 |
commit | f2db7361cb19bf3a6f7fd367f21d8eb325397946 (patch) | |
tree | cb1638157b002572fd9d2c62e640e32a79ca02ff /drivers/misc/vmw_vmci/vmci_queue_pair.h | |
parent | bede03a579b3b4a036003c4862cc1baa4ddc351f (diff) | |
download | linux-f2db7361cb19bf3a6f7fd367f21d8eb325397946.tar.gz linux-f2db7361cb19bf3a6f7fd367f21d8eb325397946.tar.bz2 linux-f2db7361cb19bf3a6f7fd367f21d8eb325397946.zip |
VMCI: Support upto 64-bit PPNs
Add support in the VMCI driver to handle upto 64-bit PPNs when the VMCI
device exposes the capability for 64-bit PPNs.
Reviewed-by: Adit Ranadive <aditr@vmware.com>
Reviewed-by: Jorgen Hansen <jhansen@vmware.com>
Signed-off-by: Vishnu Dasa <vdasa@vmware.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/misc/vmw_vmci/vmci_queue_pair.h')
-rw-r--r-- | drivers/misc/vmw_vmci/vmci_queue_pair.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/misc/vmw_vmci/vmci_queue_pair.h b/drivers/misc/vmw_vmci/vmci_queue_pair.h index ed177f04ef24..46c0b6c7bafb 100644 --- a/drivers/misc/vmw_vmci/vmci_queue_pair.h +++ b/drivers/misc/vmw_vmci/vmci_queue_pair.h @@ -28,8 +28,8 @@ typedef int (*vmci_event_release_cb) (void *client_data); struct ppn_set { u64 num_produce_pages; u64 num_consume_pages; - u32 *produce_ppns; - u32 *consume_ppns; + u64 *produce_ppns; + u64 *consume_ppns; bool initialized; }; |