Searched refs:vm (Results 76 - 100 of 1085) sorted by relevance

1234567891011>>

/freebsd-12-stable/lib/libkvm/
H A Dkvm_sparc64.c111 _sparc64_find_off(struct vmstate *vm, uint64_t pa, uint64_t size) argument
117 reg = bsearch(&key, vm->vm_regions, vm->vm_nregions,
118 sizeof(*vm->vm_regions), _sparc64_reg_cmp);
132 struct vmstate *vm; local
136 vm = (struct vmstate *)_kvm_malloc(kd, sizeof(*vm));
137 if (vm == NULL) {
138 _kvm_err(kd, kd->program, "cannot allocate vm");
141 kd->vmst = vm;
[all...]
H A Dkvm_minidump_arm.c40 #include <vm/vm.h>
79 struct vmstate *vm = kd->vmst; local
81 free(vm);
93 _kvm_err(kd, kd->program, "cannot allocate vm");
149 struct vmstate *vm; local
160 vm = kd->vmst;
162 if (va >= vm->hdr.kernbase) {
163 pteindex = (va - vm->hdr.kernbase) >> ARM_PAGE_SHIFT;
164 if (pteindex >= vm
211 struct vmstate *vm = kd->vmst; local
232 struct vmstate *vm = kd->vmst; local
[all...]
H A Dkvm_minidump_mips.c40 #include <vm/vm.h>
78 struct vmstate *vm = kd->vmst; local
80 free(vm);
92 _kvm_err(kd, kd->program, "cannot allocate vm");
150 struct vmstate *vm; local
167 vm = kd->vmst;
191 if (va >= vm->hdr.kernbase) {
192 pteindex = (va - vm->hdr.kernbase) >> MIPS_PAGE_SHIFT;
193 if (vm
279 struct vmstate *vm = kd->vmst; local
294 struct vmstate *vm = it->kd->vmst; local
[all...]
H A Dkvm_i386.c42 * vm code will one day obsolete this module.
51 #include <vm/vm.h>
76 struct vmstate *vm = kd->vmst; local
85 p = vm->phdr;
86 n = vm->phnum;
98 struct vmstate *vm = kd->vmst; local
100 if (vm->PTD)
101 free(vm->PTD);
102 free(vm
217 struct vmstate *vm; local
307 struct vmstate *vm; local
[all...]
/freebsd-12-stable/sys/amd64/vmm/io/
H A Dvrtc.c75 struct vm *vm; member in struct:vrtc
284 struct vm *vm; local
289 vm = vrtc->vm;
296 VM_CTR2(vm, "Invalid RTC sec %#x/%d", rtc->sec, ct.sec);
302 VM_CTR2(vm, "Invalid RTC min %#x/%d", rtc->min, ct.min);
332 VM_CTR2(vm, "Invalid RTC 12-hour format %#x/%d",
339 VM_CTR2(vm, "Invali
749 vrtc_set_time(struct vm *vm, time_t secs) argument
770 vrtc_get_time(struct vm *vm) argument
785 vrtc_nvram_write(struct vm *vm, int offset, uint8_t value) argument
812 vrtc_nvram_read(struct vm *vm, int offset, uint8_t *retval) argument
844 vrtc_addr_handler(struct vm *vm, int vcpuid, bool in, int port, int bytes, uint32_t *val) argument
867 vrtc_data_handler(struct vm *vm, int vcpuid, bool in, int port, int bytes, uint32_t *val) argument
980 vrtc_init(struct vm *vm) argument
[all...]
H A Dvlapic.h34 struct vm;
82 void vlapic_set_x2apic_state(struct vm *vm, int vcpuid, enum x2apic_state s);
85 void vlapic_deliver_intr(struct vm *vm, bool level, uint32_t dest, bool phys,
H A Dvatpit.c96 struct vm *vm; member in struct:vatpit
155 VM_CTR1(vatpit->vm, "atpit t%d fired", arg->channel_num);
171 vatpic_pulse_irq(vatpit->vm, 0);
172 vioapic_pulse_irq(vatpit->vm, 2);
338 vatpit_handler(struct vm *vm, int vcpuid, bool in, int port, int bytes, argument
346 vatpit = vm_atpit(vm);
355 VM_CTR0(vatpit->vm, "vatpit attempt to read mode");
421 vatpit_nmisc_handler(struct vm *v argument
442 vatpit_init(struct vm *vm) argument
[all...]
H A Dvhpet.c76 struct vm *vm; member in struct:vhpet
183 vioapic_deassert_irq(vhpet->vm, pin);
228 VM_CTR1(vhpet->vm, "hpet t%d intr is already asserted", n);
233 lapic_intr_msi(vhpet->vm, vhpet->timer[n].msireg >> 32,
240 VM_CTR1(vhpet->vm, "hpet t%d intr is not routed to ioapic", n);
245 vioapic_pulse_irq(vhpet->vm, pin);
248 vioapic_assert_irq(vhpet->vm, pin);
293 VM_CTR1(vhpet->vm, "hpet t%d fired", n);
320 VM_CTR1(vhpet->vm, "hpe
472 vhpet_mmio_write(void *vm, int vcpuid, uint64_t gpa, uint64_t val, int size, void *arg) argument
622 vhpet_mmio_read(void *vm, int vcpuid, uint64_t gpa, uint64_t *rval, int size, void *arg) argument
704 vhpet_init(struct vm *vm) argument
[all...]
/freebsd-12-stable/sys/fs/nandfs/
H A Dnandfs_bmap.c50 #include <vm/vm.h>
51 #include <vm/vm_extern.h>
52 #include <vm/vm_object.h>
53 #include <vm/vnode_pager.h>
57 #include <vm/vm.h>
58 #include <vm/vm_extern.h>
59 #include <vm/vm_object.h>
60 #include <vm/vnode_page
[all...]
/freebsd-12-stable/sys/riscv/riscv/
H A Dmem.c41 #include <vm/vm.h>
42 #include <vm/pmap.h>
43 #include <vm/vm_extern.h>
44 #include <vm/vm_page.h>
/freebsd-12-stable/sys/sys/
H A Dsf_buf.h53 #include <vm/vm.h>
54 #include <vm/vm_param.h>
55 #include <vm/vm_page.h>
134 #include <vm/pmap.h>
/freebsd-12-stable/sys/arm/arm/
H A Dbus_space_generic.c50 #include <vm/vm.h>
51 #include <vm/pmap.h>
52 #include <vm/vm_kern.h>
53 #include <vm/vm_extern.h>
/freebsd-12-stable/sys/amd64/vmm/amd/
H A Dsvm.c41 #include <vm/vm.h>
42 #include <vm/pmap.h>
389 VCPU_CTR3(sc->vm, vcpu, "intercept[%d] modified "
444 if (vcpu_trace_exceptions(sc->vm, vcpu)) {
531 svm_vminit(struct vm *vm, pmap_t pmap) argument
552 svm_sc->vm = vm;
591 maxcpus = vm_get_maxcpus(svm_sc->vm);
948 struct vm *vm; local
1968 struct vm *vm; local
[all...]
/freebsd-12-stable/sys/mips/malta/
H A Dgt.c39 #include <vm/vm.h>
40 #include <vm/vm_kern.h>
41 #include <vm/pmap.h>
42 #include <vm/vm_page.h>
43 #include <vm/vm_extern.h>
/freebsd-12-stable/sys/arm/mv/orion/
H A Ddb88f5xxx.c42 #include <vm/vm.h>
43 #include <vm/pmap.h>
/freebsd-12-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzfs_context.h103 #include <vm/vm.h>
104 #include <vm/vm_page.h>
105 #include <vm/vm_object.h>
106 #include <vm/vm_kern.h>
107 #include <vm/vm_map.h>
108 #include <vm/vm_extern.h>
109 #include <vm/vnode_pager.h>
/freebsd-12-stable/sys/dev/mem/
H A Dmemdev.c49 #include <vm/vm.h>
50 #include <vm/vm_param.h>
51 #include <vm/pmap.h>
52 #include <vm/vm_map.h>
53 #include <vm/vm_object.h>
54 #include <vm/vm_page.h>
55 #include <vm/vm_phys.h>
/freebsd-12-stable/sys/dev/twa/
H A Dtw_osl_includes.h69 #include <vm/vm.h>
/freebsd-12-stable/sys/powerpc/powerpc/
H A Dsyncicache.c43 #include <vm/vm.h>
/freebsd-12-stable/sys/sparc64/sparc64/
H A Dmem.c68 #include <vm/vm.h>
69 #include <vm/vm_param.h>
70 #include <vm/vm_page.h>
71 #include <vm/vm_phys.h>
72 #include <vm/vm_kern.h>
73 #include <vm/pmap.h>
74 #include <vm/vm_extern.h>
/freebsd-12-stable/sys/arm/freescale/imx/
H A Dimx53_machdep.c40 #include <vm/vm.h>
/freebsd-12-stable/sys/arm/qemu/
H A Dvirt_machdep.c37 #include <vm/vm.h>
/freebsd-12-stable/sys/cddl/compat/opensolaris/sys/
H A Dkmem.h38 #include <vm/uma.h>
39 #include <vm/vm.h>
40 #include <vm/vm_extern.h>
/freebsd-12-stable/sys/mips/atheros/
H A Dar71xx_fixup.c47 #include <vm/vm.h>
48 #include <vm/pmap.h>
49 #include <vm/vm_extern.h>
/freebsd-12-stable/sys/amd64/vmm/
H A Dx86.c89 x86_emulate_cpuid(struct vm *vm, int vcpu_id, argument
100 VCPU_CTR2(vm, vcpu_id, "cpuid %#x,%#x", *eax, *ecx);
148 vm_get_topology(vm, &sockets, &cores, &threads,
199 error = vm_get_capability(vm, vcpu_id,
248 vm_get_topology(vm, &sockets, &cores, &threads,
289 vm_get_topology(vm, &sockets, &cores, &threads,
306 error = vm_get_x2apic_state(vm, vcpu_id, &x2apic_state);
346 error = vm_get_register(vm, vcpu_id,
389 vm_get_topology(vm,
611 vm_cpuid_capability(struct vm *vm, int vcpuid, enum vm_cpuid_capability cap) argument
[all...]

Completed in 283 milliseconds

1234567891011>>