Home
last modified time | relevance | path

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

/linux-6.12.1/drivers/hv/
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) { 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()
216 if (hv_cpu->post_msg_page) { in hv_synic_free()
218 hv_cpu->post_msg_page, 1); in hv_synic_free()
221 hv_cpu->post_msg_page = NULL; in hv_synic_free()
247 free_page((unsigned long)hv_cpu->post_msg_page); in hv_synic_free()
Dhyperv_vmbus.h135 void *post_msg_page; member