From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 44339C352BE for ; Thu, 16 Apr 2020 07:58:51 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 17FCB206E9 for ; Thu, 16 Apr 2020 07:58:51 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="fDD7w+Oz" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2440790AbgDPH6u (ORCPT ); Thu, 16 Apr 2020 03:58:50 -0400 Received: from us-smtp-delivery-1.mimecast.com ([205.139.110.120]:26772 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S2440759AbgDPH47 (ORCPT ); Thu, 16 Apr 2020 03:56:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1587023818; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=e1k01JD5xORhS1YT1xVO0vHDHL2WrkMx7ODikVyTREQ=; b=fDD7w+OzOgnh2vonT1O4Jm7EpGASvMGhGa4iYhAq2RyJtWncbSmjyTIWZwb4FdjwKWeTsv rfSGwFmuOb275Pucgt+0WoKxWIxW+k+/uT6WAvS9nPbgvdTUr6+P2XvdwEgvjQifmzQ2nS d+1RC1Mw2f6RyItZJZKUYyxjswqvEdI= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-114-YBSDWHJlMbyoAM-xemqa1A-1; Thu, 16 Apr 2020 03:56:56 -0400 X-MC-Unique: YBSDWHJlMbyoAM-xemqa1A-1 Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 58F71107ACC9; Thu, 16 Apr 2020 07:56:55 +0000 (UTC) Received: from eperezma.remote.csb (ovpn-112-194.ams2.redhat.com [10.36.112.194]) by smtp.corp.redhat.com (Postfix) with ESMTP id F0B7C7E7C0; Thu, 16 Apr 2020 07:56:52 +0000 (UTC) From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= To: "Michael S. Tsirkin" Cc: Stephen Rothwell , "virtualization@lists.linux-foundation.org" , Christian Borntraeger , =?UTF-8?q?Eugenio=20P=C3=A9rez?= , Linux Next Mailing List , kvm list , Cornelia Huck , Halil Pasic , "linux-kernel@vger.kernel.org" Subject: [PATCH v2 1/8] tools/virtio: fix virtio_test.c indentation Date: Thu, 16 Apr 2020 09:56:36 +0200 Message-Id: <20200416075643.27330-2-eperezma@redhat.com> In-Reply-To: <20200416075643.27330-1-eperezma@redhat.com> References: <20200416075643.27330-1-eperezma@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 Content-Transfer-Encoding: quoted-printable Sender: linux-next-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-next@vger.kernel.org Just removing extra whitespace. Signed-off-by: Eugenio P=C3=A9rez --- tools/virtio/virtio_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virtio/virtio_test.c b/tools/virtio/virtio_test.c index 25be607d8711..1d5144590df6 100644 --- a/tools/virtio/virtio_test.c +++ b/tools/virtio/virtio_test.c @@ -222,7 +222,7 @@ static void run_test(struct vdev_info *dev, struct vq= _info *vq, &backend); assert(!r); =20 - while (completed > next_reset) + while (completed > next_reset) next_reset +=3D completed; } } while (r =3D=3D 0); --=20 2.18.1