Searched refs:copyinfo (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/amd64/vmm/ |
H A D | vmm.c | 1420 struct vm_copyinfo copyinfo[2]; in vm_handle_db() local 1429 VM_PROT_RW, copyinfo, nitems(copyinfo), &fault); in vm_handle_db() 1436 vm_copyin(copyinfo, &rflags, sizeof(uint64_t)); in vm_handle_db() 1442 vm_copyout(&rflags, copyinfo, sizeof(uint64_t)); in vm_handle_db() 1443 vm_copy_teardown(copyinfo, nitems(copyinfo)); in vm_handle_db() 2414 vm_copy_teardown(struct vm_copyinfo *copyinfo, int num_copyinfo) in vm_copy_teardown() argument 2419 if (copyinfo[idx].cookie != NULL) in vm_copy_teardown() 2420 vm_gpa_release(copyinfo[idx].cookie); in vm_copy_teardown() 2422 bzero(copyinfo, num_copyinfo * sizeof(struct vm_copyinfo)); in vm_copy_teardown() 2427 uint64_t gla, size_t len, int prot, struct vm_copyinfo *copyinfo, in vm_copy_setup() argument [all …]
|
H A D | vmm_instruction_emul.c | 776 struct vm_copyinfo copyinfo[2]; in emulate_movs() local 778 struct iovec copyinfo[2]; in emulate_movs() 834 copyinfo, nitems(copyinfo), &fault); in emulate_movs() 842 vm_copyin(copyinfo, &val, opsize); in emulate_movs() 843 vm_copy_teardown(copyinfo, nitems(copyinfo)); in emulate_movs() 860 PROT_WRITE, copyinfo, nitems(copyinfo), &fault); in emulate_movs() 878 vm_copyout(&val, copyinfo, opsize); in emulate_movs() 879 vm_copy_teardown(copyinfo, nitems(copyinfo)); in emulate_movs() 1532 struct vm_copyinfo copyinfo[2]; in emulate_stack_op() local 1534 struct iovec copyinfo[2]; in emulate_stack_op() [all …]
|
/freebsd/sys/amd64/include/ |
H A D | vmm.h | 456 uint64_t gla, size_t len, int prot, struct vm_copyinfo *copyinfo, 458 void vm_copy_teardown(struct vm_copyinfo *copyinfo, int num_copyinfo); 459 void vm_copyin(struct vm_copyinfo *copyinfo, void *kaddr, size_t len); 460 void vm_copyout(const void *kaddr, struct vm_copyinfo *copyinfo, size_t len);
|
/freebsd/usr.bin/systat/ |
H A D | vmstat.c | 129 static void copyinfo(struct Info *, struct Info *); 270 copyinfo(&s2, &s1); in initkre() 537 copyinfo(&s2, &s1); in cmdkre() 557 copyinfo(&z, &s1); in cmdkre() 804 copyinfo(struct Info *from, struct Info *to) in copyinfo() function
|
/freebsd/usr.sbin/fstyp/ |
H A D | hammer2_disk.h | 1198 * NOTE: The copyinfo[] array contains the configuration for both the 1203 * allow HAMMER2 to pick up the others when it checks the copyinfo[] 1277 * An id from the active copies set (up to 8, see copyinfo later on) 1320 * Contains the configuration for up to 256 copyinfo targets. These 1329 /* 1000-8FFF copyinfo config */ 1330 hammer2_volconf_t copyinfo[HAMMER2_COPYID_COUNT]; member
|