Searched refs:head (Results 1 – 14 of 14) sorted by relevance
/kvm-unit-tests/lib/ |
H A D | list.h | 43 static inline void list_add(struct linked_list *head, struct linked_list *li) in list_add() argument 46 assert(head); in list_add() 47 li->prev = head; in list_add() 48 li->next = head->next; in list_add() 49 head->next->prev = li; in list_add() 50 head->next = li; in list_add() 56 static inline void list_add_tail(struct linked_list *head, struct linked_list *li) in list_add_tail() argument 58 assert(head); in list_add_tail() 59 list_add(head->prev, li); in list_add_tail()
|
H A D | virtio.c | 54 int head; in virtqueue_add_outbuf() local 64 head = vq->free_head; in virtqueue_add_outbuf() 66 vq->vring.desc[head].flags = 0; in virtqueue_add_outbuf() 67 vq->vring.desc[head].addr = virt_to_phys(buf); in virtqueue_add_outbuf() 68 vq->vring.desc[head].len = len; in virtqueue_add_outbuf() 70 vq->free_head = vq->vring.desc[head].next; in virtqueue_add_outbuf() 72 vq->data[head] = buf; in virtqueue_add_outbuf() 75 vq->vring.avail->ring[avail] = head; in virtqueue_add_outbuf() 90 void detach_buf(struct vring_virtqueue *vq, unsigned head) in detach_buf() argument 92 unsigned i = head; in detach_buf() [all …]
|
H A D | virtio.h | 145 extern void detach_buf(struct vring_virtqueue *vq, unsigned head);
|
/kvm-unit-tests/scripts/ |
H A D | pretty_print_stacks.py | 46 head, path, maybeline, line, tail = m.groups() 48 puts('%s at %s:%s%s\n' % (head.decode(), path.decode(), maybeline.decode(), tail.decode()))
|
H A D | arch-run.bash | 88 testret=$(grep '^EXIT: ' <<<"$lines" | head -n1 | sed 's/.*STATUS=\([0-9][0-9]*\).*/\1/')
|
/kvm-unit-tests/ |
H A D | .gitignore | 23 /build-head
|
H A D | Makefile | 125 all: directories $(shell (cd $(SRCDIR) && git rev-parse --verify --short=8 HEAD) >build-head 2>/dev… 139 $(RM) lib/asm lib/config.h config.mak $(TEST_DIR)-run msr.out cscope.* build-head
|
H A D | README | 114 QEMU_VERSION_STRING string of the form `qemu -h | head -1`
|
H A D | README.md | 114 QEMU_VERSION_STRING string of the form `qemu -h | head -1`
|
/kvm-unit-tests/arm/efi/ |
H A D | elf_aarch64_efi.lds | 8 *(.text.head)
|
H A D | crt0-efi-aarch64.S | 19 .section .text.head
|
/kvm-unit-tests/lib/x86/ |
H A D | intel-iommu.c | 269 uint32_t head:12; /* 0xfee */ member 320 msi_addr.head = 0xfee; in vtd_setup_msi()
|
/kvm-unit-tests/riscv/efi/ |
H A D | crt0-efi-riscv64.S | 23 .section .text.head
|
H A D | elf_riscv64_efi.lds | 9 *(.text.head)
|