qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] MAINTAINERS: update block/rbd.c maintainer
@ 2021-05-19 11:25 Ilya Dryomov
  2021-05-21  7:00 ` Stefano Garzarella
  2021-07-02 11:31 ` Kevin Wolf
  0 siblings, 2 replies; 6+ messages in thread
From: Ilya Dryomov @ 2021-05-19 11:25 UTC (permalink / raw)
  To: qemu-block; +Cc: qemu-devel

Jason has moved on from working on RBD and Ceph.  I'm taking over
his role upstream.

Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
---
 MAINTAINERS | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAINTAINERS b/MAINTAINERS
index eab178aeee5e..3e77ac9030fa 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -3042,7 +3042,7 @@ S: Supported
 F: block/vmdk.c
 
 RBD
-M: Jason Dillaman <dillaman@redhat.com>
+M: Ilya Dryomov <idryomov@gmail.com>
 L: qemu-block@nongnu.org
 S: Supported
 F: block/rbd.c
-- 
2.19.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread
* [PATCH] block/rbd: fix type of task->complete
@ 2021-07-07 18:04 Peter Lieven
  2021-07-07 18:04 ` [PATCH] MAINTAINERS: update block/rbd.c maintainer Peter Lieven
  0 siblings, 1 reply; 6+ messages in thread
From: Peter Lieven @ 2021-07-07 18:04 UTC (permalink / raw)
  To: qemu-block
  Cc: kwolf, idryomov, berrange, Peter Lieven, qemu-devel, ct,
	pbonzini, idryomov, mreitz, dillaman

task->complete is a bool not an integer.

Signed-off-by: Peter Lieven <pl@kamp.de>
---
 block/rbd.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/block/rbd.c b/block/rbd.c
index 01a7b94d62..dcf82b15b8 100644
--- a/block/rbd.c
+++ b/block/rbd.c
@@ -1066,7 +1066,7 @@ static int qemu_rbd_resize(BlockDriverState *bs, uint64_t size)
 static void qemu_rbd_finish_bh(void *opaque)
 {
     RBDTask *task = opaque;
-    task->complete = 1;
+    task->complete = true;
     aio_co_wake(task->co);
 }
 
-- 
2.17.1




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

end of thread, other threads:[~2021-07-08 12:08 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-19 11:25 [PATCH] MAINTAINERS: update block/rbd.c maintainer Ilya Dryomov
2021-05-21  7:00 ` Stefano Garzarella
2021-07-02 11:31 ` Kevin Wolf
2021-07-07 18:04 [PATCH] block/rbd: fix type of task->complete Peter Lieven
2021-07-07 18:04 ` [PATCH] MAINTAINERS: update block/rbd.c maintainer Peter Lieven
2021-07-08 10:44   ` Ilya Dryomov
2021-07-08 12:06     ` Kevin Wolf

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