Home
last modified time | relevance | path

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

/openbmc/linux/drivers/hv/
H A Dhv.c67 aligned_msg = this_cpu_ptr(hv_context.cpu_context)->post_msg_page; in hv_post_message()
126 hv_cpu->post_msg_page = (void *)get_zeroed_page(GFP_ATOMIC); in hv_synic_alloc()
127 if (hv_cpu->post_msg_page == NULL) { in hv_synic_alloc()
132 ret = set_memory_decrypted((unsigned long)hv_cpu->post_msg_page, 1); in hv_synic_alloc()
136 hv_cpu->post_msg_page = NULL; in hv_synic_alloc()
140 memset(hv_cpu->post_msg_page, 0, PAGE_SIZE); in hv_synic_alloc()
217 if (hv_cpu->post_msg_page) { in hv_synic_free()
219 hv_cpu->post_msg_page, 1); in hv_synic_free()
222 hv_cpu->post_msg_page = NULL; in hv_synic_free()
248 free_page((unsigned long)hv_cpu->post_msg_page); in hv_synic_free()
H A Dhyperv_vmbus.h135 void *post_msg_page; member