Home
last modified time | relevance | path

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

/arch/um/drivers/
Dvirtio_uml.c157 return full_read(fd, &msg->payload, size, false); in vhost_user_recv()
199 sizeof(msg.payload.integer)); in vhost_user_recv_u64()
203 if (msg.header.size != sizeof(msg.payload.integer)) in vhost_user_recv_u64()
205 *value = msg.payload.integer; in vhost_user_recv_u64()
299 .header.size = sizeof(msg.payload.integer), in vhost_user_send_u64()
300 .payload.integer = value, in vhost_user_send_u64()
350 .payload.integer = response, in vhost_user_reply()
352 size_t size = sizeof(reply.header) + sizeof(reply.payload.integer); in vhost_user_reply()
358 reply.header.size = sizeof(reply.payload.integer); in vhost_user_reply()
380 sizeof(msg.msg.payload) + in vu_req_read_message()
[all …]
Dvhost_user.h81 u8 payload[]; /* Variable length */ member
118 union vhost_user_payload payload; member
/arch/riscv/boot/
Dloader.lds.S13 .payload : {
14 *(.payload)
Dloader.S4 .section .payload, "ax", %progbits
/arch/powerpc/platforms/pseries/
Dpapr_scm.c566 union nd_pdsm_payload *payload) in papr_pdsm_fuel_gauge() argument
599 payload->health.extension_flags |= in papr_pdsm_fuel_gauge()
601 payload->health.dimm_fuel_gauge = statval; in papr_pdsm_fuel_gauge()
612 union nd_pdsm_payload *payload) in papr_pdsm_dsc() argument
614 payload->health.extension_flags |= PDSM_DIMM_DSC_VALID; in papr_pdsm_dsc()
615 payload->health.dimm_dsc = p->dirty_shutdown_counter; in papr_pdsm_dsc()
622 union nd_pdsm_payload *payload) in papr_pdsm_health() argument
639 payload->health = (struct nd_papr_pdsm_health) { in papr_pdsm_health()
652 payload->health.dimm_health = PAPR_PDSM_DIMM_FATAL; in papr_pdsm_health()
654 payload->health.dimm_health = PAPR_PDSM_DIMM_CRITICAL; in papr_pdsm_health()
[all …]
/arch/powerpc/include/uapi/asm/
Dpapr_pdsm.h144 union nd_pdsm_payload payload; member
/arch/x86/kvm/
Dhyperv.c790 struct hv_timer_message_payload *payload = in stimer_send_msg() local
791 (struct hv_timer_message_payload *)&msg->u.payload; in stimer_send_msg()
799 payload->expiration_time = stimer->exp_time; in stimer_send_msg()
800 payload->delivery_time = get_time_ref_counter(vcpu->kvm); in stimer_send_msg()
911 struct hv_timer_message_payload *payload = in stimer_prepare_msg() local
912 (struct hv_timer_message_payload *)&msg->u.payload; in stimer_prepare_msg()
916 msg->header.payload_size = sizeof(*payload); in stimer_prepare_msg()
918 payload->timer_index = stimer->index; in stimer_prepare_msg()
919 payload->expiration_time = 0; in stimer_prepare_msg()
920 payload->delivery_time = 0; in stimer_prepare_msg()
Dx86.c564 unsigned long payload = vcpu->arch.exception.payload; in kvm_deliver_exception_payload() local
594 vcpu->arch.dr6 |= payload; in kvm_deliver_exception_payload()
595 vcpu->arch.dr6 ^= payload & DR6_ACTIVE_LOW; in kvm_deliver_exception_payload()
606 vcpu->arch.cr2 = payload; in kvm_deliver_exception_payload()
611 vcpu->arch.exception.payload = 0; in kvm_deliver_exception_payload()
623 bool has_payload, unsigned long payload, bool reinject) in kvm_multiple_exception() argument
649 payload = 0; in kvm_multiple_exception()
659 vcpu->arch.exception.payload = payload; in kvm_multiple_exception()
687 vcpu->arch.exception.payload = 0; in kvm_multiple_exception()
708 unsigned long payload) in kvm_queue_exception_p() argument
[all …]
/arch/arm64/boot/dts/hisilicon/
Dhip06.dtsi323 * MSI payload against other DMA payload and has to modify the
324 * MSI payload. This makes it difficult for these platforms to
Dhip07.dtsi1154 * MSI payload against other DMA payload and has to modify the
1155 * MSI payload. This makes it difficult for these platforms to
/arch/m68k/kernel/
Dentry.S140 | a3 contains the kernel thread payload, d7 - its argument
/arch/x86/kvm/vmx/
Dnested.c441 unsigned long payload = vcpu->arch.exception.payload; in nested_vmx_check_exception() local
450 *exit_qual = has_payload ? payload : vcpu->arch.cr2; in nested_vmx_check_exception()
456 payload = vcpu->arch.dr6; in nested_vmx_check_exception()
457 payload &= ~DR6_BT; in nested_vmx_check_exception()
458 payload ^= DR6_ACTIVE_LOW; in nested_vmx_check_exception()
460 *exit_qual = payload; in nested_vmx_check_exception()
3870 vcpu->arch.exception.payload; in vmx_pending_dbg_trap()
3884 vcpu->arch.exception.payload); in nested_vmx_update_pending_dbg()
/arch/x86/include/asm/
Dkvm_host.h720 unsigned long payload; member
1725 void kvm_queue_exception_p(struct kvm_vcpu *vcpu, unsigned nr, unsigned long payload);
/arch/x86/kvm/svm/
Dnested.c1108 svm->vmcb->control.exit_info_2 = svm->vcpu.arch.exception.payload; in nested_svm_inject_exception_vmexit()
Dsvm.c1967 u32 payload = svm->vmcb->save.dr6 ^ DR6_ACTIVE_LOW; in db_interception() local
1968 kvm_queue_exception_p(vcpu, DB_VECTOR, payload); in db_interception()