From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Ljg6A-0006S8-AD for qemu-devel@nongnu.org; Tue, 17 Mar 2009 16:41:18 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Ljg65-0006Pc-Ox for qemu-devel@nongnu.org; Tue, 17 Mar 2009 16:41:17 -0400 Received: from [199.232.76.173] (port=57239 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ljg65-0006PW-F7 for qemu-devel@nongnu.org; Tue, 17 Mar 2009 16:41:13 -0400 Received: from mx1.redhat.com ([66.187.233.31]:45037) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Ljg65-0004JL-4f for qemu-devel@nongnu.org; Tue, 17 Mar 2009 16:41:13 -0400 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n2HKfCwj020290 for ; Tue, 17 Mar 2009 16:41:12 -0400 From: Uri Lublin Date: Tue, 17 Mar 2009 22:40:46 +0200 Message-Id: <1237322452-11337-9-git-send-email-uril@redhat.com> In-Reply-To: <1237322452-11337-8-git-send-email-uril@redhat.com> References: <1237322452-11337-1-git-send-email-uril@redhat.com> <1237322452-11337-2-git-send-email-uril@redhat.com> <1237322452-11337-3-git-send-email-uril@redhat.com> <1237322452-11337-4-git-send-email-uril@redhat.com> <1237322452-11337-5-git-send-email-uril@redhat.com> <1237322452-11337-6-git-send-email-uril@redhat.com> <1237322452-11337-7-git-send-email-uril@redhat.com> <1237322452-11337-8-git-send-email-uril@redhat.com> Subject: [Qemu-devel] [PATCH 08/14] Add a bdrv_close_all() and call it at the end of main() Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Uri Lublin Cleanly close all images. Signed-off-by: Uri Lublin --- block.c | 8 ++++++++ block.h | 1 + vl.c | 1 + 3 files changed, 10 insertions(+), 0 deletions(-) diff --git a/block.c b/block.c index 411514a..39ff1dd 100644 --- a/block.c +++ b/block.c @@ -1023,6 +1023,14 @@ void bdrv_flush_all(void) bdrv_flush(bs); } +void bdrv_close_all(void) +{ + BlockDriverState *bs; + + for (bs = bdrv_first; bs != NULL; bs = bs->next) + bdrv_delete(bs); +} + /* * Returns true iff the specified sector is present in the disk image. Drivers * not implementing the functionality are assumed to not support backing files, diff --git a/block.h b/block.h index c01b192..fbb445e 100644 --- a/block.h +++ b/block.h @@ -118,6 +118,7 @@ BlockDriverAIOCB *bdrv_sg_aio_write(BlockDriverState *bs, void *buf, int count, /* Ensure contents are flushed to disk. */ void bdrv_flush(BlockDriverState *bs); void bdrv_flush_all(void); +void bdrv_close_all(void); int bdrv_is_allocated(BlockDriverState *bs, int64_t sector_num, int nb_sectors, int *pnum); diff --git a/vl.c b/vl.c index b62a2d4..6c0e0cf 100644 --- a/vl.c +++ b/vl.c @@ -5815,6 +5815,7 @@ int main(int argc, char **argv, char **envp) main_loop(); quit_timers(); net_cleanup(); + bdrv_close_all(); return 0; } -- 1.6.0.6