]> git.proxmox.com Git - mirror_qemu.git/blobdiff - block/blkdebug.c
coroutine: move entry argument to qemu_coroutine_create
[mirror_qemu.git] / block / blkdebug.c
index bbaa33fdd83ea482f892ef458aa63f75077a50ac..fb29283f802551c58fb4f14f884301e6ffe49653 100644 (file)
@@ -621,7 +621,7 @@ static int blkdebug_debug_resume(BlockDriverState *bs, const char *tag)
 
     QLIST_FOREACH_SAFE(r, &s->suspended_reqs, next, next) {
         if (!strcmp(r->tag, tag)) {
-            qemu_coroutine_enter(r->co, NULL);
+            qemu_coroutine_enter(r->co);
             return 0;
         }
     }
@@ -647,7 +647,7 @@ static int blkdebug_debug_remove_breakpoint(BlockDriverState *bs,
     }
     QLIST_FOREACH_SAFE(r, &s->suspended_reqs, next, r_next) {
         if (!strcmp(r->tag, tag)) {
-            qemu_coroutine_enter(r->co, NULL);
+            qemu_coroutine_enter(r->co);
             ret = 0;
         }
     }