All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-01-26 10:19 Stefan Hajnoczi
  2017-01-26 10:19 ` [Qemu-devel] [PULL 1/1] aio-posix: honor is_external in AioContext polling Stefan Hajnoczi
  2017-01-27 13:30 ` [Qemu-devel] [PULL 0/1] Block patches Peter Maydell
  0 siblings, 2 replies; 36+ messages in thread
From: Stefan Hajnoczi @ 2017-01-26 10:19 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit c7f1cf01b8245762ca5864e835d84f6677ae8b1f:

  Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2017-01-25 17:54:14 +0000)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 59c9f437c59a4bf0594ed300d28fb24c645963a5:

  aio-posix: honor is_external in AioContext polling (2017-01-26 10:02:33 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Stefan Hajnoczi (1):
  aio-posix: honor is_external in AioContext polling

 aio-posix.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

-- 
2.9.3

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 1/1] aio-posix: honor is_external in AioContext polling
  2017-01-26 10:19 [Qemu-devel] [PULL 0/1] Block patches Stefan Hajnoczi
@ 2017-01-26 10:19 ` Stefan Hajnoczi
  2017-01-27 13:30 ` [Qemu-devel] [PULL 0/1] Block patches Peter Maydell
  1 sibling, 0 replies; 36+ messages in thread
From: Stefan Hajnoczi @ 2017-01-26 10:19 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

AioHandlers marked ->is_external must be skipped when aio_node_check()
fails.  bdrv_drained_begin() needs this to prevent dataplane from
submitting new I/O requests while another thread accesses the device and
relies on it being quiesced.

This patch fixes the following segfault:

  Program terminated with signal SIGSEGV, Segmentation fault.
  #0  0x00005577f6127dad in bdrv_io_plug (bs=0x5577f7ae52f0) at qemu/block/io.c:2650
  2650            bdrv_io_plug(child->bs);
  [Current thread is 1 (Thread 0x7ff5c4bd1c80 (LWP 10917))]
  (gdb) bt
  #0  0x00005577f6127dad in bdrv_io_plug (bs=0x5577f7ae52f0) at qemu/block/io.c:2650
  #1  0x00005577f6114363 in blk_io_plug (blk=0x5577f7b8ba20) at qemu/block/block-backend.c:1561
  #2  0x00005577f5d4091d in virtio_blk_handle_vq (s=0x5577f9ada030, vq=0x5577f9b3d2a0) at qemu/hw/block/virtio-blk.c:589
  #3  0x00005577f5d4240d in virtio_blk_data_plane_handle_output (vdev=0x5577f9ada030, vq=0x5577f9b3d2a0) at qemu/hw/block/dataplane/virtio-blk.c:158
  #4  0x00005577f5d88acd in virtio_queue_notify_aio_vq (vq=0x5577f9b3d2a0) at qemu/hw/virtio/virtio.c:1304
  #5  0x00005577f5d8aaaf in virtio_queue_host_notifier_aio_poll (opaque=0x5577f9b3d308) at qemu/hw/virtio/virtio.c:2134
  #6  0x00005577f60ca077 in run_poll_handlers_once (ctx=0x5577f79ddbb0) at qemu/aio-posix.c:493
  #7  0x00005577f60ca268 in try_poll_mode (ctx=0x5577f79ddbb0, blocking=true) at qemu/aio-posix.c:569
  #8  0x00005577f60ca331 in aio_poll (ctx=0x5577f79ddbb0, blocking=true) at qemu/aio-posix.c:601
  #9  0x00005577f612722a in bdrv_flush (bs=0x5577f7c20970) at qemu/block/io.c:2403
  #10 0x00005577f60c1b2d in bdrv_close (bs=0x5577f7c20970) at qemu/block.c:2322
  #11 0x00005577f60c20e7 in bdrv_delete (bs=0x5577f7c20970) at qemu/block.c:2465
  #12 0x00005577f60c3ecf in bdrv_unref (bs=0x5577f7c20970) at qemu/block.c:3425
  #13 0x00005577f60bf951 in bdrv_root_unref_child (child=0x5577f7a2de70) at qemu/block.c:1361
  #14 0x00005577f6112162 in blk_remove_bs (blk=0x5577f7b8ba20) at qemu/block/block-backend.c:491
  #15 0x00005577f6111b1b in blk_remove_all_bs () at qemu/block/block-backend.c:245
  #16 0x00005577f60c1db6 in bdrv_close_all () at qemu/block.c:2382
  #17 0x00005577f5e60cca in main (argc=20, argv=0x7ffea6eb8398, envp=0x7ffea6eb8440) at qemu/vl.c:4684

The key thing is that bdrv_close() uses bdrv_drained_begin() and
virtio_queue_host_notifier_aio_poll() must not be called.

Thanks to Fam Zheng <famz@redhat.com> for identifying the root cause of
this crash.

Reported-by: Alberto Garcia <berto@igalia.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Reviewed-by: Fam Zheng <famz@redhat.com>
Tested-by: Alberto Garcia <berto@igalia.com>
Message-id: 20170124095350.16679-1-stefanha@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 aio-posix.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/aio-posix.c b/aio-posix.c
index 9453d83..a8d7090 100644
--- a/aio-posix.c
+++ b/aio-posix.c
@@ -508,7 +508,8 @@ static bool run_poll_handlers_once(AioContext *ctx)
 
     QLIST_FOREACH_RCU(node, &ctx->aio_handlers, node) {
         if (!node->deleted && node->io_poll &&
-                node->io_poll(node->opaque)) {
+            aio_node_check(ctx, node->is_external) &&
+            node->io_poll(node->opaque)) {
             progress = true;
         }
 
-- 
2.9.3

^ permalink raw reply related	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-01-26 10:19 [Qemu-devel] [PULL 0/1] Block patches Stefan Hajnoczi
  2017-01-26 10:19 ` [Qemu-devel] [PULL 1/1] aio-posix: honor is_external in AioContext polling Stefan Hajnoczi
@ 2017-01-27 13:30 ` Peter Maydell
  1 sibling, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2017-01-27 13:30 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On 26 January 2017 at 10:19, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit c7f1cf01b8245762ca5864e835d84f6677ae8b1f:
>
>   Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2017-01-25 17:54:14 +0000)
>
> are available in the git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to 59c9f437c59a4bf0594ed300d28fb24c645963a5:
>
>   aio-posix: honor is_external in AioContext polling (2017-01-26 10:02:33 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Stefan Hajnoczi (1):
>   aio-posix: honor is_external in AioContext polling
>
>  aio-posix.c | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
>
> --

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2019-09-11 14:36 Stefan Hajnoczi
@ 2019-09-13 12:43 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2019-09-13 12:43 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: Kevin Wolf, QEMU Developers, Qemu-block, Max Reitz

On Wed, 11 Sep 2019 at 15:36, Stefan Hajnoczi <stefanha@redhat.com> wrote:
>
> The following changes since commit cc6613e244e86c66f83467eab5284825d7057cea:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2019-09-03 11:06:09 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to ebb6ff25cd888a52a64a9adc3692541c6d1d9a42:
>
>   virtio-blk: Cancel the pending BH when the dataplane is reset (2019-09-03 16:11:18 +0100)
>
> ----------------------------------------------------------------
> Pull request
>
> ----------------------------------------------------------------
>
> Philippe Mathieu-Daudé (1):
>   virtio-blk: Cancel the pending BH when the dataplane is reset
>
>  hw/block/dataplane/virtio-blk.c | 3 +++
>  1 file changed, 3 insertions(+)


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.2
for any user-visible changes.

-- PMM


^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2019-09-11 14:36 Stefan Hajnoczi
  2019-09-13 12:43 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2019-09-11 14:36 UTC (permalink / raw)
  To: qemu-devel
  Cc: Kevin Wolf, Peter Maydell, Stefan Hajnoczi, qemu-block, Max Reitz

The following changes since commit cc6613e244e86c66f83467eab5284825d7057cea:

  Merge remote-tracking branch 'remotes/stefanha/tags/tracing-pull-request' into staging (2019-09-03 11:06:09 +0100)

are available in the Git repository at:

  https://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to ebb6ff25cd888a52a64a9adc3692541c6d1d9a42:

  virtio-blk: Cancel the pending BH when the dataplane is reset (2019-09-03 16:11:18 +0100)

----------------------------------------------------------------
Pull request

----------------------------------------------------------------

Philippe Mathieu-Daudé (1):
  virtio-blk: Cancel the pending BH when the dataplane is reset

 hw/block/dataplane/virtio-blk.c | 3 +++
 1 file changed, 3 insertions(+)

-- 
2.21.0



^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2019-06-28 13:13 Stefan Hajnoczi
@ 2019-07-02  9:59 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2019-07-02  9:59 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers, Qemu-block

On Fri, 28 Jun 2019 at 14:13, Stefan Hajnoczi <stefanha@redhat.com> wrote:
>
> The following changes since commit 474f3938d79ab36b9231c9ad3b5a9314c2aeacde:
>
>   Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-21-2019' into staging (2019-06-21 15:40:50 +0100)
>
> are available in the Git repository at:
>
>   https://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to 6c11dda922915aaaa032db4462294e8df45f7441:
>
>   build: use $(DESTDIR)x instead of $(DESTDIR)/x (2019-06-28 14:12:14 +0100)
>
> ----------------------------------------------------------------
> Pull request
>
> No user-visible changes.
>
> ----------------------------------------------------------------
>
> Stefan Hajnoczi (1):
>   build: use $(DESTDIR)x instead of $(DESTDIR)/x
>
>  Makefile | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
>


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.1
for any user-visible changes.

-- PMM


^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2019-06-28 13:13 Stefan Hajnoczi
  2019-07-02  9:59 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2019-06-28 13:13 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi, qemu-block

The following changes since commit 474f3938d79ab36b9231c9ad3b5a9314c2aeacde:

  Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-21-2019' into staging (2019-06-21 15:40:50 +0100)

are available in the Git repository at:

  https://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 6c11dda922915aaaa032db4462294e8df45f7441:

  build: use $(DESTDIR)x instead of $(DESTDIR)/x (2019-06-28 14:12:14 +0100)

----------------------------------------------------------------
Pull request

No user-visible changes.

----------------------------------------------------------------

Stefan Hajnoczi (1):
  build: use $(DESTDIR)x instead of $(DESTDIR)/x

 Makefile | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

-- 
2.21.0



^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2019-02-14  4:33 Stefan Hajnoczi
@ 2019-02-14 17:41 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2019-02-14 17:41 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: QEMU Developers, Max Reitz, Kevin Wolf, Qemu-block, Michael S. Tsirkin

On Thu, 14 Feb 2019 at 04:33, Stefan Hajnoczi <stefanha@redhat.com> wrote:
>
> The following changes since commit 0b5e750bea635b167eb03d86c3d9a09bbd43bc06:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2019-02-12 10:53:37 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to 42824b4d16da56a50ff4027f6cd22378e0e2666e:
>
>   virtio-blk: set correct config size for the host driver (2019-02-13 16:18:17 +0800)
>
> ----------------------------------------------------------------
> Pull request
>
> Fix a virtio-blk migration regression.
>

Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/4.0
for any user-visible changes.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2019-02-14  4:33 Stefan Hajnoczi
  2019-02-14 17:41 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2019-02-14  4:33 UTC (permalink / raw)
  To: qemu-devel
  Cc: Max Reitz, Peter Maydell, Kevin Wolf, Stefan Hajnoczi,
	qemu-block, Michael S. Tsirkin

The following changes since commit 0b5e750bea635b167eb03d86c3d9a09bbd43bc06:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2019-02-12 10:53:37 +0000)

are available in the Git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 42824b4d16da56a50ff4027f6cd22378e0e2666e:

  virtio-blk: set correct config size for the host driver (2019-02-13 16:18:17 +0800)

----------------------------------------------------------------
Pull request

Fix a virtio-blk migration regression.

----------------------------------------------------------------

Changpeng Liu (1):
  virtio-blk: set correct config size for the host driver

 hw/block/virtio-blk.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

-- 
2.20.1

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2018-06-13 14:53 Jeff Cody
@ 2018-06-14 13:04 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2018-06-14 13:04 UTC (permalink / raw)
  To: Jeff Cody; +Cc: Qemu-block, Eric Blake, QEMU Developers

On 13 June 2018 at 15:53, Jeff Cody <jcody@redhat.com> wrote:
> The following changes since commit 2ab09bf2f9f55b9fb8d2de6eb2ba2a8570e268e2:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/usb-20180612-pull-request' into staging (2018-06-12 15:34:34 +0100)
>
> are available in the git repository at:
>
>   git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request
>
> for you to fetch changes up to b61acdecbf19c3c5a327baec1e8e4c06d0da68b7:
>
>   block: Ignore generated job QAPI files (2018-06-13 10:51:49 -0400)
>
> ----------------------------------------------------------------
> Block patch for .gitignore
> ----------------------------------------------------------------
>
> Eric Blake (1):
>   block: Ignore generated job QAPI files
>
>  .gitignore | 4 ++++
>  1 file changed, 4 insertions(+)
>

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2018-06-13 14:53 Jeff Cody
  2018-06-14 13:04 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Jeff Cody @ 2018-06-13 14:53 UTC (permalink / raw)
  To: qemu-block; +Cc: peter.maydell, jcody, eblake, qemu-devel

The following changes since commit 2ab09bf2f9f55b9fb8d2de6eb2ba2a8570e268e2:

  Merge remote-tracking branch 'remotes/kraxel/tags/usb-20180612-pull-request' into staging (2018-06-12 15:34:34 +0100)

are available in the git repository at:

  git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request

for you to fetch changes up to b61acdecbf19c3c5a327baec1e8e4c06d0da68b7:

  block: Ignore generated job QAPI files (2018-06-13 10:51:49 -0400)

----------------------------------------------------------------
Block patch for .gitignore
----------------------------------------------------------------

Eric Blake (1):
  block: Ignore generated job QAPI files

 .gitignore | 4 ++++
 1 file changed, 4 insertions(+)

-- 
2.13.6

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2018-03-13 12:29 Jeff Cody
@ 2018-03-15 10:00 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2018-03-15 10:00 UTC (permalink / raw)
  To: Jeff Cody; +Cc: Qemu-block, QEMU Developers

On 13 March 2018 at 12:29, Jeff Cody <jcody@redhat.com> wrote:
> The following changes since commit 834eddf22ec762839b724538c7be1d1d3b2d9d3b:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2018-03-13 10:49:02 +0000)
>
> are available in the git repository at:
>
>   git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request
>
> for you to fetch changes up to 44acd46f60ce6f16d369cd443e77949deca56a2c:
>
>   block: include original filename when reporting invalid URIs (2018-03-13 08:06:55 -0400)
>
> ----------------------------------------------------------------
> Block patch
> ----------------------------------------------------------------
>
> Daniel P. Berrangé (1):
>   block: include original filename when reporting invalid URIs
>
>  block/gluster.c  | 2 +-
>  block/sheepdog.c | 2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
>

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2018-03-13 12:29 Jeff Cody
  2018-03-15 10:00 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Jeff Cody @ 2018-03-13 12:29 UTC (permalink / raw)
  To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel

The following changes since commit 834eddf22ec762839b724538c7be1d1d3b2d9d3b:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2018-03-13 10:49:02 +0000)

are available in the git repository at:

  git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request

for you to fetch changes up to 44acd46f60ce6f16d369cd443e77949deca56a2c:

  block: include original filename when reporting invalid URIs (2018-03-13 08:06:55 -0400)

----------------------------------------------------------------
Block patch
----------------------------------------------------------------

Daniel P. Berrangé (1):
  block: include original filename when reporting invalid URIs

 block/gluster.c  | 2 +-
 block/sheepdog.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

-- 
2.13.6

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2018-03-12 16:01 Stefan Hajnoczi
@ 2018-03-13 11:42 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2018-03-13 11:42 UTC (permalink / raw)
  To: Stefan Hajnoczi
  Cc: QEMU Developers, Paolo Bonzini, Qemu-block, Richard Henderson,
	Peter Crosthwaite, Fam Zheng, Michael S. Tsirkin, Max Reitz,
	Kevin Wolf

On 12 March 2018 at 16:01, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit e4ae62b802cec437f877f2cadc4ef059cc0eca76:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2018-03-09 17:28:16 +0000)
>
> are available in the Git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to 7376eda7c2e0451e819e81bd05fabc56a9deb946:
>
>   block: make BDRV_POLL_WHILE() re-entrancy safe (2018-03-12 11:07:37 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Stefan Hajnoczi (1):
>   block: make BDRV_POLL_WHILE() re-entrancy safe
>
>  include/block/aio-wait.h | 61 ++++++++++++++++++++++++------------------------
>  util/aio-wait.c          |  2 +-
>  2 files changed, 31 insertions(+), 32 deletions(-)

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2018-03-12 16:01 Stefan Hajnoczi
  2018-03-13 11:42 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2018-03-12 16:01 UTC (permalink / raw)
  To: qemu-devel
  Cc: Paolo Bonzini, qemu-block, Richard Henderson, Peter Crosthwaite,
	Fam Zheng, Peter Maydell, Michael S. Tsirkin, Stefan Hajnoczi,
	Max Reitz, Kevin Wolf

The following changes since commit e4ae62b802cec437f877f2cadc4ef059cc0eca76:

  Merge remote-tracking branch 'remotes/stefanha/tags/block-pull-request' into staging (2018-03-09 17:28:16 +0000)

are available in the Git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 7376eda7c2e0451e819e81bd05fabc56a9deb946:

  block: make BDRV_POLL_WHILE() re-entrancy safe (2018-03-12 11:07:37 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Stefan Hajnoczi (1):
  block: make BDRV_POLL_WHILE() re-entrancy safe

 include/block/aio-wait.h | 61 ++++++++++++++++++++++++------------------------
 util/aio-wait.c          |  2 +-
 2 files changed, 31 insertions(+), 32 deletions(-)

-- 
2.14.3

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-11-06 11:20 Stefan Hajnoczi
@ 2017-11-06 12:07 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2017-11-06 12:07 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On 6 November 2017 at 11:20, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit b33afc415622e5eb26e0f14fd27eb86e32a5472e:
>
>   Merge remote-tracking branch 'remotes/stsquad/tags/pull-ci-updates-for-softfreeze-021117-2' into staging (2017-11-03 10:08:34 +0000)
>
> are available in the git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to ef9115dd7c82a196b18cac46784724bdebf01fbc:
>
>   aio-posix: drop QEMU_AIO_POLL_MAX_NS env var (2017-11-06 11:04:38 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-11-06 11:20 Stefan Hajnoczi
  2017-11-06 12:07 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2017-11-06 11:20 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit b33afc415622e5eb26e0f14fd27eb86e32a5472e:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-ci-updates-for-softfreeze-021117-2' into staging (2017-11-03 10:08:34 +0000)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to ef9115dd7c82a196b18cac46784724bdebf01fbc:

  aio-posix: drop QEMU_AIO_POLL_MAX_NS env var (2017-11-06 11:04:38 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Stefan Hajnoczi (1):
  aio-posix: drop QEMU_AIO_POLL_MAX_NS env var

 util/aio-posix.c | 7 -------
 1 file changed, 7 deletions(-)

-- 
2.13.6

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-10-20 12:02 Stefan Hajnoczi
@ 2017-10-20 16:36 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2017-10-20 16:36 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On 20 October 2017 at 13:02, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 063833a6ec2a6747e27c5f9866bb44c7e8de1265:
>
>   Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-signed' into staging (2017-10-19 18:42:51 +0100)
>
> are available in the git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to e947d47da0b16e80d237c510e9d2e80799578c7f:
>
>   oslib-posix: Fix compiler warning and some data types (2017-10-20 11:16:27 +0200)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Stefan Weil (1):
>   oslib-posix: Fix compiler warning and some data types
>
>  util/oslib-posix.c | 15 ++++++++-------
>  1 file changed, 8 insertions(+), 7 deletions(-)

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-10-20 12:02 Stefan Hajnoczi
  2017-10-20 16:36 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2017-10-20 12:02 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 063833a6ec2a6747e27c5f9866bb44c7e8de1265:

  Merge remote-tracking branch 'remotes/mcayland/tags/qemu-sparc-signed' into staging (2017-10-19 18:42:51 +0100)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to e947d47da0b16e80d237c510e9d2e80799578c7f:

  oslib-posix: Fix compiler warning and some data types (2017-10-20 11:16:27 +0200)

----------------------------------------------------------------

----------------------------------------------------------------

Stefan Weil (1):
  oslib-posix: Fix compiler warning and some data types

 util/oslib-posix.c | 15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

-- 
2.13.6

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-06-09 12:43 Jeff Cody
@ 2017-06-13 12:51 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2017-06-13 12:51 UTC (permalink / raw)
  To: Jeff Cody; +Cc: Qemu-block, QEMU Developers, Stefan Hajnoczi

On 9 June 2017 at 13:43, Jeff Cody <jcody@redhat.com> wrote:
> The following changes since commit 64175afc695c0672876fbbfc31b299c86d562cb4:
>
>   arm_gicv3: Fix ICC_BPR1 reset value when EL3 not implemented (2017-06-07 17:21:44 +0100)
>
> are available in the git repository at:
>
>   git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request
>
> for you to fetch changes up to 56faeb9bb6872b3f926b3b3e0452a70beea10af2:
>
>   block/gluster.c: Handle qdict_array_entries() failure (2017-06-09 08:41:29 -0400)
>
> ----------------------------------------------------------------
> Gluster patch
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-06-09 12:43 Jeff Cody
  2017-06-13 12:51 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Jeff Cody @ 2017-06-09 12:43 UTC (permalink / raw)
  To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel, stefanha

The following changes since commit 64175afc695c0672876fbbfc31b299c86d562cb4:

  arm_gicv3: Fix ICC_BPR1 reset value when EL3 not implemented (2017-06-07 17:21:44 +0100)

are available in the git repository at:

  git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request

for you to fetch changes up to 56faeb9bb6872b3f926b3b3e0452a70beea10af2:

  block/gluster.c: Handle qdict_array_entries() failure (2017-06-09 08:41:29 -0400)

----------------------------------------------------------------
Gluster patch
----------------------------------------------------------------

Peter Maydell (1):
  block/gluster.c: Handle qdict_array_entries() failure

 block/gluster.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

-- 
2.9.3

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-06-02 15:33 Jeff Cody
@ 2017-06-02 16:46 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2017-06-02 16:46 UTC (permalink / raw)
  To: Jeff Cody; +Cc: Qemu-block, QEMU Developers, Stefan Hajnoczi

On 2 June 2017 at 16:33, Jeff Cody <jcody@redhat.com> wrote:
> The following changes since commit d47a851caeda96d5979bf48d4bae6a87784ad91d:
>
>   Merge remote-tracking branch 'remotes/juanquintela/tags/migration/20170601' into staging (2017-06-02 14:07:53 +0100)
>
> are available in the git repository at:
>
>   git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request
>
> for you to fetch changes up to df3a429ae82c0f45becdfab105617701d75e0f05:
>
>   gluster: add support for PREALLOC_MODE_FALLOC (2017-06-02 10:51:47 -0400)
>
> ----------------------------------------------------------------
> Gluster patch(es)
> ----------------------------------------------------------------
>
> Niels de Vos (1):
>   gluster: add support for PREALLOC_MODE_FALLOC
>
>  block/gluster.c | 78 ++++++++++++++++++++++++++++++---------------------------
>  configure       |  6 +++++
>  2 files changed, 47 insertions(+), 37 deletions(-)
>

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-06-02 15:33 Jeff Cody
  2017-06-02 16:46 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Jeff Cody @ 2017-06-02 15:33 UTC (permalink / raw)
  To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel, stefanha

The following changes since commit d47a851caeda96d5979bf48d4bae6a87784ad91d:

  Merge remote-tracking branch 'remotes/juanquintela/tags/migration/20170601' into staging (2017-06-02 14:07:53 +0100)

are available in the git repository at:

  git://github.com/codyprime/qemu-kvm-jtc.git tags/block-pull-request

for you to fetch changes up to df3a429ae82c0f45becdfab105617701d75e0f05:

  gluster: add support for PREALLOC_MODE_FALLOC (2017-06-02 10:51:47 -0400)

----------------------------------------------------------------
Gluster patch(es)
----------------------------------------------------------------

Niels de Vos (1):
  gluster: add support for PREALLOC_MODE_FALLOC

 block/gluster.c | 78 ++++++++++++++++++++++++++++++---------------------------
 configure       |  6 +++++
 2 files changed, 47 insertions(+), 37 deletions(-)

-- 
2.9.3

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-02-03 14:37 Stefan Hajnoczi
@ 2017-02-03 15:20 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2017-02-03 15:20 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On 3 February 2017 at 14:37, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 4100a344eb3d50d88f9da85cae334afc47aee134:
>
>   Merge remote-tracking branch 'remotes/sstabellini/tags/xen-20170202' into staging (2017-02-03 12:31:40 +0000)
>
> are available in the git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to cdd7abfdba9287a289c404dfdcb02316f9ffee7d:
>
>   iothread: enable AioContext polling by default (2017-02-03 14:23:38 +0000)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-02-03 14:37 Stefan Hajnoczi
  2017-02-03 15:20 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2017-02-03 14:37 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 4100a344eb3d50d88f9da85cae334afc47aee134:

  Merge remote-tracking branch 'remotes/sstabellini/tags/xen-20170202' into staging (2017-02-03 12:31:40 +0000)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to cdd7abfdba9287a289c404dfdcb02316f9ffee7d:

  iothread: enable AioContext polling by default (2017-02-03 14:23:38 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Stefan Hajnoczi (1):
  iothread: enable AioContext polling by default

 iothread.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

-- 
2.9.3

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-02-02 16:07 ` Peter Maydell
@ 2017-02-03 14:33   ` Stefan Hajnoczi
  0 siblings, 0 replies; 36+ messages in thread
From: Stefan Hajnoczi @ 2017-02-03 14:33 UTC (permalink / raw)
  To: Peter Maydell; +Cc: Stefan Hajnoczi, QEMU Developers

[-- Attachment #1: Type: text/plain, Size: 934 bytes --]

On Thu, Feb 02, 2017 at 04:07:16PM +0000, Peter Maydell wrote:
> On 1 February 2017 at 13:24, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> > The following changes since commit a0def594286d9110a6035e02eef558cf3cf5d847:
> >
> >   Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2017-01-30 10:23:20 +0000)
> >
> > are available in the git repository at:
> >
> >   git://github.com/stefanha/qemu.git block-pull-request
> >
> > for you to fetch changes up to 81a9f2cb9336a7e9f50b0729b4c81d287e0015e9:
> >
> >   iothread: enable AioContext polling by default (2017-01-31 17:09:34 +0000)
> 
> git claims not to be able to find "block-pull-request",
> and https://github.com/stefanha/qemu/tags says it was
> pushed 7 days ago with a different commit hash to the
> one quoted here. Forgot to tag? Forgot to push?

I must have messed something up.

NACK

Will send a fresh pull request.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-02-01 13:24 Stefan Hajnoczi
@ 2017-02-02 16:07 ` Peter Maydell
  2017-02-03 14:33   ` Stefan Hajnoczi
  0 siblings, 1 reply; 36+ messages in thread
From: Peter Maydell @ 2017-02-02 16:07 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On 1 February 2017 at 13:24, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit a0def594286d9110a6035e02eef558cf3cf5d847:
>
>   Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2017-01-30 10:23:20 +0000)
>
> are available in the git repository at:
>
>   git://github.com/stefanha/qemu.git block-pull-request
>
> for you to fetch changes up to 81a9f2cb9336a7e9f50b0729b4c81d287e0015e9:
>
>   iothread: enable AioContext polling by default (2017-01-31 17:09:34 +0000)

git claims not to be able to find "block-pull-request",
and https://github.com/stefanha/qemu/tags says it was
pushed 7 days ago with a different commit hash to the
one quoted here. Forgot to tag? Forgot to push?

thanks
-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-02-01 13:24 Stefan Hajnoczi
  2017-02-02 16:07 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2017-02-01 13:24 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit a0def594286d9110a6035e02eef558cf3cf5d847:

  Merge remote-tracking branch 'remotes/bonzini/tags/for-upstream' into staging (2017-01-30 10:23:20 +0000)

are available in the git repository at:

  git://github.com/stefanha/qemu.git block-pull-request

for you to fetch changes up to 81a9f2cb9336a7e9f50b0729b4c81d287e0015e9:

  iothread: enable AioContext polling by default (2017-01-31 17:09:34 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Stefan Hajnoczi (1):
  iothread: enable AioContext polling by default

 iothread.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

-- 
2.9.3

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2016-11-15 15:42 Stefan Hajnoczi
@ 2016-11-15 16:17 ` Stefan Hajnoczi
  0 siblings, 0 replies; 36+ messages in thread
From: Stefan Hajnoczi @ 2016-11-15 16:17 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: qemu-devel, Peter Maydell

[-- Attachment #1: Type: text/plain, Size: 929 bytes --]

On Tue, Nov 15, 2016 at 03:42:35PM +0000, Stefan Hajnoczi wrote:
> The following changes since commit 97e53cf82ca0ffa9abe2def2fabc5fc75b914d90:
> 
>   Merge remote-tracking branch 'jasowang/tags/net-pull-request' into staging (2016-11-15 12:07:53 +0000)
> 
> are available in the git repository at:
> 
>   git://github.com/stefanha/qemu.git tags/block-pull-request
> 
> for you to fetch changes up to baf905e580ab9c8eaf228822c4a7b257493b4998:
> 
>   test-replication: fix leaks (2016-11-15 15:41:00 +0000)
> 
> ----------------------------------------------------------------
> 
> ----------------------------------------------------------------
> 
> Marc-André Lureau (1):
>   test-replication: fix leaks
> 
>  tests/test-replication.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> -- 
> 2.7.4
> 
> 

Thanks, applied to my staging tree:
https://github.com/stefanha/qemu/commits/staging

Stefan

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2016-11-15 15:42 Stefan Hajnoczi
  2016-11-15 16:17 ` Stefan Hajnoczi
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2016-11-15 15:42 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 97e53cf82ca0ffa9abe2def2fabc5fc75b914d90:

  Merge remote-tracking branch 'jasowang/tags/net-pull-request' into staging (2016-11-15 12:07:53 +0000)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to baf905e580ab9c8eaf228822c4a7b257493b4998:

  test-replication: fix leaks (2016-11-15 15:41:00 +0000)

----------------------------------------------------------------

----------------------------------------------------------------

Marc-André Lureau (1):
  test-replication: fix leaks

 tests/test-replication.c | 3 +++
 1 file changed, 3 insertions(+)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2016-08-11 10:35 Stefan Hajnoczi
@ 2016-08-11 12:26 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2016-08-11 12:26 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On 11 August 2016 at 11:35, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit d08306dc42ea599ffcf8aad056fa9c23acfbe230:
>
>   Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2016-08-10 17:14:35 +0100)
>
> are available in the git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to 44713c9e8547f0ff41e3e257f0dd5c17bb497225:
>
>   linux-aio: Handle io_submit() failure gracefully (2016-08-11 09:42:35 +0100)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Kevin Wolf (1):
>   linux-aio: Handle io_submit() failure gracefully

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2016-08-11 10:35 Stefan Hajnoczi
  2016-08-11 12:26 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2016-08-11 10:35 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit d08306dc42ea599ffcf8aad056fa9c23acfbe230:

  Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging (2016-08-10 17:14:35 +0100)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to 44713c9e8547f0ff41e3e257f0dd5c17bb497225:

  linux-aio: Handle io_submit() failure gracefully (2016-08-11 09:42:35 +0100)

----------------------------------------------------------------

----------------------------------------------------------------

Kevin Wolf (1):
  linux-aio: Handle io_submit() failure gracefully

 block/linux-aio.c | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2016-05-17  0:19 Stefan Hajnoczi
@ 2016-05-17 15:48 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2016-05-17 15:48 UTC (permalink / raw)
  To: Stefan Hajnoczi; +Cc: QEMU Developers

On 17 May 2016 at 01:19, Stefan Hajnoczi <stefanha@redhat.com> wrote:
> The following changes since commit 70f87e0f0aa04f764dabaeb3ed71ff195748076a:
>
>   Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20160513-1' into staging (2016-05-13 13:39:38 +0100)
>
> are available in the git repository at:
>
>   git://github.com/stefanha/qemu.git tags/block-pull-request
>
> for you to fetch changes up to de3e15a705cbb4b54b2a749f8d5131c9f1666fb3:
>
>   rfifolock: no need to get thread identifier when nesting (2016-05-16 15:29:44 -0700)
>
> ----------------------------------------------------------------
>
> ----------------------------------------------------------------
>
> Changlong Xie (1):
>   rfifolock: no need to get thread identifier when nesting

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2016-05-17  0:19 Stefan Hajnoczi
  2016-05-17 15:48 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Stefan Hajnoczi @ 2016-05-17  0:19 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Maydell, Stefan Hajnoczi

The following changes since commit 70f87e0f0aa04f764dabaeb3ed71ff195748076a:

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20160513-1' into staging (2016-05-13 13:39:38 +0100)

are available in the git repository at:

  git://github.com/stefanha/qemu.git tags/block-pull-request

for you to fetch changes up to de3e15a705cbb4b54b2a749f8d5131c9f1666fb3:

  rfifolock: no need to get thread identifier when nesting (2016-05-16 15:29:44 -0700)

----------------------------------------------------------------

----------------------------------------------------------------

Changlong Xie (1):
  rfifolock: no need to get thread identifier when nesting

 util/rfifolock.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
2.5.5

^ permalink raw reply	[flat|nested] 36+ messages in thread

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2015-11-11 18:00 Jeff Cody
@ 2015-11-12 10:07 ` Peter Maydell
  0 siblings, 0 replies; 36+ messages in thread
From: Peter Maydell @ 2015-11-12 10:07 UTC (permalink / raw)
  To: Jeff Cody; +Cc: QEMU Developers, Qemu-block

On 11 November 2015 at 18:00, Jeff Cody <jcody@redhat.com> wrote:
> The following changes since commit 3c07587d49458341510360557c849e93e9afaf59:
>
>   Merge remote-tracking branch 'remotes/dgibson/tags/ppc-next-20151111' into staging (2015-11-11 09:34:18 +0000)
>
> are available in the git repository at:
>
>
>   git@github.com:codyprime/qemu-kvm-jtc.git tags/block-pull-request
>
> for you to fetch changes up to c833d1e8f5e95762336a823a35ade65a2d0fe587:
>
>   gluster: allocate GlusterAIOCBs on the stack (2015-11-11 10:45:39 -0500)
>
> ----------------------------------------------------------------
> Block patches
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 36+ messages in thread

* [Qemu-devel] [PULL 0/1] Block patches
@ 2015-11-11 18:00 Jeff Cody
  2015-11-12 10:07 ` Peter Maydell
  0 siblings, 1 reply; 36+ messages in thread
From: Jeff Cody @ 2015-11-11 18:00 UTC (permalink / raw)
  To: qemu-block; +Cc: peter.maydell, jcody, qemu-devel

The following changes since commit 3c07587d49458341510360557c849e93e9afaf59:

  Merge remote-tracking branch 'remotes/dgibson/tags/ppc-next-20151111' into staging (2015-11-11 09:34:18 +0000)

are available in the git repository at:


  git@github.com:codyprime/qemu-kvm-jtc.git tags/block-pull-request

for you to fetch changes up to c833d1e8f5e95762336a823a35ade65a2d0fe587:

  gluster: allocate GlusterAIOCBs on the stack (2015-11-11 10:45:39 -0500)

----------------------------------------------------------------
Block patches
----------------------------------------------------------------

Paolo Bonzini (1):
  gluster: allocate GlusterAIOCBs on the stack

 block/gluster.c | 86 ++++++++++++++++++++++-----------------------------------
 1 file changed, 33 insertions(+), 53 deletions(-)

-- 
1.9.3

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2019-09-13 12:45 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-01-26 10:19 [Qemu-devel] [PULL 0/1] Block patches Stefan Hajnoczi
2017-01-26 10:19 ` [Qemu-devel] [PULL 1/1] aio-posix: honor is_external in AioContext polling Stefan Hajnoczi
2017-01-27 13:30 ` [Qemu-devel] [PULL 0/1] Block patches Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2019-09-11 14:36 Stefan Hajnoczi
2019-09-13 12:43 ` Peter Maydell
2019-06-28 13:13 Stefan Hajnoczi
2019-07-02  9:59 ` Peter Maydell
2019-02-14  4:33 Stefan Hajnoczi
2019-02-14 17:41 ` Peter Maydell
2018-06-13 14:53 Jeff Cody
2018-06-14 13:04 ` Peter Maydell
2018-03-13 12:29 Jeff Cody
2018-03-15 10:00 ` Peter Maydell
2018-03-12 16:01 Stefan Hajnoczi
2018-03-13 11:42 ` Peter Maydell
2017-11-06 11:20 Stefan Hajnoczi
2017-11-06 12:07 ` Peter Maydell
2017-10-20 12:02 Stefan Hajnoczi
2017-10-20 16:36 ` Peter Maydell
2017-06-09 12:43 Jeff Cody
2017-06-13 12:51 ` Peter Maydell
2017-06-02 15:33 Jeff Cody
2017-06-02 16:46 ` Peter Maydell
2017-02-03 14:37 Stefan Hajnoczi
2017-02-03 15:20 ` Peter Maydell
2017-02-01 13:24 Stefan Hajnoczi
2017-02-02 16:07 ` Peter Maydell
2017-02-03 14:33   ` Stefan Hajnoczi
2016-11-15 15:42 Stefan Hajnoczi
2016-11-15 16:17 ` Stefan Hajnoczi
2016-08-11 10:35 Stefan Hajnoczi
2016-08-11 12:26 ` Peter Maydell
2016-05-17  0:19 Stefan Hajnoczi
2016-05-17 15:48 ` Peter Maydell
2015-11-11 18:00 Jeff Cody
2015-11-12 10:07 ` Peter Maydell

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.