Home
last modified time | relevance | path

Searched refs:notify_page (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/drivers/misc/vmw_vmci/
H A Dvmci_context.c152 context->notify_page = NULL; in vmci_ctx_create()
578 struct page *notify_page; in vmci_ctx_unset_notify() local
582 notify_page = context->notify_page; in vmci_ctx_unset_notify()
584 context->notify_page = NULL; in vmci_ctx_unset_notify()
588 if (notify_page) { in vmci_ctx_unset_notify()
589 kunmap(notify_page); in vmci_ctx_unset_notify()
590 put_page(notify_page); in vmci_ctx_unset_notify()
H A Dvmci_host.c232 if (context->notify_page) { in vmci_host_setup_notify()
246 retval = get_user_pages_fast(uva, 1, FOLL_WRITE, &context->notify_page); in vmci_host_setup_notify()
248 context->notify_page = NULL; in vmci_host_setup_notify()
251 if (context->notify_page == NULL) in vmci_host_setup_notify()
257 context->notify = kmap(context->notify_page) + (uva & (PAGE_SIZE - 1)); in vmci_host_setup_notify()
H A Dvmci_context.h82 struct page *notify_page; /* Page backing the notify UVA. */ member