Home
last modified time | relevance | path

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

/drivers/misc/vmw_vmci/
Dvmci_context.c153 context->notify_page = NULL; in vmci_ctx_create()
579 struct page *notify_page; in vmci_ctx_unset_notify() local
583 notify_page = context->notify_page; in vmci_ctx_unset_notify()
585 context->notify_page = NULL; in vmci_ctx_unset_notify()
589 if (notify_page) { in vmci_ctx_unset_notify()
590 kunmap(notify_page); in vmci_ctx_unset_notify()
591 put_page(notify_page); in vmci_ctx_unset_notify()
Dvmci_host.c229 if (context->notify_page) { in vmci_host_setup_notify()
245 retval = get_user_pages_fast(uva, 1, 1, &context->notify_page); in vmci_host_setup_notify()
247 context->notify_page = NULL; in vmci_host_setup_notify()
254 context->notify = kmap(context->notify_page) + (uva & (PAGE_SIZE - 1)); in vmci_host_setup_notify()
Dvmci_context.h90 struct page *notify_page; /* Page backing the notify UVA. */ member