messages from 2018-08-17 11:46:30 to 2018-08-17 15:51:14 UTC [more...]
[Qemu-devel] [PATCH v2 00/60] json: Fixes, error reporting improvements, cleanups
2018-08-17 15:51 UTC (63+ messages)
` [Qemu-devel] [PATCH v2 01/60] check-qjson: Cover multiple JSON objects in same string
` [Qemu-devel] [PATCH v2 02/60] check-qjson: Cover blank and lexically erroneous input
` [Qemu-devel] [PATCH v2 03/60] check-qjson: Cover whitespace more thoroughly
` [Qemu-devel] [PATCH v2 04/60] qmp-cmd-test: Split off qmp-test
` [Qemu-devel] [PATCH v2 05/60] qmp-test: Cover syntax and lexical errors
` [Qemu-devel] [PATCH v2 06/60] test-qga: Clean up how we test QGA synchronization
` [Qemu-devel] [PATCH v2 07/60] check-qjson: Cover escaped characters more thoroughly, part 1
` [Qemu-devel] [PATCH v2 08/60] check-qjson: Streamline escaped_string()'s test strings
` [Qemu-devel] [PATCH v2 09/60] check-qjson: Cover escaped characters more thoroughly, part 2
` [Qemu-devel] [PATCH v2 10/60] check-qjson: Consolidate partly redundant string tests
` [Qemu-devel] [PATCH v2 11/60] check-qjson: Cover UTF-8 in single quoted strings
` [Qemu-devel] [PATCH v2 12/60] check-qjson: Simplify utf8_string()
` [Qemu-devel] [PATCH v2 13/60] check-qjson: Fix utf8_string() to test all invalid sequences
` [Qemu-devel] [PATCH v2 14/60] check-qjson qmp-test: Cover control characters more thoroughly
` [Qemu-devel] [PATCH v2 15/60] check-qjson: Cover interpolation "
` [Qemu-devel] [PATCH v2 16/60] json: Fix lexer to include the bad character in JSON_ERROR token
` [Qemu-devel] [PATCH v2 17/60] json: Reject unescaped control characters
` [Qemu-devel] [PATCH v2 18/60] json: Revamp lexer documentation
` [Qemu-devel] [PATCH v2 19/60] json: Tighten and simplify qstring_from_escaped_str()'s loop
` [Qemu-devel] [PATCH v2 20/60] check-qjson: Document we expect invalid UTF-8 to be rejected
` [Qemu-devel] [PATCH v2 21/60] json: Reject invalid UTF-8 sequences
` [Qemu-devel] [PATCH v2 22/60] json: Report first rather than last parse error
` [Qemu-devel] [PATCH v2 23/60] json: Leave rejecting invalid UTF-8 to parser
` [Qemu-devel] [PATCH v2 24/60] json: Accept overlong \xC0\x80 as U+0000 ("modified UTF-8")
` [Qemu-devel] [PATCH v2 25/60] json: Leave rejecting invalid escape sequences to parser
` [Qemu-devel] [PATCH v2 26/60] json: Simplify parse_string()
` [Qemu-devel] [PATCH v2 27/60] json: Reject invalid \uXXXX, fix \u0000
` [Qemu-devel] [PATCH v2 28/60] json: Fix \uXXXX for surrogate pairs
` [Qemu-devel] [PATCH v2 29/60] check-qjson: Fix and enable utf8_string()'s disabled part
` [Qemu-devel] [PATCH v2 30/60] json: remove useless return value from lexer/parser
` [Qemu-devel] [PATCH v2 31/60] json-parser: simplify and avoid JSONParserContext allocation
` [Qemu-devel] [PATCH v2 32/60] json: Have lexer call streamer directly
` [Qemu-devel] [PATCH v2 33/60] json: Redesign the callback to consume JSON values
` [Qemu-devel] [PATCH v2 34/60] json: Don't pass null @tokens to json_parser_parse()
` [Qemu-devel] [PATCH v2 35/60] json: Don't create JSON_ERROR tokens that won't be used
` [Qemu-devel] [PATCH v2 36/60] json: Rename token JSON_ESCAPE & friends to JSON_INTERPOL
` [Qemu-devel] [PATCH v2 37/60] json: Treat unwanted interpolation as lexical error
` [Qemu-devel] [PATCH v2 38/60] json: Pass lexical errors and limit violations to callback
` [Qemu-devel] [PATCH v2 39/60] json: Leave rejecting invalid interpolation to parser
` [Qemu-devel] [PATCH v2 40/60] json: Replace %I64d, %I64u by %PRId64, %PRIu64
` [Qemu-devel] [PATCH v2 41/60] json: Nicer recovery from invalid leading zero
` [Qemu-devel] [PATCH v2 42/60] json: Improve names of lexer states related to numbers
` [Qemu-devel] [PATCH v2 43/60] qjson: Fix qobject_from_json() & friends for multiple values
` [Qemu-devel] [PATCH v2 44/60] json: Fix latent parser aborts at end of input
` [Qemu-devel] [PATCH v2 45/60] json: Fix streamer not to ignore trailing unterminated structures
` [Qemu-devel] [PATCH v2 46/60] json: Assert json_parser_parse() consumes all tokens on success
` [Qemu-devel] [PATCH v2 47/60] qjson: Have qobject_from_json() & friends reject empty and blank
` [Qemu-devel] [PATCH v2 48/60] json: Enforce token count and size limits more tightly
` [Qemu-devel] [PATCH v2 49/60] json: Streamline json_message_process_token()
` [Qemu-devel] [PATCH v2 50/60] json: Unbox tokens queue in JSONMessageParser
` [Qemu-devel] [PATCH v2 51/60] json: Eliminate lexer state IN_ERROR and pseudo-token JSON_MIN
` [Qemu-devel] [PATCH v2 52/60] json: Eliminate lexer state IN_WHITESPACE, pseudo-token JSON_SKIP
` [Qemu-devel] [PATCH v2 53/60] json: Make JSONToken opaque outside json-parser.c
` [Qemu-devel] [PATCH v2 54/60] qobject: Drop superfluous includes of qemu-common.h
` [Qemu-devel] [PATCH v2 55/60] json: Clean up headers
` [Qemu-devel] [PATCH v2 56/60] docs/interop/qmp-spec: How to force known good parser state
` [Qemu-devel] [PATCH v2 57/60] tests/drive_del-test: Fix harmless JSON interpolation bug
` [Qemu-devel] [PATCH v2 58/60] json: Keep interpolation state in JSONParserContext
` [Qemu-devel] [PATCH v2 59/60] json: Improve safety of qobject_from_jsonf_nofail() & friends
` [Qemu-devel] [PATCH v2 60/60] json: Support %% in JSON strings when interpolating
[Qemu-devel] [PATCH 00/20] target/arm: sve system mode patches
2018-08-17 15:50 UTC (3+ messages)
` [Qemu-devel] [PATCH 03/20] target/arm: Define ID_AA64ZFR0_EL1
[Qemu-devel] [PATCH v3 0/3] x86: QEMU side support on MSR based features
2018-08-17 15:50 UTC (7+ messages)
` [Qemu-devel] [PATCH v3 1/3] x86: Data structure changes to support "
` [Qemu-devel] [PATCH v3 2/3] kvm: Add support to KVM_GET_MSR_FEATURE_INDEX_LIST and KVM_GET_MSRS system ioctl
` [Qemu-devel] [PATCH v3 3/3] Change other funcitons referring to feature_word_info[]
[Qemu-devel] [PATCH v2 0/3] hw/pci: PCI resource reserve capability
2018-08-17 15:49 UTC (3+ messages)
` [Qemu-devel] [PATCH v2 1/3] hw/pci: factor PCI reserve resources to a separate structure
[Qemu-devel] [PATCH] hw/pci: add pci capability to pci-pci bridge
2018-08-17 15:39 UTC (8+ messages)
[Qemu-devel] Pipe key broken on US keyboards
2018-08-17 15:16 UTC (16+ messages)
[Qemu-devel] [PATCH 0/4 for-3.0?] NBD fixes for unaligned images
2018-08-17 15:11 UTC (11+ messages)
` [Qemu-devel] [PATCH 1/4] block: Add bdrv_get_request_alignment()
` [Qemu-devel] [PATCH 2/4] nbd/server: Advertise actual minimum block size
` [Qemu-devel] [PATCH 4/4] nbd/client: Deal with unaligned size from server
[Qemu-devel] [RFC PATCH 0/6] hw/arm/virt: Introduce cpu topology support
2018-08-17 15:00 UTC (7+ messages)
` [Qemu-devel] [RFC PATCH 1/6] hw/arm/virt: Add virt-3.1 machine type
` [Qemu-devel] [RFC PATCH 2/6] device_tree: add qemu_fdt_add_path
[Qemu-devel] [PATCH v6 00/11] Enable postcopy RDMA live migration
2018-08-17 14:59 UTC (9+ messages)
` [Qemu-devel] [PATCH v6 07/11] migration: poll the cm event while wait RDMA work request completion
` [Qemu-devel] [PATCH v6 09/11] migration: poll the cm event for destination qemu
` [Qemu-devel] [PATCH v6 10/11] migration: remove the unnecessary RDMA_CONTROL_ERROR message
` [Qemu-devel] [PATCH v6 11/11] migration: create a dedicated thread to release rdma resource
[Qemu-devel] [PATCH v5 0/3] add support for VCPU event states
2018-08-17 14:50 UTC (3+ messages)
` [Qemu-devel] [PATCH v5 3/3] target: arm: Add "
[Qemu-devel] [PATCH 00/56] json: Fixes, error reporting improvements, cleanups
2018-08-17 14:35 UTC (7+ messages)
` [Qemu-devel] [PATCH 56/56] docs/interop/qmp-spec: How to force known good parser state
[Qemu-devel] How do you do when write more than 16TB data to qcow2 on ext4?
2018-08-17 14:20 UTC (5+ messages)
[Qemu-devel] [PATCH v9 00/84] Add nanoMIPS support to QEMU
2018-08-17 14:19 UTC (12+ messages)
` [Qemu-devel] [PATCH v9 40/84] target/mips: Fix pre-nanoMIPS MT ASE instructions availability control
` [Qemu-devel] [PATCH v9 47/84] target/mips: Add emulation of DSP ASE for nanoMIPS - part 6
` [Qemu-devel] [PATCH v9 48/84] disas: Add support for microMIPS and nanoMIPS
[Qemu-devel] [PATCH v10 00/65] Add nanoMIPS support to QEMU
2018-08-17 14:03 UTC (66+ messages)
` [Qemu-devel] [PATCH v10 01/65] target/mips: Add preprocessor constants for nanoMIPS
` [Qemu-devel] [PATCH v10 02/65] target/mips: Add nanoMIPS base instruction set opcodes
` [Qemu-devel] [PATCH v10 03/65] target/mips: Add nanoMIPS DSP ASE opcodes
` [Qemu-devel] [PATCH v10 04/65] target/mips: Add placeholder and invocation of decode_nanomips_opc()
` [Qemu-devel] [PATCH v10 05/65] target/mips: Add nanoMIPS decoding and extraction utilities
` [Qemu-devel] [PATCH v10 06/65] target/mips: Add emulation of nanoMIPS 16-bit arithmetic instructions
` [Qemu-devel] [PATCH v10 07/65] target/mips: Add emulation of nanoMIPS 16-bit branch instructions
` [Qemu-devel] [PATCH v10 08/65] target/mips: Add emulation of nanoMIPS 16-bit shift instructions
` [Qemu-devel] [PATCH v10 09/65] target/mips: Add emulation of nanoMIPS 16-bit misc instructions
` [Qemu-devel] [PATCH v10 10/65] target/mips: Add emulation of nanoMIPS 16-bit load and store instructions
` [Qemu-devel] [PATCH v10 11/65] target/mips: Add emulation of nanoMIPS 16-bit logic instructions
` [Qemu-devel] [PATCH v10 12/65] target/mips: Add emulation of nanoMIPS 16-bit save and restore instructions
` [Qemu-devel] [PATCH v10 13/65] target/mips: Add emulation of some common nanoMIPS 32-bit instructions
` [Qemu-devel] [PATCH v10 14/65] target/mips: Add emulation of nanoMIPS instructions MOVE.P and MOVE.PREV
` [Qemu-devel] [PATCH v10 15/65] target/mips: Add emulation of nanoMIPS 48-bit instructions
` [Qemu-devel] [PATCH v10 16/65] target/mips: Add emulation of nanoMIPS FP instructions
` [Qemu-devel] [PATCH v10 17/65] target/mips: Add emulation of misc nanoMIPS instructions (pool32a0)
` [Qemu-devel] [PATCH v10 18/65] target/mips: Add emulation of misc nanoMIPS instructions (pool32axf)
` [Qemu-devel] [PATCH v10 19/65] target/mips: Add emulation of misc nanoMIPS instructions (p_lsx)
` [Qemu-devel] [PATCH v10 20/65] target/mips: Implement emulation of nanoMIPS ROTX instruction
` [Qemu-devel] [PATCH v10 21/65] target/mips: Implement emulation of nanoMIPS EXTW instruction
` [Qemu-devel] [PATCH v10 22/65] target/mips: Add emulation of nanoMIPS 32-bit load and store instructions
` [Qemu-devel] [PATCH v10 23/65] target/mips: Implement emulation of nanoMIPS LLWP/SCWP pair
` [Qemu-devel] [PATCH v10 24/65] target/mips: Add emulation of nanoMIPS 32-bit branch instructions
` [Qemu-devel] [PATCH v10 25/65] target/mips: Fix pre-nanoMIPS MT ASE instructions availability control
` [Qemu-devel] [PATCH v10 26/65] target/mips: Implement MT ASE support for nanoMIPS
` [Qemu-devel] [PATCH v10 27/65] target/mips: Add emulation of DSP ASE for nanoMIPS - part 1
` [Qemu-devel] [PATCH v10 28/65] target/mips: Add emulation of DSP ASE for nanoMIPS - part 2
` [Qemu-devel] [PATCH v10 29/65] target/mips: Add emulation of DSP ASE for nanoMIPS - part 3
` [Qemu-devel] [PATCH v10 30/65] target/mips: Add emulation of DSP ASE for nanoMIPS - part 4
` [Qemu-devel] [PATCH v10 31/65] target/mips: Add emulation of DSP ASE for nanoMIPS - part 5
` [Qemu-devel] [PATCH v10 32/65] target/mips: Add emulation of DSP ASE for nanoMIPS - part 6
` [Qemu-devel] [PATCH v10 33/65] disas: Add support for nanoMIPS platform
` [Qemu-devel] [PATCH v10 34/65] target/mips: Add updating BadInstr and BadInstrX for nanoMIPS
` [Qemu-devel] [PATCH v10 35/65] target/mips: Fix ERET/ERETNC behavior related to ADEL exception
` [Qemu-devel] [PATCH v10 36/65] elf: Add EM_NANOMIPS value as a valid one for e_machine field
` [Qemu-devel] [PATCH v10 37/65] elf: Relax MIPS' elf_check_arch() to accept EM_NANOMIPS too
` [Qemu-devel] [PATCH v10 38/65] elf: On elf loading, treat both EM_MIPS and EM_NANOMIPS as legal for MIPS
` [Qemu-devel] [PATCH v10 39/65] elf: Don't check FCR31_NAN2008 bit for nanoMIPS
` [Qemu-devel] [PATCH v10 40/65] mips_malta: Add basic nanoMIPS boot code for Malta board
` [Qemu-devel] [PATCH v10 41/65] mips_malta: Add setting up GT64120 BARs to the nanoMIPS bootloader
` [Qemu-devel] [PATCH v10 42/65] mips_malta: Fix semihosting argument passing for nanoMIPS bare metal
` [Qemu-devel] [PATCH v10 43/65] target/mips: Add definition of nanoMIPS I7200 CPU
` [Qemu-devel] [PATCH v10 44/65] elf: Add nanoMIPS specific variations in ELF header fields
` [Qemu-devel] [PATCH v10 45/65] linux-user: Add syscall numbers for nanoMIPS
` [Qemu-devel] [PATCH v10 46/65] linux-user: Add target_signal.h header "
` [Qemu-devel] [PATCH v10 47/65] linux-user: Add termbits.h "
` [Qemu-devel] [PATCH v10 48/65] linux-user: Update syscall_defs.h "
` [Qemu-devel] [PATCH v10 49/65] linux-user: Add target_fcntl.h "
` [Qemu-devel] [PATCH v10 50/65] linux-user: Add sockbits.h "
` [Qemu-devel] [PATCH v10 51/65] linux-user: Add target_syscall.h "
` [Qemu-devel] [PATCH v10 52/65] linux-user: Add target_cpu.h "
` [Qemu-devel] [PATCH v10 53/65] linux-user: Add target_structs.h "
` [Qemu-devel] [PATCH v10 54/65] linux-user: Add target_elf.h "
` [Qemu-devel] [PATCH v10 55/65] linux-user: Add signal.c "
` [Qemu-devel] [PATCH v10 56/65] linux-user: Add support for nanoMIPS signal trampoline
` [Qemu-devel] [PATCH v10 57/65] linux-user: Add cpu_loop.c for nanoMIPS
` [Qemu-devel] [PATCH v10 58/65] linux-user: Amend support for sigaction() syscall "
` [Qemu-devel] [PATCH v10 59/65] linux-user: Add support for statx() syscall for all platforms
` [Qemu-devel] [PATCH v10 60/65] linux-user: Add support for nanoMIPS core files
` [Qemu-devel] [PATCH v10 61/65] linux-user: Add nanoMIPS linux user mode configuration support
` [Qemu-devel] [PATCH v10 62/65] linux-user: Add nanoMIPS support in scripts/qemu-binfmt-conf.sh
` [Qemu-devel] [PATCH v10 63/65] gdbstub: Disable handling of nanoMIPS ISA bit in the MIPS gdbstub
` [Qemu-devel] [PATCH v10 64/65] gdbstub: Add XML support for GDB for nanoMIPS
` [Qemu-devel] [PATCH v10 65/65] qemu-doc: Add nanoMIPS-related items
[Qemu-devel] clean/simple Q35 support in libvirt+QEMU for guest OSes that don't support virtio-1.0
2018-08-17 13:59 UTC (7+ messages)
` [Qemu-devel] [libvirt] "
[Qemu-devel] [PATCH 0/4] Fix socket chardev regression
2018-08-17 13:52 UTC (5+ messages)
` [Qemu-devel] [PATCH 1/4] Revert "chardev: tcp: postpone TLS work until machine done"
` [Qemu-devel] [PATCH 2/4] Revert "chardev: tcp: postpone async connection setup"
` [Qemu-devel] [PATCH 3/4] char-socket: update all ioc handlers when changing context
` [Qemu-devel] [PATCH 4/4] test-char: add socket reconnect test
[Qemu-devel] [PATCH 0/4] block nodes graph visualization
2018-08-17 13:47 UTC (5+ messages)
` [Qemu-devel] [PATCH 3/4] scripts/qemu: add render_block_graph method for QEMUMachine
[Qemu-devel] [PATCH] qemu-img.c: increase spacing between commands in documentation
2018-08-17 13:44 UTC (5+ messages)
[Qemu-devel] [PATCH 0/7] Some improvements in z/Arch instructions support
2018-08-17 13:39 UTC (2+ messages)
[Qemu-devel] [PATCH v2 1/2] hw/arm: check fw_cfg return value before using it
2018-08-17 13:37 UTC (3+ messages)
` [Qemu-devel] [PATCH v2 2/2] hw/arm: Add Arm Enterprise machine type
[Qemu-devel] [PATCH 0/3] Drop obsolete memory system request_ptr API
2018-08-17 13:17 UTC (4+ messages)
` [Qemu-devel] [PATCH 3/3] hw/misc: Remove mmio_interface device
[Qemu-devel] [Bug 1787505] [NEW] Solaris host: no network connection, mouse pointer mismatch
2018-08-17 13:05 UTC (3+ messages)
` [Qemu-devel] [Bug 1787505] "
[Qemu-devel] [PATCH correct] checkpatch: allow space in more places before a bracket
2018-08-17 13:09 UTC (2+ messages)
[Qemu-devel] [PATCH 0/7] qcow2 check improvements
2018-08-17 12:22 UTC (8+ messages)
` [Qemu-devel] [PATCH v2 1/7] block/qcow2-refcount: fix check_oflag_copied
` [Qemu-devel] [PATCH v2 2/7] block/qcow2-refcount: avoid eating RAM
` [Qemu-devel] [PATCH v2 3/7] block/qcow2-refcount: check_refcounts_l2: refactor compressed case
` [Qemu-devel] [PATCH v2 4/7] block/qcow2-refcount: check_refcounts_l2: reduce ignored overlaps
` [Qemu-devel] [PATCH v2 5/7] block/qcow2-refcount: check_refcounts_l2: split fix_l2_entry_to_zero
` [Qemu-devel] [PATCH v2 6/7] block/qcow2-refcount: fix out-of-file L1 entries to be zero
` [Qemu-devel] [PATCH v2 7/7] block/qcow2-refcount: fix out-of-file L2 entries to be read-as-zero
[Qemu-devel] what should we do to make it easier for new contributors to get started on QEMU?
2018-08-17 12:11 UTC
[Qemu-devel] [PATCH v3] sdhci: add i.MX SD Stable Clock bit
2018-08-17 12:10 UTC
[Qemu-devel] [PATCH v2] sdhci: add i.MX SD Stable Clock bit
2018-08-17 12:03 UTC
[Qemu-devel] vm-tests images disks filling up?
2018-08-17 11:52 UTC (2+ messages)
[Qemu-devel] [PULL 0/8] x86 queue, 2018-08-16
2018-08-17 11:49 UTC (2+ messages)
page: next (older) | prev (newer) | latest
- recent:[subjects (threaded)|topics (new)|topics (active)]
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).