From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60264) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dXPHY-0000jU-7m for qemu-devel@nongnu.org; Tue, 18 Jul 2017 05:59:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dXPHV-0000LT-5E for qemu-devel@nongnu.org; Tue, 18 Jul 2017 05:59:08 -0400 From: Juan Quintela In-Reply-To: <20170718061005.29518-7-f4bug@amsat.org> ("Philippe =?utf-8?Q?Mathieu-Daud=C3=A9=22's?= message of "Tue, 18 Jul 2017 03:09:42 -0300") References: <20170718061005.29518-1-f4bug@amsat.org> <20170718061005.29518-7-f4bug@amsat.org> Reply-To: quintela@redhat.com Date: Tue, 18 Jul 2017 11:58:47 +0200 Message-ID: <87bmoiysko.fsf@secure.mitica> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 06/29] migration/block: use QEMU_IS_ALIGNED macro List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Philippe =?utf-8?Q?Mathieu-Daud=C3=A9?= Cc: qemu-trivial@nongnu.org, Stefan Hajnoczi , Fam Zheng , "Dr. David Alan Gilbert" , qemu-devel@nongnu.org, qemu-block@nongnu.org, Eric Blake Philippe Mathieu-Daud=C3=A9 wrote: > Applied using the Coccinelle semantic patch scripts/coccinelle/use_osdep.= cocci > > Signed-off-by: Philippe Mathieu-Daud=C3=A9 > --- > migration/block.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/migration/block.c b/migration/block.c > index 9171f60028..498c72ad59 100644 > --- a/migration/block.c > +++ b/migration/block.c > @@ -933,7 +933,7 @@ static int block_load(QEMUFile *f, void *opaque, int = version_id) > ret =3D bdrv_get_info(blk_bs(blk), &bdi); > if (ret =3D=3D 0 && bdi.cluster_size > 0 && > bdi.cluster_size <=3D BLOCK_SIZE && > - BLOCK_SIZE % bdi.cluster_size =3D=3D 0) { > + QEMU_IS_ALIGNED(BLOCK_SIZE, bdi.cluster_size)) { > cluster_size =3D bdi.cluster_size; > } else { > cluster_size =3D BLOCK_SIZE; Reviewed-by: Juan Quintela Should I take this patch, or does it go through the block layer? Your call. Later, Juan.