From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35761) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2MSS-0002ez-6i for qemu-devel@nongnu.org; Thu, 25 Jul 2013 10:24:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V2MSR-0007rU-1N for qemu-devel@nongnu.org; Thu, 25 Jul 2013 10:23:56 -0400 Received: from mail-gh0-x235.google.com ([2607:f8b0:4002:c05::235]:40161) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V2MSQ-0007rM-Tm for qemu-devel@nongnu.org; Thu, 25 Jul 2013 10:23:54 -0400 Received: by mail-gh0-f181.google.com with SMTP id z12so495984ghb.12 for ; Thu, 25 Jul 2013 07:23:54 -0700 (PDT) Sender: Paolo Bonzini From: Paolo Bonzini Date: Thu, 25 Jul 2013 16:23:01 +0200 Message-Id: <1374762197-7261-4-git-send-email-pbonzini@redhat.com> In-Reply-To: <1374762197-7261-1-git-send-email-pbonzini@redhat.com> References: <1374762197-7261-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH v3 03/19] cow: do not call bdrv_co_is_allocated List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: kwolf@redhat.com, pl@kamp.de, stefanha@redhat.com As we change bdrv_is_allocated to gather more information from bs and bs->file, it will become a bit slower. It is still appropriate for online jobs, but not for reads/writes. Call the internal function instead. Reviewed-by: Eric Blake Signed-off-by: Paolo Bonzini --- block/cow.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/block/cow.c b/block/cow.c index 9ae2d6a..9797f71 100644 --- a/block/cow.c +++ b/block/cow.c @@ -46,6 +46,9 @@ typedef struct BDRVCowState { int64_t cow_sectors_offset; } BDRVCowState; +static int coroutine_fn cow_co_is_allocated(BlockDriverState *bs, + int64_t sector_num, int nb_sectors, int *num_same); + static int cow_probe(const uint8_t *buf, int buf_size, const char *filename) { const struct cow_header_v2 *cow_header = (const void *)buf; @@ -212,7 +215,7 @@ static int coroutine_fn cow_read(BlockDriverState *bs, int64_t sector_num, int ret, n; while (nb_sectors > 0) { - if (bdrv_co_is_allocated(bs, sector_num, nb_sectors, &n)) { + if (cow_co_is_allocated(bs, sector_num, nb_sectors, &n)) { ret = bdrv_pread(bs->file, s->cow_sectors_offset + sector_num * 512, buf, n * 512); -- 1.8.3.1