All of lore.kernel.org
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-06-02 15:33 Jeff Cody
  2017-06-02 15:33 ` [Qemu-devel] [PULL 1/1] gluster: add support for PREALLOC_MODE_FALLOC Jeff Cody
  2017-06-02 16:46 ` [Qemu-devel] [PULL 0/1] Block patches Peter Maydell
  0 siblings, 2 replies; 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

* [Qemu-devel] [PULL 1/1] gluster: add support for PREALLOC_MODE_FALLOC
  2017-06-02 15:33 [Qemu-devel] [PULL 0/1] Block patches Jeff Cody
@ 2017-06-02 15:33 ` Jeff Cody
  2017-06-02 16:46 ` [Qemu-devel] [PULL 0/1] Block patches Peter Maydell
  1 sibling, 0 replies; 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, Niels de Vos

From: Niels de Vos <ndevos@redhat.com>

Add missing support for "preallocation=falloc" to the Gluster block
driver. This change bases its logic on that of block/file-posix.c and
removed the gluster_supports_zerofill() and qemu_gluster_zerofill()
functions in favour of #ifdef checks in an easy to read
switch-statement.

Both glfs_zerofill() and glfs_fallocate() have been introduced with
GlusterFS 3.5.0 (pkg-config glusterfs-api = 6). A #define for the
availability of glfs_fallocate() has been added to ./configure.

Reported-by: Satheesaran Sundaramoorthi <sasundar@redhat.com>
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Message-id: 20170528063114.28691-1-ndevos@redhat.com
URL: https://bugzilla.redhat.com/1450759
Signed-off-by: Niels de Vos <ndevos@redhat.com>
Signed-off-by: Jeff Cody <jcody@redhat.com>
---
 block/gluster.c | 78 ++++++++++++++++++++++++++++++---------------------------
 configure       |  6 +++++
 2 files changed, 47 insertions(+), 37 deletions(-)

diff --git a/block/gluster.c b/block/gluster.c
index 8ba3bcc..031596a 100644
--- a/block/gluster.c
+++ b/block/gluster.c
@@ -964,29 +964,6 @@ static coroutine_fn int qemu_gluster_co_pwrite_zeroes(BlockDriverState *bs,
     qemu_coroutine_yield();
     return acb.ret;
 }
-
-static inline bool gluster_supports_zerofill(void)
-{
-    return 1;
-}
-
-static inline int qemu_gluster_zerofill(struct glfs_fd *fd, int64_t offset,
-                                        int64_t size)
-{
-    return glfs_zerofill(fd, offset, size);
-}
-
-#else
-static inline bool gluster_supports_zerofill(void)
-{
-    return 0;
-}
-
-static inline int qemu_gluster_zerofill(struct glfs_fd *fd, int64_t offset,
-                                        int64_t size)
-{
-    return 0;
-}
 #endif
 
 static int qemu_gluster_create(const char *filename,
@@ -996,9 +973,10 @@ static int qemu_gluster_create(const char *filename,
     struct glfs *glfs;
     struct glfs_fd *fd;
     int ret = 0;
-    int prealloc = 0;
+    PreallocMode prealloc;
     int64_t total_size = 0;
     char *tmp = NULL;
+    Error *local_err = NULL;
 
     gconf = g_new0(BlockdevOptionsGluster, 1);
     gconf->debug = qemu_opt_get_number_del(opts, GLUSTER_OPT_DEBUG,
@@ -1026,13 +1004,12 @@ static int qemu_gluster_create(const char *filename,
                           BDRV_SECTOR_SIZE);
 
     tmp = qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC);
-    if (!tmp || !strcmp(tmp, "off")) {
-        prealloc = 0;
-    } else if (!strcmp(tmp, "full") && gluster_supports_zerofill()) {
-        prealloc = 1;
-    } else {
-        error_setg(errp, "Invalid preallocation mode: '%s'"
-                         " or GlusterFS doesn't support zerofill API", tmp);
+    prealloc = qapi_enum_parse(PreallocMode_lookup, tmp,
+                               PREALLOC_MODE__MAX, PREALLOC_MODE_OFF,
+                               &local_err);
+    g_free(tmp);
+    if (local_err) {
+        error_propagate(errp, local_err);
         ret = -EINVAL;
         goto out;
     }
@@ -1041,21 +1018,48 @@ static int qemu_gluster_create(const char *filename,
                     O_WRONLY | O_CREAT | O_TRUNC | O_BINARY, S_IRUSR | S_IWUSR);
     if (!fd) {
         ret = -errno;
-    } else {
+        goto out;
+    }
+
+    switch (prealloc) {
+#ifdef CONFIG_GLUSTERFS_FALLOCATE
+    case PREALLOC_MODE_FALLOC:
+        if (glfs_fallocate(fd, 0, 0, total_size)) {
+            error_setg(errp, "Could not preallocate data for the new file");
+            ret = -errno;
+        }
+        break;
+#endif /* CONFIG_GLUSTERFS_FALLOCATE */
+#ifdef CONFIG_GLUSTERFS_ZEROFILL
+    case PREALLOC_MODE_FULL:
         if (!glfs_ftruncate(fd, total_size)) {
-            if (prealloc && qemu_gluster_zerofill(fd, 0, total_size)) {
+            if (glfs_zerofill(fd, 0, total_size)) {
+                error_setg(errp, "Could not zerofill the new file");
                 ret = -errno;
             }
         } else {
+            error_setg(errp, "Could not resize file");
             ret = -errno;
         }
+        break;
+#endif /* CONFIG_GLUSTERFS_ZEROFILL */
+    case PREALLOC_MODE_OFF:
+        if (glfs_ftruncate(fd, total_size) != 0) {
+            ret = -errno;
+            error_setg(errp, "Could not resize file");
+        }
+        break;
+    default:
+        ret = -EINVAL;
+        error_setg(errp, "Unsupported preallocation mode: %s",
+                   PreallocMode_lookup[prealloc]);
+        break;
+    }
 
-        if (glfs_close(fd) != 0) {
-            ret = -errno;
-        }
+    if (glfs_close(fd) != 0) {
+        ret = -errno;
     }
 out:
-    g_free(tmp);
     qapi_free_BlockdevOptionsGluster(gconf);
     glfs_clear_preopened(glfs);
     return ret;
diff --git a/configure b/configure
index 0586ec9..21944ea 100755
--- a/configure
+++ b/configure
@@ -300,6 +300,7 @@ seccomp=""
 glusterfs=""
 glusterfs_xlator_opt="no"
 glusterfs_discard="no"
+glusterfs_fallocate="no"
 glusterfs_zerofill="no"
 gtk=""
 gtkabi=""
@@ -3583,6 +3584,7 @@ if test "$glusterfs" != "no" ; then
       glusterfs_discard="yes"
     fi
     if $pkg_config --atleast-version=6 glusterfs-api; then
+      glusterfs_fallocate="yes"
       glusterfs_zerofill="yes"
     fi
   else
@@ -5757,6 +5759,10 @@ if test "$glusterfs_discard" = "yes" ; then
   echo "CONFIG_GLUSTERFS_DISCARD=y" >> $config_host_mak
 fi
 
+if test "$glusterfs_fallocate" = "yes" ; then
+  echo "CONFIG_GLUSTERFS_FALLOCATE=y" >> $config_host_mak
+fi
+
 if test "$glusterfs_zerofill" = "yes" ; then
   echo "CONFIG_GLUSTERFS_ZEROFILL=y" >> $config_host_mak
 fi
-- 
2.9.3

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

* Re: [Qemu-devel] [PULL 0/1] Block patches
  2017-06-02 15:33 [Qemu-devel] [PULL 0/1] Block patches Jeff Cody
  2017-06-02 15:33 ` [Qemu-devel] [PULL 1/1] gluster: add support for PREALLOC_MODE_FALLOC Jeff Cody
@ 2017-06-02 16:46 ` Peter Maydell
  1 sibling, 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

* 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-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
  2017-01-26 10:19 Stefan Hajnoczi
@ 2017-01-27 13:30 ` Peter Maydell
  0 siblings, 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

* [Qemu-devel] [PULL 0/1] Block patches
@ 2017-01-26 10:19 Stefan Hajnoczi
  2017-01-27 13:30 ` Peter Maydell
  0 siblings, 1 reply; 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

* 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-06-02 15:33 [Qemu-devel] [PULL 0/1] Block patches Jeff Cody
2017-06-02 15:33 ` [Qemu-devel] [PULL 1/1] gluster: add support for PREALLOC_MODE_FALLOC Jeff Cody
2017-06-02 16:46 ` [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-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
2017-01-26 10:19 Stefan Hajnoczi
2017-01-27 13:30 ` Peter Maydell
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.