qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
 messages from 2020-09-24 16:41:52 to 2020-09-25 01:17:56 UTC [more...]

[PATCH 00/16] qapi: static typing conversion, pt2
 2020-09-25  1:10 UTC  (40+ messages)
` [PATCH 01/16] qapi/expr.py: Remove 'info' argument from nested check_if_str
` [PATCH 02/16] qapi/expr.py: Check for dict instead of OrderedDict
` [PATCH 03/16] qapi/expr.py: constrain incoming expression types
` [PATCH 04/16] qapi/expr.py: Add assertion for union type 'check_dict'
` [PATCH 05/16] qapi/expr.py: move string check upwards in check_type
` [PATCH 06/16] qapi/expr.py: Check type of 'data' member
` [PATCH 07/16] qapi/expr.py: Add casts in a few select cases
` [PATCH 08/16] qapi/expr.py: add type hint annotations
` [PATCH 09/16] qapi/expr.py: rewrite check_if
` [PATCH 10/16] qapi/expr.py: Remove single-letter variable
` [PATCH 12/16] qapi/expr.py: Add docstrings
` [PATCH 13/16] qapi/expr.py: Modify check_keys to accept any Iterable
` [PATCH 14/16] qapi/expr.py: Use tuples instead of lists for static data
` [PATCH 15/16] qapi/expr.py: move related checks inside check_xxx functions

[PATCH v2 00/38] qapi: static typing conversion, pt1
 2020-09-24 23:52 UTC  (45+ messages)
` [PATCH v2 02/38] qapi-gen: Separate arg-parsing from generation
` [PATCH v2 04/38] qapi: Prefer explicit relative imports
` [PATCH v2 05/38] qapi: Remove wildcard includes
` [PATCH v2 07/38] qapi: add pylintrc
` [PATCH v2 10/38] qapi/common.py: delint with pylint
` [PATCH v2 29/38] qapi/gen.py: "
` [PATCH v2 34/38] qapi/types.py: add type hint annotations
` [PATCH v2 35/38] qapi/types.py: remove one-letter variables
` [PATCH v2 36/38] qapi/visit.py: assert tag_member contains a QAPISchemaEnumType
` [PATCH v2 37/38] qapi/visit.py: remove unused parameters from gen_visit_object
` [PATCH v2 38/38] qapi/visit.py: add type hint annotations

tools/virtiofs: Multi threading seems to hurt performance
 2020-09-24 22:10 UTC  (6+ messages)
        ` virtiofs vs 9p performance(Re: tools/virtiofs: Multi threading seems to hurt performance)

[PATCH v3 00/47] qapi: static typing conversion, pt1
 2020-09-25  0:29 UTC  (48+ messages)
` [PATCH v3 01/47] [DO-NOT-MERGE] docs: replace single backtick (`) with double-backtick (``)
` [PATCH v3 02/47] [DO-NOT-MERGE] docs: repair broken references
` [PATCH v3 03/47] [DO-NOT-MERGE] docs/sphinx: change default role to "any"
` [PATCH v3 04/47] qapi: modify docstrings to be sphinx-compatible
` [PATCH v3 05/47] qapi/doc.py: Change code templates from function to string
` [PATCH v3 06/47] [DO-NOT-MERGE] docs: enable sphinx-autodoc for scripts/qapi
` [PATCH v3 07/47] qapi-gen: Separate arg-parsing from generation
` [PATCH v3 08/47] qapi: move generator entrypoint into module
` [PATCH v3 09/47] [DO-NOT-MERGE] docs: add scripts/qapi/main to python manual
` [PATCH v3 10/47] qapi: Prefer explicit relative imports
` [PATCH v3 11/47] qapi: Remove wildcard includes
` [PATCH v3 12/47] qapi: enforce import order/styling with isort
` [PATCH v3 13/47] qapi: delint using flake8
` [PATCH v3 14/47] qapi: add pylintrc
` [PATCH v3 15/47] qapi/common.py: Remove python compatibility workaround
` [PATCH v3 16/47] qapi/common.py: Add indent manager
` [PATCH v3 17/47] qapi/common.py: delint with pylint
` [PATCH v3 18/47] qapi/common.py: Replace one-letter 'c' variable
` [PATCH v3 19/47] qapi/common.py: check with pylint
` [PATCH v3 20/47] qapi/common.py: add type hint annotations
` [PATCH v3 21/47] qapi/common.py: Convert comments into docstrings, and elaborate
` [PATCH v3 22/47] qapi/common.py: move build_params into gen.py
` [PATCH v3 23/47] qapi: establish mypy type-checking baseline
` [PATCH v3 24/47] qapi/events.py: add type hint annotations
` [PATCH v3 25/47] qapi/events.py: Move comments into docstrings
` [PATCH v3 26/47] qapi/commands.py: Don't re-bind to variable of different type
` [PATCH v3 27/47] qapi/commands.py: add type hint annotations
` [PATCH v3 28/47] qapi/commands.py: enable checking with mypy
` [PATCH v3 29/47] qapi/source.py: add type hint annotations
` [PATCH v3 30/47] qapi/source.py: delint with pylint
` [PATCH v3 31/47] qapi/gen.py: Fix edge-case of _is_user_module
` [PATCH v3 32/47] qapi/gen.py: add type hint annotations
` [PATCH v3 33/47] qapi/gen.py: Enable checking with mypy
` [PATCH v3 34/47] qapi/gen.py: Remove unused parameter
` [PATCH v3 35/47] qapi/gen.py: update write() to be more idiomatic
` [PATCH v3 36/47] qapi/gen.py: delint with pylint
` [PATCH v3 37/47] qapi/introspect.py: assert obj is a dict when features are given
` [PATCH v3 38/47] qapi/instrospect.py: add preliminary type hint annotations
` [PATCH v3 39/47] qapi/introspect.py: add _gen_features helper
` [PATCH v3 40/47] qapi/introspect.py: Unify return type of _make_tree()
` [PATCH v3 41/47] qapi/introspect.py: replace 'extra' dict with 'comment' argument
` [PATCH v3 42/47] qapi/introspect.py: create a typed 'Node' data structure
` [PATCH v3 43/47] qapi/types.py: add type hint annotations
` [PATCH v3 44/47] qapi/types.py: remove one-letter variables
` [PATCH v3 45/47] qapi/visit.py: assert tag_member contains a QAPISchemaEnumType
` [PATCH v3 46/47] qapi/visit.py: remove unused parameters from gen_visit_object
` [PATCH v3 47/47] qapi/visit.py: add type hint annotations

[PATCH QEMU v25 00/17] Add migration support for VFIO devices
 2020-09-24 22:49 UTC  (3+ messages)
` [PATCH v26 03/17] vfio: Add save and load functions for VFIO PCI devices

[PATCH 00/16] hw/block/nvme: zoned namespace command set
 2020-09-24 22:43 UTC  (19+ messages)
` [PATCH 01/16] hw/block/nvme: add nsid to get/setfeat trace events
` [PATCH 02/16] hw/block/nvme: add trace event for requests with non-zero status code
` [PATCH 03/16] hw/block/nvme: make lba data size configurable
` [PATCH 04/16] hw/block/nvme: reject io commands if only admin command set selected
` [PATCH 05/16] hw/block/nvme: consolidate read, write and write zeroes
` [PATCH 06/16] hw/block/nvme: add support for dulbe and block utilization tracking
` [PATCH 07/16] hw/block/nvme: add commands supported and effects log page
` [PATCH 08/16] hw/block/nvme: support namespace types
` [PATCH 09/16] hw/block/nvme: add basic read/write for zoned namespaces
` [PATCH 10/16] hw/block/nvme: add the zone management receive command
` [PATCH 11/16] hw/block/nvme: add the zone management send command
` [PATCH 12/16] hw/block/nvme: add the zone append command
` [PATCH 13/16] hw/block/nvme: track and enforce zone resources
` [PATCH 14/16] hw/block/nvme: allow open to close transitions by controller
` [PATCH 15/16] hw/block/nvme: support zone active excursions
` [PATCH 16/16] hw/block/nvme: support reset/finish recommended limits

[PATCH 0/3] Hyper-V Dynamic Memory Protocol driver (hv-balloon)
 2020-09-24 22:37 UTC  (7+ messages)

[PATCH] target/i386: add -cpu,lbr=true support to enable guest LBR
 2020-09-24 22:05 UTC  (2+ messages)

[PATCH V1 00/32] Live Update
 2020-09-24 21:54 UTC  (44+ messages)
` [PATCH V1 01/32] savevm: add vmstate handler iterators
` [PATCH V1 04/32] savevm: HMP Command for cprsave
` [PATCH V1 05/32] savevm: QMP command for cprload
` [PATCH V1 08/32] savevm: HMP command for cprinfo
` [PATCH V1 09/32] savevm: prevent cprsave if memory is volatile
` [PATCH V1 11/32] cpu: disable ticks when suspended
` [PATCH V1 12/32] vl: pause option
` [PATCH V1 13/32] gdbstub: gdb support for suspended state
` [PATCH V1 14/32] savevm: VMS_RESTART and cprsave restart
` [PATCH V1 15/32] vl: QEMU_START_FREEZE env var
` [PATCH V1 17/32] util: env var helpers
` [PATCH V1 22/32] char: qio_channel_socket_accept reuse fd
` [PATCH V1 32/32] vfio-pci: improved tracing

SEV guest debugging support for Qemu
 2020-09-24 21:52 UTC  (5+ messages)

[PATCH v7 0/5] fix & merge block_status_above and is_allocated_above
 2020-09-24 21:45 UTC  (10+ messages)
` [PATCH v7 1/5] block/io: fix bdrv_co_block_status_above
` [PATCH v7 2/5] block/io: bdrv_common_block_status_above: support include_base
` [PATCH v7 3/5] block/io: bdrv_common_block_status_above: support bs == base
` [PATCH v7 4/5] block/io: fix bdrv_is_allocated_above
` [PATCH v7 5/5] iotests: add commit top->base cases to 274

About TODO in nvme emulation
 2020-09-24 21:28 UTC  (3+ messages)

[PATCH] configure: Fix build dependencies with vhost-vdpa
 2020-09-24 21:00 UTC 

[PATCH v4 00/14] hw/block/nvme: Support Namespace Types and Zoned Namespace Command Set
 2020-09-24 21:07 UTC  (7+ messages)
` [PATCH v4 06/14] hw/block/nvme: Add support for active/inactive namespaces

[PATCH v9 0/7] coroutines: generate wrapper code
 2020-09-24 20:32 UTC  (11+ messages)
` [PATCH v9 1/7] block: return error-code from bdrv_invalidate_cache
` [PATCH v9 2/7] block/io: refactor coroutine wrappers
` [PATCH v9 3/7] block: declare some coroutine functions in block/coroutines.h
` [PATCH v9 4/7] scripts: add block-coroutine-wrapper.py
` [PATCH v9 5/7] block: generate coroutine-wrapper code
` [PATCH v9 6/7] block: drop bdrv_prwv
` [PATCH v9 7/7] block/io: refactor save/load vmstate

[PATCH v2 0/6] pseries NUMA distance calculation
 2020-09-24 19:50 UTC  (7+ messages)
` [PATCH v2 1/6] spapr: add spapr_machine_using_legacy_numa() helper
` [PATCH v2 2/6] spapr_numa: forbid asymmetrical NUMA setups
` [PATCH v2 3/6] spapr_numa: translate regular NUMA distance to PAPR distance
` [PATCH v2 4/6] spapr_numa: change reference-points and maxdomain settings
` [PATCH v2 5/6] spapr_numa: consider user input when defining associativity
` [PATCH v2 6/6] specs/ppc-spapr-numa: update with new NUMA support

[PATCH 0/4] qemu/bswap: Use compiler __builtin_bswap()
 2020-09-24 19:33 UTC  (13+ messages)
` [PATCH 1/4] qemu/bswap: Remove unused qemu_bswap_len()
` [PATCH 2/4] qemu/bswap: Replace bswapXX() by compiler __builtin_bswap()
` [PATCH 3/4] qemu/bswap: Replace bswapXXs() "
` [PATCH 4/4] qemu/bswap: Remove <byteswap.h> dependency

[PATCH PROTOTYPE 0/6] virtio-mem: vfio support
 2020-09-24 19:30 UTC  (4+ messages)
` [PATCH PROTOTYPE 3/6] vfio: Implement support for sparse RAM memory regions
` [PATCH PROTOTYPE 4/6] memory: Extend ram_block_discard_(require|disable) by two discard types

[PATCH v2] target/i386: always create kvmclock device
 2020-09-24 19:01 UTC  (2+ messages)

[RFC PATCH v3 00/34] Hexagon patch series
 2020-09-24 19:04 UTC  (18+ messages)
` [RFC PATCH v3 30/34] Hexagon (target/hexagon) TCG for instructions with multiple definitions

[PATCH v8 0/7] coroutines: generate wrapper code
 2020-09-24 18:52 UTC  (7+ messages)
` [PATCH v8 4/7] scripts: add block-coroutine-wrapper.py

[RFC DOCUMENT 00/12] kubevirt-and-kvm: Add documents
 2020-09-24 18:31 UTC  (3+ messages)

[PATCH v5 00/20] Convert QAPI doc comments to generate rST instead of texinfo
 2020-09-24 18:14 UTC  (8+ messages)
` [PATCH v5 09/20] docs/sphinx: Add new qapi-doc Sphinx extension
` [PATCH v5 14/20] scripts/qapi: Remove texinfo generation support

[PATCH v8 0/7] Apply COR-filter to the block-stream permanently
 2020-09-24 17:49 UTC  (11+ messages)
` [PATCH v8 2/7] copy-on-read: add filter append/drop functions

[PULL 0/9] Audio 20200923 patches
 2020-09-24 17:48 UTC  (2+ messages)

[PATCH 0/9] Audio fixes and improvements
 2020-09-24 17:42 UTC  (4+ messages)
` [PATCH 8/9] audio: restore mixing-engine playback buffer size

qtest with multiple driver instances
 2020-09-24 17:39 UTC  (4+ messages)

[PATCH v6 00/15] preallocate filter
 2020-09-24 17:36 UTC  (6+ messages)
` [PATCH v6 08/15] block: introduce "
` [PATCH v6 09/15] qemu-io: add preallocate mode parameter for truncate command

[PATCH] docs: add 'io_uring' option to 'aio' param in qemu-options.hx
 2020-09-24 17:28 UTC  (3+ messages)

[PATCH v2 00/31] block/export: Add infrastructure and QAPI for block exports
 2020-09-24 17:21 UTC  (2+ messages)

[PATCH v9 00/20] Initial support for multi-process Qemu
 2020-09-24 17:20 UTC  (7+ messages)
` [PATCH v9 07/20] multi-process: define transmission functions in remote
` [PATCH v9 08/20] multi-process: Initialize message handler in remote device

[PATCH] numa: hmat: require parent cache description before the next level one
 2020-09-24 16:50 UTC  (2+ messages)

[PATCH v6 0/5] fix & merge block_status_above and is_allocated_above
 2020-09-24 16:24 UTC  (7+ messages)
` [PATCH v6 1/5] block/io: fix bdrv_co_block_status_above
` [PATCH v6 4/5] block/io: fix bdrv_is_allocated_above
` [PATCH v6 5/5] iotests: add commit top->base cases to 274

[PATCH 00/37] qapi: static typing conversion, pt1
 2020-09-24 16:31 UTC  (8+ messages)
` [PATCH 14/37] qapi/common.py: Move comments into docstrings

[RFC PATCH] scripts/qemu-version.sh: Always describe tag version
 2020-09-24 16:35 UTC 

[PULL 00/11] machine + QOM queue, 2020-09-22
 2020-09-24 16:22 UTC  (2+ messages)


This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).