Il 14/06/2014 00:30, Max Reitz ha scritto:
+static void nbd_set_handlers(NBDClient *client) +{ + if (client->exp && client->exp->ctx) { + aio_set_fd_handler(client->exp->ctx, client->sock, + client->can_read ? nbd_read : NULL, + client->restart_write ? nbd_restart_write : NULL,
Instead of client->restart_write you can just use client->send_coroutine. Apart from this, the patch is okay.
Paolo
+ client); + } +} +