Home
last modified time | relevance | path

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

/openbmc/qemu/hw/hyperv/
H A Dhyperv.c854 struct hyperv_post_debug_data_output *post_data_out = NULL; in hyperv_hcall_post_dbg_data() local
875 out_len = sizeof(*post_data_out); in hyperv_hcall_post_dbg_data()
876 post_data_out = cpu_physical_memory_map(outgpa, &out_len, 1); in hyperv_hcall_post_dbg_data()
877 if (!post_data_out || out_len < sizeof(*post_data_out)) { in hyperv_hcall_post_dbg_data()
891 post_data_out->pending_count = msg.u.send.pending_count; in hyperv_hcall_post_dbg_data()
892 ret = post_data_out->pending_count ? HV_STATUS_INSUFFICIENT_BUFFERS : in hyperv_hcall_post_dbg_data()
895 if (post_data_out) { in hyperv_hcall_post_dbg_data()
896 cpu_physical_memory_unmap(post_data_out, in hyperv_hcall_post_dbg_data()
897 sizeof(*post_data_out), 1, out_len); in hyperv_hcall_post_dbg_data()