Home
last modified time | relevance | path

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

/freebsd/sys/dev/hyperv/vmbus/
H A Dhyperv.c81 static struct hypercall_ctx hypercall_context; variable
86 return hypercall_md(hypercall_context.hc_addr, in hypercall_post_message()
93 return hypercall_md(hypercall_context.hc_addr, in hypercall_signal_event()
152 return hypercall_md(hypercall_context.hc_addr, in hypercall_do_md()
194 kmem_free(hypercall_context.hc_addr, PAGE_SIZE); in hypercall_memfree()
195 hypercall_context.hc_addr = NULL; in hypercall_memfree()
212 hypercall_context.hc_addr = kmem_malloc(PAGE_SIZE, M_EXEC | M_WAITOK); in hypercall_create()
213 hypercall_context.hc_paddr = vtophys(hypercall_context.hc_addr); in hypercall_create()
214 ret = hypercall_page_setup(hypercall_context.hc_paddr); in hypercall_create()
228 if (hypercall_context.hc_addr == NULL) in hypercall_destroy()