/Linux-v4.19/tools/virtio/ringtest/ |
D | virtio_ring_0_9.c | 41 struct guest { struct 52 } guest; argument 78 guest.avail_idx = 0; in alloc_ring() 79 guest.kicked_avail_idx = -1; in alloc_ring() 80 guest.last_used_idx = 0; in alloc_ring() 83 guest.free_head = 0; in alloc_ring() 89 guest.num_free = ring_size; in alloc_ring() 107 if (!guest.num_free) in add_inbuf() 111 head = (ring_size - 1) & (guest.avail_idx++); in add_inbuf() 113 head = guest.free_head; in add_inbuf() [all …]
|
D | ring.c | 59 struct guest { struct 65 } guest; argument 92 guest.avail_idx = 0; in alloc_ring() 93 guest.kicked_avail_idx = -1; in alloc_ring() 94 guest.last_used_idx = 0; in alloc_ring() 103 guest.num_free = ring_size; in alloc_ring() 116 if (!guest.num_free) in add_inbuf() 119 guest.num_free--; in add_inbuf() 120 head = (ring_size - 1) & (guest.avail_idx++); in add_inbuf() 145 unsigned head = (ring_size - 1) & guest.last_used_idx; in get_buf() [all …]
|
/Linux-v4.19/drivers/misc/cxl/ |
D | of.c | 92 afu->guest->handle = addr; in read_phys_addr() 95 afu->guest->p2n_phys += addr; in read_phys_addr() 96 afu->guest->p2n_size = size; in read_phys_addr() 137 if (read_handle(afu_np, &afu->guest->handle)) in cxl_of_read_afu_handle() 139 pr_devel("AFU handle: 0x%.16llx\n", afu->guest->handle); in cxl_of_read_afu_handle() 194 read_prop_dword(np, "ibm,max-ints-per-process", &afu->guest->max_ints); in cxl_of_read_afu_properties() 195 afu->irqs_max = afu->guest->max_ints; in cxl_of_read_afu_properties() 273 pr_devel("AFU handle: %#llx\n", afu->guest->handle); in cxl_of_read_afu_properties() 275 afu->guest->p2n_phys, afu->guest->p2n_size); in cxl_of_read_afu_properties() 305 adapter->guest->irq_avail = kcalloc(nranges, sizeof(struct irq_avail), in read_adapter_irq_config() [all …]
|
D | guest.c | 115 rc = cxl_h_collect_vpd_adapter(adapter->guest->handle, in guest_collect_vpd() 118 rc = cxl_h_collect_vpd(afu->guest->handle, 0, in guest_collect_vpd() 156 return cxl_h_collect_int_info(ctx->afu->guest->handle, ctx->process_token, info); in guest_get_irq_info() 184 rc = cxl_h_read_error_state(afu->guest->handle, &state); in afu_read_error_state() 201 rc = cxl_h_get_fn_error_interrupt(afu->guest->handle, &serr); in guest_slice_irq_err() 212 rc = cxl_h_ack_fn_error_interrupt(afu->guest->handle, serr); in guest_slice_irq_err() 226 for (i = 0; i < adapter->guest->irq_nranges; i++) { in irq_alloc_range() 227 cur = &adapter->guest->irq_avail[i]; in irq_alloc_range() 250 for (i = 0; i < adapter->guest->irq_nranges; i++) { in irq_free_range() 251 cur = &adapter->guest->irq_avail[i]; in irq_free_range() [all …]
|
D | flash.c | 190 unwa->unit_address = cpu_to_be64(adapter->guest->handle); in update_devicetree() 244 header->vendor = cpu_to_be16(adapter->guest->vendor); in handle_image() 245 header->device = cpu_to_be16(adapter->guest->device); in handle_image() 246 header->subsystem_vendor = cpu_to_be16(adapter->guest->subsystem_vendor); in handle_image() 247 header->subsystem = cpu_to_be16(adapter->guest->subsystem); in handle_image() 311 rc = fct(adapter->guest->handle, virt_to_phys(le), entries, in handle_image() 334 cxl_h_reset_adapter(adapter->guest->handle); in transfer_image() 343 cxl_h_reset_adapter(adapter->guest->handle); in transfer_image() 352 cxl_h_reset_adapter(adapter->guest->handle); in transfer_image() 506 cxl_h_reset_adapter(adapter->guest->handle); in device_close() [all …]
|
/Linux-v4.19/arch/mips/include/asm/ |
D | cpu-features.h | 587 #define cpu_guest_has_conf1 (cpu_data[0].guest.conf & (1 << 1)) 590 #define cpu_guest_has_conf2 (cpu_data[0].guest.conf & (1 << 2)) 593 #define cpu_guest_has_conf3 (cpu_data[0].guest.conf & (1 << 3)) 596 #define cpu_guest_has_conf4 (cpu_data[0].guest.conf & (1 << 4)) 599 #define cpu_guest_has_conf5 (cpu_data[0].guest.conf & (1 << 5)) 602 #define cpu_guest_has_conf6 (cpu_data[0].guest.conf & (1 << 6)) 605 #define cpu_guest_has_conf7 (cpu_data[0].guest.conf & (1 << 7)) 608 #define cpu_guest_has_fpu (cpu_data[0].guest.options & MIPS_CPU_FPU) 611 #define cpu_guest_has_watch (cpu_data[0].guest.options & MIPS_CPU_WATCH) 614 #define cpu_guest_has_contextconfig (cpu_data[0].guest.options & MIPS_CPU_CTXTC) [all …]
|
/Linux-v4.19/tools/perf/Documentation/ |
D | perf-kvm.txt | 6 perf-kvm - Tool to trace/measure kvm guest os 11 'perf kvm' [--host] [--guest] [--guestmount=<path> 14 'perf kvm' [--host] [--guest] [--guestkallsyms=<path> --guestmodules=<path> 23 a performance counter profile of guest os in realtime 28 default behavior of perf kvm as --guest, so if neither --host nor --guest 29 is input, the perf data file name is perf.data.guest. If --host is input, 31 perf.data.host, please input --host --no-guest. The behaviors are shown as 33 Default('') -> perf.data.guest 35 --guest -> perf.data.guest 36 --host --guest -> perf.data.kvm [all …]
|
/Linux-v4.19/Documentation/virtual/kvm/ |
D | amd-memory-encryption.rst | 50 The SEV guest key management is handled by a separate processor called the AMD 53 encrypting bootstrap code, snapshot, migrating and debugging the guest. For more 71 context. To create the encryption context, user must provide a guest policy, 82 __u32 policy; /* guest's policy */ 84 … __u64 dh_uaddr; /* userspace address pointing to the guest owner's PDH key */ 87 … __u64 session_addr; /* userspace address which points to the guest session information */ 100 of the memory contents that can be sent to the guest owner as an attestation 120 data encrypted by the KVM_SEV_LAUNCH_UPDATE_DATA command. The guest owner may 121 wait to provide the guest with confidential information until it can verify the 122 measurement. Since the guest owner knows the initial contents of the guest at [all …]
|
D | mmu.txt | 5 for presenting a standard x86 mmu to the guest, while translating guest 10 - correctness: the guest should not be able to determine that it is running 14 - security: the guest must not be able to touch host memory not assigned 19 - integration: Linux memory management code must be in control of guest memory 22 - dirty tracking: report writes to guest memory to enable live migration 34 gfn guest frame number 35 gpa guest physical address 36 gva guest virtual address 37 ngpa nested guest physical address 38 ngva nested guest virtual address [all …]
|
D | hypercalls.txt | 48 Purpose: Trigger guest exit so that the host can check for pending 62 Purpose: Expose hypercall availability to the guest. On x86 platforms, cpuid 71 Purpose: To enable communication between the hypervisor and guest there is a 73 The guest can map this shared page to access its supervisor register through 81 Usage example : A vcpu of a paravirtualized guest that is busywaiting in guest 86 same guest can wakeup the sleeping vcpu by issuing KVM_HC_KICK_CPU hypercall, 95 Purpose: Hypercall used to synchronize host and guest clocks. 98 a0: guest physical address where host copies 115 * tsc: guest TSC value used to calculate sec/nsec pair 118 The hypercall lets a guest compute a precise timestamp across [all …]
|
D | cpuid.txt | 5 A guest running on a kvm host, can check some of its features using 8 a guest. 53 KVM_FEATURE_PV_UNHALT || 7 || guest checks this feature bit 57 KVM_FEATURE_PV_TLB_FLUSH || 9 || guest checks this feature bit 65 KVM_FEATURE_PV_SEND_IPI || 11 || guest checks this feature bit 69 KVM_FEATURE_CLOCKSOURCE_STABLE_BIT || 24 || host will warn if no guest-side 79 KVM_HINTS_REALTIME || 0 || guest checks this feature bit to
|
D | msr.txt | 19 in guest RAM. This memory is expected to hold a copy of the following 33 version: guest has to check version before and after grabbing 53 guest RAM, plus an enable bit in bit 0. This memory is expected to hold 75 version: guest has to check version before and after grabbing 110 coordinated between the guest and the hypervisor. Availability 120 | | guest vcpu has been paused by 168 64 byte memory area which must be in guest RAM and must be 184 fault guest must reset the reason to 0 before it does 190 be used to notify a guest when missing page becomes 201 type 1 was, but guest should not rely on that. [all …]
|
D | review-checklist.txt | 29 10. User/kernel interfaces and guest/host interfaces must be 64-bit clean 33 11. New guest visible features must either be documented in a hardware manual 37 host/guest memory must be unshared to prevent the host from writing to 38 guest memory that the guest has not reserved for this purpose.
|
D | vcpu-requests.rst | 46 The goal of a VCPU kick is to bring a VCPU thread out of guest mode in 48 a guest mode exit. However, a VCPU thread may not be in guest mode at the 53 1) Send an IPI. This forces a guest mode exit. 54 2) Waking a sleeping VCPU. Sleeping VCPUs are VCPU threads outside guest 58 3) Nothing. When the VCPU is not in guest mode and the VCPU thread is not 65 guest is running in guest mode or not, as well as some specific 66 outside guest mode states. The architecture may use ``vcpu->mode`` to 74 The VCPU thread is outside guest mode. 78 The VCPU thread is in guest mode. 87 The VCPU thread is outside guest mode, but it wants the sender of [all …]
|
/Linux-v4.19/tools/testing/vsock/ |
D | README | 3 These tests exercise net/vmw_vsock/ host<->guest sockets for VMware, KVM, and 15 3. Install the kernel and tests inside the guest. 16 4. Boot the guest and ensure that the AF_VSOCK transport is enabled. 20 # host=server, guest=client 24 (guest)# $TEST_BINARY --mode=client \ 29 # host=client, guest=server 30 (guest)# $TEST_BINARY --mode=server \
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-hypervisor-xen | 6 Type of guest: 7 "Xen": standard guest type on arm 8 "HVM": fully virtualized guest (x86) 9 "PV": paravirtualized guest (x86) 10 "PVH": fully virtualized guest without legacy emulation (x86) 20 "self" -- The guest can profile itself 21 "hv" -- The guest can profile itself and, if it is 23 "all" -- The guest can profile itself, the hypervisor
|
/Linux-v4.19/drivers/staging/unisys/Documentation/ |
D | overview.txt | 10 allow guest partitions on the same server to share devices that would 20 commonly referred to as "guest drivers" or "client drivers". All drivers 21 except visorbus expose a device of a specific usable class to the Linux guest 27 with each guest partition sharing that device through an area of shared memory 32 Each virtual device requires exactly 1 dedicated channel, which the guest 40 because this requires no specific support in the guest partitions, it will 45 guest, the already-existing efifb Linux driver is used to provide guest 47 provide a guest graphics console are for keyboard and mouse (via visorinput). 86 special control channel called the "controlvm channel" (each guest partition 197 clientpartition handle identifying the guest (client) side [all …]
|
/Linux-v4.19/tools/kvm/kvm_stat/ |
D | kvm_stat.txt | 16 state transitions such as guest mode entry and exit. 18 This tool is useful for observing guest behavior from the host perspective. 38 *g*:: filter by guest name/PID 44 *p*:: filter by guest name/PID 85 -g<guest>:: 86 --guest=<guest_name>:: 87 limit statistics to one virtual machine (guest name)
|
/Linux-v4.19/arch/x86/xen/ |
D | Kconfig | 7 bool "Xen guest support" 18 bool "Xen PV guest support" 24 Support running as a Xen PV guest. 36 Support running as a Xen PV Dom0 guest. 39 bool "Xen PVHVM guest support" 43 Support running as a Xen PVHVM guest. 77 bool "Support for running as a PVH guest"
|
/Linux-v4.19/Documentation/ABI/stable/ |
D | sysfs-hypervisor-xen | 33 Space separated list of supported guest system types. Each type 38 <major>: major guest interface version 39 <minor>: minor guest interface version 41 "x86_32": 32 bit x86 guest without PAE 42 "x86_32p": 32 bit x86 guest with PAE 43 "x86_64": 64 bit x86 guest 44 "armv7l": 32 bit arm guest 45 "aarch64": 64 bit arm guest 61 Features the Xen hypervisor supports for the guest as defined 93 UUID of the guest as known to the Xen hypervisor.
|
/Linux-v4.19/tools/virtio/virtio-trace/ |
D | README | 4 Trace agent is a user tool for sending trace data of a guest to a Host in low 48 For example, if a guest use three CPUs, the names are 83 example, if a guest use three CPUs, chardev names should be trace-path-cpu0, 86 3) Boot the guest 87 You can find some chardev in /dev/virtio-ports/ in the guest. 93 0) Build trace agent in a guest 96 1) Enable ftrace in the guest 100 2) Run trace agent in the guest 104 option, trace data are output via stdout in the guest. 109 the guest will stop by specification of chardev in QEMU. This blocking mode may [all …]
|
/Linux-v4.19/drivers/staging/unisys/Documentation/ABI/ |
D | sysfs-platform-visorchipset | 29 the previous guest boot) has no effect. 37 this guest. Setting the flag will cause the guest to boot from 48 action to perform on the next guest boot-up. The meaning of the 50 commission the guest. 58 guest, and triggered by a udev event. The support script is 60 PF device is being recovered in another guest. 77 guest, and triggered by a udev event. The support script is 79 PF device is being recovered in another guest.
|
/Linux-v4.19/arch/powerpc/kvm/ |
D | Kconfig | 58 Support running unmodified book3s_32 guest kernels 74 Support running unmodified book3s_64 and book3s_32 guest kernels 89 Support running unmodified book3s_64 guest kernels in 95 guest operating systems will run at full hardware speed 108 Support running guest kernels in virtual machines on processors 110 guest in user mode (problem state) and emulating all 123 Calculate time taken for each vcpu in the real-mode guest entry, 124 exit, and interrupt handling code, plus time spent in the guest 126 in the guest. The total, minimum and maximum times in nanoseconds 154 Support running unmodified E500 guest kernels in virtual machines on [all …]
|
/Linux-v4.19/drivers/gpu/drm/xen/ |
D | Kconfig | 2 bool "DRM Support for Xen guest OS" 9 tristate "Para-virtualized frontend driver for Xen guest OS" 17 frontend DRM/KMS driver for Xen guest OSes.
|
/Linux-v4.19/fs/proc/ |
D | stat.c | 86 u64 guest, guest_nice; in show_stat() local 94 guest = guest_nice = 0; in show_stat() 106 guest += kcpustat_cpu(i).cpustat[CPUTIME_GUEST]; in show_stat() 128 seq_put_decimal_ull(p, " ", nsec_to_clock_t(guest)); in show_stat() 142 guest = kcpustat_cpu(i).cpustat[CPUTIME_GUEST]; in show_stat() 153 seq_put_decimal_ull(p, " ", nsec_to_clock_t(guest)); in show_stat()
|