Home
last modified time | relevance | path

Searched refs:head (Results 1 – 14 of 14) sorted by relevance

/kvm-unit-tests/lib/
H A Dlist.h43 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 Dvirtio.c54 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 Dvirtio.h145 extern void detach_buf(struct vring_virtqueue *vq, unsigned head);
/kvm-unit-tests/scripts/
H A Dpretty_print_stacks.py46 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 Darch-run.bash88 testret=$(grep '^EXIT: ' <<<"$lines" | head -n1 | sed 's/.*STATUS=\([0-9][0-9]*\).*/\1/')
/kvm-unit-tests/
H A D.gitignore23 /build-head
H A DMakefile125 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 DREADME114 QEMU_VERSION_STRING string of the form `qemu -h | head -1`
H A DREADME.md114 QEMU_VERSION_STRING string of the form `qemu -h | head -1`
/kvm-unit-tests/arm/efi/
H A Delf_aarch64_efi.lds8 *(.text.head)
H A Dcrt0-efi-aarch64.S19 .section .text.head
/kvm-unit-tests/lib/x86/
H A Dintel-iommu.c269 uint32_t head:12; /* 0xfee */ member
320 msi_addr.head = 0xfee; in vtd_setup_msi()
/kvm-unit-tests/riscv/efi/
H A Dcrt0-efi-riscv64.S23 .section .text.head
H A Delf_riscv64_efi.lds9 *(.text.head)