Home
last modified time | relevance | path

Searched refs:jobs (Results 1 – 25 of 33) sorted by relevance

12

/qemu/tests/qemu-iotests/
H A D26466 jobs = self.vm.qmp('query-block-jobs')['return']
67 if jobs and jobs[0]['offset'] > 0:
72 self.assertTrue(jobs and jobs[0]['offset'] > 0) # job started
74 jobs = self.vm.qmp('query-block-jobs')['return']
76 self.assertTrue(jobs)
77 self.assertTrue(jobs[0]['offset'] < jobs[0]['len'])
H A Dtestrunner.py126 test_field_width: int, jobs: int) -> List[TestResult]:
133 with Pool(jobs) as p:
372 def run_tests(self, tests: List[str], jobs: int = 1) -> bool:
387 if jobs > 1:
388 results = self.run_tests_pool(tests, test_field_width, jobs)
393 if jobs > 1:
H A D109.out23 {"execute":"query-block-jobs"}
39 {"execute":"query-block-jobs"}
74 {"execute":"query-block-jobs"}
90 {"execute":"query-block-jobs"}
125 {"execute":"query-block-jobs"}
141 {"execute":"query-block-jobs"}
176 {"execute":"query-block-jobs"}
192 {"execute":"query-block-jobs"}
227 {"execute":"query-block-jobs"}
243 {"execute":"query-block-jobs"}
[all …]
H A Dcheck193 ok = tr.run_tests(paths, args.jobs)
/qemu/qapi/
H A Djob.json5 # = Background jobs
56 # completion. This is used for long-running jobs like mirror that
62 # @waiting: The job is waiting for other jobs in the transaction to
159 # This command also clears the error status for block-jobs (stream,
218 # needs to be run explicitly for jobs that don't have automatic
220 # for jobs that have @auto-dismiss option, which are drive-backup,
223 # jobs.
226 # reached its terminal state, CONCLUDED. For jobs that make use of
239 # Instructs all jobs in a transaction (or a single job if it is not
241 # necessary cleanup. This command requires that all involved jobs are
[all …]
H A Dtransaction.json188 # @completion-mode: Controls how jobs launched asynchronously by
H A Dblock-core.json607 # @busy: true if the bitmap is in-use by some operation (NBD or jobs)
1290 # jobs, cancel the job
1293 # or BLOCK_JOB_ERROR). The backup, mirror and commit block jobs
1300 # @stop: for guest operations, stop the virtual machine; for jobs,
1374 # Information specific to mirror block jobs.
1439 # @query-block-jobs:
1447 { 'command': 'query-block-jobs', 'returns': ['BlockJobInfo'],
1606 # copy-before-write jobs; defaults to break-guest-write. (Since 10.1)
1893 # query-block-jobs where the BlockJobInfo.type field has the value
1924 # query-block-jobs where the BlockJobInfo.type field has the value
[all …]
/qemu/ui/
H A Dvnc-jobs.c61 QTAILQ_HEAD(, VncJob) jobs;
117 QTAILQ_INSERT_TAIL(&queue->jobs, job, next); in vnc_job_push()
127 QTAILQ_FOREACH(job, &queue->jobs, next) { in vnc_has_job_locked()
247 while (QTAILQ_EMPTY(&queue->jobs) && !queue->exit) { in vnc_worker_thread_loop()
251 job = QTAILQ_FIRST(&queue->jobs); in vnc_worker_thread_loop()
330 QTAILQ_REMOVE(&queue->jobs, job, next); in vnc_worker_thread_loop()
344 QTAILQ_INIT(&queue->jobs); in vnc_queue_init()
H A Dmeson.build41 'vnc-jobs.c',
/qemu/docs/devel/testing/
H A Dci-runners.rst.inc4 Besides the jobs run under the various CI systems listed before, there
5 are a number additional jobs that will run before an actual merge.
7 other GitLab based CI jobs, but rely on additional systems, not the
12 care of running jobs created by events such as a push to a branch.
16 The GitLab CI jobs definition for the custom runners are located under::
67 will run jobs. The association between a machine and a GitLab project
97 Tags are very important as they are used to route specific jobs to
H A Dci-jobs.rst.inc65 * QEMU_JOB_nnnn - variables to be defined in individual jobs
71 which jobs get run in a pipeline
74 in stage 1, for use by build jobs in stage 2. Defaults to
147 the jobs to be manually started from the UI
150 the jobs immediately, as was the historical behaviour
162 These variables are primarily to control execution of jobs on
186 The jobs are configured to use "ccache" by default since this typically
H A Dci.rst25 .. include:: ci-jobs.rst.inc
H A Dfuzzing.rst69 * ``-jobs=4 -workers=4`` : These arguments configure libFuzzer to run 4 fuzzers in
70 parallel (4 fuzzing jobs in 4 worker processes). Alternatively, with only
71 ``-jobs=N``, libFuzzer automatically spawns a number of workers less than or equal
/qemu/
H A Djob.c56 static QLIST_HEAD(, Job) jobs = QLIST_HEAD_INITIALIZER(jobs);
93 QLIST_HEAD(, Job) jobs;
117 QLIST_INIT(&txn->jobs); in job_txn_new()
162 QLIST_INSERT_HEAD(&txn->jobs, job, txn_list); in job_txn_add_job_locked()
191 QLIST_FOREACH_SAFE(other_job, &txn->jobs, txn_list, next) { in job_txn_apply_locked()
348 return QLIST_FIRST(&jobs); in job_next_locked()
363 QLIST_FOREACH(job, &jobs, job_list) { in job_get_locked()
443 QLIST_INSERT_HEAD(&jobs, job, job_list); in job_create()
948 QLIST_FOREACH(other_job, &txn->jobs, txn_list) { in job_completed_txn_abort_locked()
958 while (!QLIST_EMPTY(&txn->jobs)) { in job_completed_txn_abort_locked()
[all …]
H A Dhmp-commands-info.hx89 .name = "block-jobs",
97 ``info block-jobs``
/qemu/tests/vm/
H A Dbasevm.py105 mem = max(4, args.jobs)
151 if args.jobs and args.jobs > 1:
152 self._args += ["-smp", "%d" % args.jobs]
659 jobs=int(args.jobs),
/qemu/roms/
H A Dedk2-build.py179 def build_one(cfg, build, jobs = None, silent = False, nologs = False): argument
191 if jobs:
192 cmdline += [ '-n', jobs ]
429 build_one(cfg, build, options.jobs, options.silent, options.nologs)
/qemu/tests/qemu-iotests/tests/
H A Diothreads-stream.out9 Starting stream jobs...
H A Dqsd-jobs.out1 QA output created by qsd-jobs
/qemu/docs/
H A Dmeson.build20 jobs = run_command(nproc, check: true).stdout() variable
21 SPHINX_ARGS += ['-j', jobs]
/qemu/docs/interop/
H A Dlive-block-operations.rst14 live block device jobs -- stream, commit, mirror, and backup. These can
313 (QEMU) query-block-jobs
315 "execute": "query-block-jobs",
323 overlays based on them. Finally, the ``block-stream`` jobs can be
461 (QEMU) query-block-jobs
463 "execute": "query-block-jobs",
529 The rest of the block device jobs ('stream', "non-active
599 Following the above, querying for active block jobs will show that a
603 (QEMU) query-block-jobs
605 "execute": "query-block-jobs",
[all …]
H A Dbitmaps.rst547 management documented in `Background jobs
548 <qemu-qmp-ref.html#Background-jobs>`_.
1219 Incremental Push Backup jobs that fail individually behave simply as
1373 individual jobs associated with the transaction may fail. It is possible that
1377 If multiple backup jobs are specified in a single transaction, if one of those
1378 jobs fails, it will not interact with the other backup jobs in any way by
1384 This example illustrates a transaction with two backup jobs, where one fails
1416 #. Receive notice that the Transaction was accepted, and jobs were
1495 While jobs launched by transactions normally complete or fail individually,
1504 In ``grouped`` completion mode, no jobs will report success until all jobs are
[all …]
/qemu/.gitlab-ci.d/cirrus/
H A DREADME.rst10 CI jobs from GitLab CI jobs so that Cirrus CI job output is integrated into
/qemu/docs/devel/migration/
H A Dqpl-compression.rst40 Submit jobs +-----------+
115 - 8 engines and 1 work queue are configured in group 0, so all compression jobs
151 [ info] Submitted all noop jobs
/qemu/docs/devel/
H A Dmultiple-iothreads.rst134 Long-running jobs (usually in the form of coroutines) are often scheduled in

12