From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:60843) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvXQ4-0000ez-6N for qemu-devel@nongnu.org; Mon, 22 Aug 2011 12:32:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QvXQ3-0003CL-4e for qemu-devel@nongnu.org; Mon, 22 Aug 2011 12:32:12 -0400 Received: from mail-gy0-f173.google.com ([209.85.160.173]:38031) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QvXQ3-000337-20 for qemu-devel@nongnu.org; Mon, 22 Aug 2011 12:32:11 -0400 Received: by mail-gy0-f173.google.com with SMTP id 12so4391588gyd.4 for ; Mon, 22 Aug 2011 09:32:10 -0700 (PDT) Message-ID: <4E528488.6070600@codemonkey.ws> Date: Mon, 22 Aug 2011 11:32:08 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1313745432-31662-1-git-send-email-wdongxu@linux.vnet.ibm.com> In-Reply-To: <1313745432-31662-1-git-send-email-wdongxu@linux.vnet.ibm.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] fix code format List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Robert Wang Cc: wdongxu@cn.ibm.com, qemu-devel@nongnu.org On 08/19/2011 04:17 AM, Robert Wang wrote: > Fix code format to make checkpatch.pl happy. > > Signed-off-by: Robert Wang Applied. Thanks. Regards, Anthony Liguori > --- > block.c | 6 +++--- > 1 files changed, 3 insertions(+), 3 deletions(-) > > diff --git a/block.c b/block.c > index 26910ca..87e83bc 100644 > --- a/block.c > +++ b/block.c > @@ -2251,9 +2251,9 @@ BlockDriverAIOCB *bdrv_aio_readv(BlockDriverState *bs, int64_t sector_num, > cb, opaque); > > if (ret) { > - /* Update stats even though technically transfer has not happened. */ > - bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE; > - bs->rd_ops ++; > + /* Update stats even though technically transfer has not happened. */ > + bs->rd_bytes += (unsigned) nb_sectors * BDRV_SECTOR_SIZE; > + bs->rd_ops++; > } > > return ret;