Searched refs:vatpic (Results 1 – 5 of 5) sorted by relevance
| /NextBSD/sys/amd64/vmm/io/ |
| HD | vatpic.c | 51 #define VATPIC_LOCK(vatpic) mtx_lock_spin(&((vatpic)->mtx)) argument 52 #define VATPIC_UNLOCK(vatpic) mtx_unlock_spin(&((vatpic)->mtx)) argument 53 #define VATPIC_LOCKED(vatpic) mtx_owned(&((vatpic)->mtx)) argument 83 struct vatpic { struct 90 #define VATPIC_CTR0(vatpic, fmt) \ argument 91 VM_CTR0((vatpic)->vm, fmt) 93 #define VATPIC_CTR1(vatpic, fmt, a1) \ argument 94 VM_CTR1((vatpic)->vm, fmt, a1) 96 #define VATPIC_CTR2(vatpic, fmt, a1, a2) \ argument 97 VM_CTR2((vatpic)->vm, fmt, a1, a2) [all …]
|
| HD | vatpic.h | 39 struct vatpic *vatpic_init(struct vm *vm); 40 void vatpic_cleanup(struct vatpic *vatpic);
|
| /NextBSD/sys/modules/vmm/ |
| HD | Makefile | 31 vatpic.c \
|
| /NextBSD/sys/amd64/vmm/ |
| HD | vmm.c | 149 struct vatpic *vatpic; /* (i) virtual atpic */ member 419 vm->vatpic = vatpic_init(vm); in vm_init() 483 vatpic_cleanup(vm->vatpic); in vm_cleanup() 2436 struct vatpic * 2439 return (vm->vatpic); in vm_atpic()
|
| /NextBSD/sys/amd64/include/ |
| HD | vmm.h | 320 struct vatpic *vm_atpic(struct vm *vm);
|