Home
last modified time | relevance | path

Searched +full:close +full:- +full:pr (Results 1 – 12 of 12) sorted by relevance

/qemu/.github/workflows/
H A Dlockdown.yml1 # Configuration for Repo Lockdown - https://github.com/dessant/repo-lockdown
10 pull-requests: write
14 runs-on: ubuntu-latest
16 - uses: dessant/repo-lockdown@v2
18 pr-comment: |
21 This repository is a read-only mirror of the project's repostories hosted
22 on https://gitlab.com/qemu-project/qemu.git.
29 lock-pr: true
30 close-pr: true
/qemu/qapi/
H A Dblock.json1 # -*- Mode: Python -*-
8 { 'include': 'block-core.json' }
39 # @rechs: Same as @large, but first convert a 16-head geometry to
40 # 15-head, by proportionally scaling up the number of
84 # @query-pr-managers:
94 { 'command': 'query-pr-managers', 'returns': ['PRManagerInfo'],
95 'allow-preconfig': true }
114 # - If @device is not a valid block device, DeviceNotFound
120 # .. qmp-example::
122 # -> { "execute": "eject", "arguments": { "id": "ide1-0-1" } }
[all …]
H A Dblock-core.json1 # -*- Mode: Python -*-
20 # @vm-state-size: size of the VM state
22 # @date-sec: UTC date of the snapshot in seconds
24 # @date-nsec: fractional part in nano seconds to be used with date-sec
26 # @vm-clock-sec: VM clock relative to boot in seconds
28 # @vm-clock-nsec: fractional part in nano seconds to be used with
29 # vm-clock-sec
32 # record/replay is enabled. Used for "time-traveling" to match
34 # counter may be obtained through @query-replay command
40 'data': { 'id': 'str', 'name': 'str', 'vm-state-size': 'int',
[all …]
/qemu/scsi/
H A Dqemu-pr-helper.c24 #include <linux/dm-ioctl.h>
28 #include <cap-ng.h>
39 #include "qemu/help-texts.h"
42 #include "qemu/main-loop.h"
44 #include "qemu/error-report.h"
45 #include "qemu/config-file.h"
51 #include "io/channel-socket.h"
53 #include "qemu-version.h"
56 #include "block/thread-pool.h"
60 #include "pr-helper.h"
[all …]
/qemu/target/ppc/
H A Dmachine.c6 #include "mmu-hash64.h"
10 #include "power8-pmu.h"
15 target_ulong msr = env->msr; in post_load_update_msr()
21 env->msr ^= env->msr_mask & ~((1ULL << MSR_TGPR) | MSR_HVB); in post_load_update_msr()
30 v->u64[0] = qemu_get_be64(f); in get_avr()
31 v->u64[1] = qemu_get_be64(f); in get_avr()
41 qemu_put_be64(f, v->u64[0]); in put_avr()
42 qemu_put_be64(f, v->u64[1]); in put_avr()
63 v->VsrD(0) = qemu_get_be64(f); in get_fpr()
73 qemu_put_be64(f, v->VsrD(0)); in put_fpr()
[all …]
H A Dkvm.c13 * See the COPYING file in the top-level directory.
25 #include "qemu/error-report.h"
27 #include "cpu-models.h"
33 #include "mmu-hash64.h"
39 #include "migration/qemu-file-types.h"
47 #include "qemu/main-loop.h"
48 #include "qemu/mmap-alloc.h"
52 #include "accel/accel-cpu-target.h"
56 #define PROC_DEVTREE_CPU "/proc/device-tree/cpus/"
106 * Check whether we are running with KVM-PR (instead of KVM-HV). This
[all …]
/qemu/hw/ppc/
H A Dspapr.c4 * Copyright (c) 2004-2007 Fabrice Bellard
7 * Copyright (c) 2010-2024, IBM Corporation..
9 * SPDX-License-Identifier: GPL-2.0-or-later
33 #include "qemu/guest-random.h"
35 #include "qapi/qapi-events-machine.h"
36 #include "qapi/qapi-events-qdev.h"
46 #include "hw/fw-path-provider.h"
54 #include "migration/qemu-file-types.h"
58 #include "mmu-hash64.h"
59 #include "mmu-book3s-v3.h"
[all …]
/qemu/block/
H A Dfile-posix.c28 #include "qemu/error-report.h"
29 #include "block/block-io.h"
36 #include "block/thread-pool.h"
38 #include "block/raw-aio.h"
42 #include "scsi/pr-manager.h"
76 #include <linux/dm-ioctl.h>
146 * - DM_MPATH_PROBE_PATHS returns success, but before SG_IO completes, another
149 * - DM_MPATH_PROBE_PATHS failed all paths in the current path group, so we have
154 * failover), it's rare to have more than eight path groups - and even then
171 * s->fd. */
[all …]
/qemu/hw/intc/
H A Dopenpic.c28 * - Motorola MPC8245 & MPC8540 user manuals.
29 * - Motorola Harrier programmer manual
38 #include "hw/qdev-properties.h"
46 #include "qemu/error-report.h"
79 #define OPENPIC_CPU_REG_SIZE 0x100 + ((MAX_CPU - 1) * 0x1000)
97 #define VIR_MPIC2A 0x00004614 /* IBM MPIC-2A */
167 return -1; in get_current_cpu()
170 return current_cpu->cpu_index; in get_current_cpu()
197 set_bit(n_IRQ, q->queue); in IRQ_setbit()
202 clear_bit(n_IRQ, q->queue); in IRQ_resetbit()
[all …]
/qemu/linux-user/
H A Delfload.c1 /* This is the Linux kernel elf-loading code, ported into user space */
10 #include "user/tswap-target.h"
11 #include "user/page-protection.h"
12 #include "exec/page-protection.h"
13 #include "exec/mmap-lock.h"
14 #include "exec/translation-block.h"
16 #include "user/guest-base.h"
17 #include "user-internals.h"
18 #include "signal-common.h"
20 #include "user-mmap.h"
[all …]
/qemu/accel/kvm/
H A Dkvm-all.c12 * See the COPYING file in the top-level directory.
24 #include "qemu/config-file.h"
25 #include "qemu/error-report.h"
34 #include "system/accel-blocker.h"
40 #include "qemu/main-loop.h"
44 #include "qapi/qapi-types-common.h"
45 #include "qapi/qapi-visit-common.h"
47 #include "qemu/guest-random.h"
49 #include "kvm-cpus.h"
56 /* This check must be after config-host.h is included */
[all …]
/qemu/hw/scsi/
H A Dscsi-disk.c9 * 2009-Dec-12 Artyom Tarasenko : implemented stamdard inquiry for the case
12 * 2009-Oct-13 Artyom Tarasenko : implemented the block descriptor in the
25 #include "qemu/error-report.h"
26 #include "qemu/main-loop.h"
28 #include "qemu/hw-version.h"
31 #include "migration/qemu-file-types.h"
36 #include "system/block-backend.h"
39 #include "hw/qdev-properties.h"
40 #include "hw/qdev-properties-system.h"
58 #define DEFAULT_MAX_IO_SIZE INT_MAX /* 2 GB - 1 block */
[all …]