From patchwork Mon Jan 4 10:27:03 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Fam Zheng X-Patchwork-Id: 562304 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 50EBC1402BC for ; Mon, 4 Jan 2016 21:28:00 +1100 (AEDT) Received: from localhost ([::1]:44416 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aG2Mn-0005Mv-Qe for incoming@patchwork.ozlabs.org; Mon, 04 Jan 2016 05:27:57 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49862) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aG2MK-0004QJ-Ly for qemu-devel@nongnu.org; Mon, 04 Jan 2016 05:27:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aG2MJ-00034Q-Qx for qemu-devel@nongnu.org; Mon, 04 Jan 2016 05:27:28 -0500 Received: from mx1.redhat.com ([209.132.183.28]:39428) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aG2MI-000338-17; Mon, 04 Jan 2016 05:27:26 -0500 Received: from int-mx14.intmail.prod.int.phx2.redhat.com (int-mx14.intmail.prod.int.phx2.redhat.com [10.5.11.27]) by mx1.redhat.com (Postfix) with ESMTPS id 9FEC0A202F; Mon, 4 Jan 2016 10:27:25 +0000 (UTC) Received: from fam-t430.redhat.com (vpn1-7-191.pek2.redhat.com [10.72.7.191]) by int-mx14.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u04ARFb7004068; Mon, 4 Jan 2016 05:27:23 -0500 From: Fam Zheng To: qemu-devel@nongnu.org Date: Mon, 4 Jan 2016 18:27:03 +0800 Message-Id: <1451903234-32529-3-git-send-email-famz@redhat.com> In-Reply-To: <1451903234-32529-1-git-send-email-famz@redhat.com> References: <1451903234-32529-1-git-send-email-famz@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.27 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Kevin Wolf , Jeff Cody , Vladimir Sementsov-Ogievskiy , jsnow@redhat.com, qemu-block@nongnu.org Subject: [Qemu-devel] [PATCH 02/13] typedefs: Add BdrvDirtyBitmap and HBitmapIter X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Following patches to refactor and move block dirty bitmap code could use this. Signed-off-by: Fam Zheng --- include/qemu/typedefs.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/qemu/typedefs.h b/include/qemu/typedefs.h index 78fe6e8..e83934e 100644 --- a/include/qemu/typedefs.h +++ b/include/qemu/typedefs.h @@ -10,6 +10,7 @@ typedef struct AddressSpace AddressSpace; typedef struct AioContext AioContext; typedef struct AllwinnerAHCIState AllwinnerAHCIState; typedef struct AudioState AudioState; +typedef struct BdrvDirtyBitmap BdrvDirtyBitmap; typedef struct BlockBackend BlockBackend; typedef struct BlockBackendRootState BlockBackendRootState; typedef struct BlockDriverState BlockDriverState; @@ -28,6 +29,7 @@ typedef struct EventNotifier EventNotifier; typedef struct FWCfgIoState FWCfgIoState; typedef struct FWCfgMemState FWCfgMemState; typedef struct FWCfgState FWCfgState; +typedef struct HBitmapIter HBitmapIter; typedef struct HCIInfo HCIInfo; typedef struct I2CBus I2CBus; typedef struct I2SCodec I2SCodec;