Home
last modified time | relevance | path

Searched refs:requests (Results 1 – 25 of 75) sorted by relevance

123

/qemu/backends/
A Drng.c37 QSIMPLEQ_INSERT_TAIL(&s->requests, req, next); in rng_backend_request_entropy()
75 QSIMPLEQ_FOREACH_SAFE(req, &s->requests, next, next) { in rng_backend_free_requests()
79 QSIMPLEQ_INIT(&s->requests); in rng_backend_free_requests()
84 QSIMPLEQ_REMOVE(&s->requests, req, RngRequest, next); in rng_backend_finalize_request()
92 QSIMPLEQ_INIT(&s->requests); in rng_backend_init()
A Drng-random.c40 while (!QSIMPLEQ_EMPTY(&s->parent.requests)) { in entropy_available()
41 RngRequest *req = QSIMPLEQ_FIRST(&s->parent.requests); in entropy_available()
63 if (QSIMPLEQ_EMPTY(&s->parent.requests)) { in rng_random_request_entropy()
A Drng-egd.c58 QSIMPLEQ_FOREACH(req, &s->parent.requests, next) { in rng_egd_chr_can_read()
70 while (size > 0 && !QSIMPLEQ_EMPTY(&s->parent.requests)) { in rng_egd_chr_read()
71 RngRequest *req = QSIMPLEQ_FIRST(&s->parent.requests); in rng_egd_chr_read()
A Dcryptodev-lkcf.c86 QSIMPLEQ_HEAD(, CryptoDevLKCFTask) requests;
237 QSIMPLEQ_INIT(&lkcf->requests); in cryptodev_lkcf_init()
269 QSIMPLEQ_FOREACH_SAFE(task, &lkcf->requests, queue, next) { in cryptodev_lkcf_cleanup()
451 while (backend->running && QSIMPLEQ_EMPTY(&backend->requests)) { in cryptodev_lkcf_worker()
455 task = QSIMPLEQ_FIRST(&backend->requests); in cryptodev_lkcf_worker()
456 QSIMPLEQ_REMOVE_HEAD(&backend->requests, queue); in cryptodev_lkcf_worker()
502 QSIMPLEQ_INSERT_TAIL(&lkcf->requests, task, queue); in cryptodev_lkcf_operation()
A Drng-builtin.c26 while (!QSIMPLEQ_EMPTY(&s->parent.requests)) { in rng_builtin_receive_entropy_bh()
27 RngRequest *req = QSIMPLEQ_FIRST(&s->parent.requests); in rng_builtin_receive_entropy_bh()
/qemu/docs/devel/
A Dsubmitting-a-pull-request.rst10 will need to submit pull requests, although occasionally for a large
12 documents our recommendations on pull requests for those people.
42 **Don't send pull requests for code that hasn't passed review**. A pull
56 **All pull requests must be signed**. By "signed" here we mean that
61 **Pull requests not for master should say "not for master" and have
67 pull requests that should be applied to master.
A Dmaintainers.rst12 - collecting patches and preparing pull requests
55 about dealing with bugs or features requests.
96 GPG is used to sign pull requests so they can be identified as really
107 requests though.
A Dtrivial-patches.rst15 requests for patches that:
41 3. Send pull requests to the development mailing list once a week.
A Dmulti-process.rst161 a cache of IOMMMU translations: sending translation requests back to
162 QEMU on cache misses, and in turn receiving flush requests from QEMU
420 QEMU will need to create a socket for IOMMU requests from the emulation
421 process. It will handle those requests with an
460 handle requests from the QEMU process, and route machine-level requests
504 handle MMIO requests from QEMU, the PCI physical addresses must be the
520 PCI bus object, and the root PCI object forwards interrupt requests to
566 The IOMMU emulation will also need to act on unmap requests from QEMU.
757 A read returns any pending MMIO requests from the KVM driver as MMIO
766 A write also consists of a set of MMIO requests. They are compared to
[all …]
A Dmultiple-iothreads.rst128 requests from the guest are completed. When a block device is running
129 in an ``IOThread``, the ``IOThread`` can also process requests from the guest
A Dreplay.rst165 When the queue is flushed the information about processed requests
167 events read from the log. Therefore block devices requests are processed
184 Reading and writing requests are created by CPU thread of QEMU. Later these
185 requests proceed to block layer which creates "bottom halves". Bottom
A Ds390-cpu-topology.rst122 When a guest requests a modification of the polarization,
/qemu/docs/devel/testing/
A Dblkdebug.rst45 This rule fails all aio read requests with ``ENOSPC`` (28). Note that the errno
89 to make so rules can match specific types of requests. For example, the ``qcow2``
91 only L1 table accesses and not other metadata or guest data requests.
114 a longer sequence of requests. For example::
168 concurrent requests. The "breakpoint" feature allows requests to be halted on
170 deterministic ordering when multiple requests are in flight.
/qemu/tests/qemu-iotests/tests/
A Diov-padding.out4 == performing 1024-element vectored requests to image (offset: 4096; length: 524288) ==
18 == performing 1024-element vectored requests to image (offset: 4096; length: 527872) ==
32 == performing 1024-element vectored requests to image (offset: 512; length: 524288) ==
46 == performing 1024-element vectored requests to image (offset: 512; length: 527872) ==
/qemu/.github/workflows/
A Dlockdown.yml10 pull-requests: write
23 The project does not process merge requests filed on GitHub.
/qemu/hw/usb/
A Ddev-uas.c121 QTAILQ_HEAD(, UASRequest) requests;
528 QTAILQ_FOREACH(req, &uas->requests, next) { in usb_uas_start_next_transfer()
570 QTAILQ_REMOVE(&uas->requests, req, next); in usb_uas_scsi_free_request()
579 QTAILQ_FOREACH(req, &uas->requests, next) { in usb_uas_find_request()
642 QTAILQ_FOREACH_SAFE(req, &uas->requests, next, nreq) { in usb_uas_handle_reset()
688 QTAILQ_FOREACH_SAFE(req, &uas->requests, next, nreq) { in usb_uas_cancel_io()
724 QTAILQ_INSERT_TAIL(&uas->requests, req, next); in usb_uas_command()
939 QTAILQ_INIT(&uas->requests); in usb_uas_realize()
A Dhost-libusb.c122 QTAILQ_HEAD(, USBHostRequest) requests;
390 QTAILQ_INSERT_TAIL(&s->requests, r, next); in usb_host_req_alloc()
403 QTAILQ_REMOVE(&r->host->requests, r, next); in usb_host_req_free()
413 QTAILQ_FOREACH(r, &s->requests, next) { in usb_host_req_find()
1077 QTAILQ_FOREACH_SAFE(r, &s->requests, next, rtmp) { in usb_host_abort_xfers()
1081 while (QTAILQ_FIRST(&s->requests) != NULL) { in usb_host_abort_xfers()
1094 QTAILQ_FOREACH_SAFE(r, &s->requests, next, rtmp) { in usb_host_abort_xfers()
1095 QTAILQ_REMOVE(&s->requests, r, next); in usb_host_abort_xfers()
1207 QTAILQ_INIT(&s->requests); in usb_host_realize()
/qemu/block/
A Dnbd.c80 NBDClientRequest requests[MAX_NBD_REQUESTS]; member
157 if (nbd_recv_coroutine_wake_one(&s->requests[i])) { in nbd_recv_coroutines_wake()
439 assert(!s->requests[ind2].receiving); in nbd_receive_replies()
441 s->requests[ind].receiving = true; in nbd_receive_replies()
455 assert(!s->requests[ind].receiving); in nbd_receive_replies()
486 nbd_recv_coroutine_wake_one(&s->requests[ind2]); in nbd_receive_replies()
516 if (s->requests[i].coroutine == NULL) { in nbd_co_send_request()
522 s->requests[i].coroutine = qemu_coroutine_self(); in nbd_co_send_request()
523 s->requests[i].offset = request->from; in nbd_co_send_request()
524 s->requests[i].receiving = false; in nbd_co_send_request()
[all …]
/qemu/docs/
A Dblock-replication.txt49 1) Primary write requests will be copied and forwarded to Secondary
51 2) Before Primary write requests are written to Secondary disk, the
56 3) Primary write requests will be written to Secondary disk.
57 4) Secondary write requests will be buffered in the Disk buffer and it
116 2. Forwarding primary write requests failed
A Dthrottle.txt151 request for accounting purposes. Larger requests will be counted
156 half. This only applies to requests larger than iops-size: smaller
157 requests will be always counted as one, no matter their size.
160 requests is never taken into account when applying IOPS limits.
191 I/O requests on several drives of the same group they will be
/qemu/include/sysemu/
A Drng.h56 QSIMPLEQ_HEAD(, RngRequest) requests;
/qemu/tests/qemu-iotests/
A D255.out6 === Start background read requests ===
/qemu/hw/tpm/
A Dtrace-events16 tpm_tis_mmio_write_locty_req_use(uint8_t locty) "Locality %d requests use"
/qemu/docs/tools/
A Dqemu-pr-helper.rst23 requests to a privileged external helper program. :program:`qemu-pr-helper`
/qemu/hw/scsi/
A Dscsi-bus.c103 QTAILQ_FOREACH_SAFE(req, &s->requests, next, next_req) { in scsi_device_for_each_req_sync()
131 QTAILQ_FOREACH_SAFE(req, &s->requests, next, next) { in scsi_device_for_each_req_async_bh()
352 QTAILQ_INIT(&dev->requests); in scsi_qdev_realize()
967 QTAILQ_INSERT_TAIL(&req->dev->requests, req, next); in scsi_req_enqueue_internal()
987 QTAILQ_REMOVE(&req->dev->requests, req, next); in scsi_req_dequeue()

Completed in 50 milliseconds

123