Il 12/09/2014 21:26, Markus Armbruster ha scritto: > Match the bdrv_new() with a bdrv_unref(), just to be tidy. > > Signed-off-by: Markus Armbruster <arm...@redhat.com> > --- > qemu-nbd.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/qemu-nbd.c b/qemu-nbd.c > index 9bc152e..f3cf8a2 100644 > --- a/qemu-nbd.c > +++ b/qemu-nbd.c > @@ -769,7 +769,7 @@ int main(int argc, char **argv) > } > } while (state != TERMINATED); > > - bdrv_close(bs); > + bdrv_unref(bs); > if (sockpath) { > unlink(sockpath); > } >
Applying to nbd-next, thanks. Paolo