Commit e6389a13 authored by Dmitry Torokhov's avatar Dmitry Torokhov Committed by Greg Kroah-Hartman

VMCI: rename PPNset to ppn_set to avoid camel case

Acked-by: default avatarAndy King <acking@vmware.com>
Signed-off-by: default avatarDmitry Torokhov <dtor@vmware.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 0e7894dc
...@@ -231,7 +231,7 @@ struct qp_guest_endpoint { ...@@ -231,7 +231,7 @@ struct qp_guest_endpoint {
u64 num_ppns; u64 num_ppns;
void *produce_q; void *produce_q;
void *consume_q; void *consume_q;
struct PPNSet ppn_set; struct ppn_set ppn_set;
}; };
struct qp_list { struct qp_list {
...@@ -461,7 +461,7 @@ static int __qp_memcpy_from_queue(void *dest, ...@@ -461,7 +461,7 @@ static int __qp_memcpy_from_queue(void *dest,
static int qp_alloc_ppn_set(void *prod_q, static int qp_alloc_ppn_set(void *prod_q,
u64 num_produce_pages, u64 num_produce_pages,
void *cons_q, void *cons_q,
u64 num_consume_pages, struct PPNSet *ppn_set) u64 num_consume_pages, struct ppn_set *ppn_set)
{ {
u32 *produce_ppns; u32 *produce_ppns;
u32 *consume_ppns; u32 *consume_ppns;
...@@ -532,7 +532,7 @@ static int qp_alloc_ppn_set(void *prod_q, ...@@ -532,7 +532,7 @@ static int qp_alloc_ppn_set(void *prod_q,
/* /*
* Frees the two list of PPNs for a queue pair. * Frees the two list of PPNs for a queue pair.
*/ */
static void qp_free_ppn_set(struct PPNSet *ppn_set) static void qp_free_ppn_set(struct ppn_set *ppn_set)
{ {
if (ppn_set->initialized) { if (ppn_set->initialized) {
/* Do not call these functions on NULL inputs. */ /* Do not call these functions on NULL inputs. */
...@@ -546,7 +546,7 @@ static void qp_free_ppn_set(struct PPNSet *ppn_set) ...@@ -546,7 +546,7 @@ static void qp_free_ppn_set(struct PPNSet *ppn_set)
* Populates the list of PPNs in the hypercall structure with the PPNS * Populates the list of PPNs in the hypercall structure with the PPNS
* of the produce queue and the consume queue. * of the produce queue and the consume queue.
*/ */
static int qp_populate_ppn_set(u8 *call_buf, const struct PPNSet *ppn_set) static int qp_populate_ppn_set(u8 *call_buf, const struct ppn_set *ppn_set)
{ {
memcpy(call_buf, ppn_set->produce_ppns, memcpy(call_buf, ppn_set->produce_ppns,
ppn_set->num_produce_pages * sizeof(*ppn_set->produce_ppns)); ppn_set->num_produce_pages * sizeof(*ppn_set->produce_ppns));
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
typedef int (*vmci_event_release_cb) (void *client_data); typedef int (*vmci_event_release_cb) (void *client_data);
/* Guest device port I/O. */ /* Guest device port I/O. */
struct PPNSet { struct ppn_set {
u64 num_produce_pages; u64 num_produce_pages;
u64 num_consume_pages; u64 num_consume_pages;
u32 *produce_ppns; u32 *produce_ppns;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment