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=-9.8 required=3.0 tests=BAYES_00,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, URIBL_BLOCKED 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 9D123C433E2 for ; Fri, 11 Sep 2020 09:56:27 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 3B4572078B for ; Fri, 11 Sep 2020 09:56:27 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="EWe/07fo" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1725794AbgIKJ40 (ORCPT ); Fri, 11 Sep 2020 05:56:26 -0400 Received: from us-smtp-delivery-1.mimecast.com ([207.211.31.120]:45306 "EHLO us-smtp-1.mimecast.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1725710AbgIKJ4Z (ORCPT ); Fri, 11 Sep 2020 05:56:25 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1599818184; 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=NfohgZAXCNl+PKanfBorLKxCJJnZ1k32hZXabUGOmhw=; b=EWe/07for5I4ZXh55uiUXxsgLoKO8iuu51okJF83gBQW0GBTyXG+P3cCCt7iLwDvc/wmSa oVdDuV8FSITh5Dq5Dlqe7EByhSOtL3MLjzLgCjQ+T8cYswTa6JKmu3P39Eb47mIMLAXmku 01AksNeL6lmc/iND5pRgg6VsW2uS4pE= 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-499-mpMRDpoCN86U_l1UVexmDA-1; Fri, 11 Sep 2020 05:56:22 -0400 X-MC-Unique: mpMRDpoCN86U_l1UVexmDA-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id E119D81E20C; Fri, 11 Sep 2020 09:56:20 +0000 (UTC) Received: from gondolin (ovpn-112-170.ams2.redhat.com [10.36.112.170]) by smtp.corp.redhat.com (Postfix) with ESMTP id B52135DA74; Fri, 11 Sep 2020 09:55:48 +0000 (UTC) Date: Fri, 11 Sep 2020 11:55:45 +0200 From: Cornelia Huck To: Zenghui Yu Cc: , , , , Subject: Re: [PATCH] vfio: Fix typo of the device_state Message-ID: <20200911115545.5161fa46.cohuck@redhat.com> In-Reply-To: <20200910122508.705-1-yuzenghui@huawei.com> References: <20200910122508.705-1-yuzenghui@huawei.com> Organization: Red Hat GmbH MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org On Thu, 10 Sep 2020 20:25:08 +0800 Zenghui Yu wrote: > A typo fix ("_RUNNNG" => "_RUNNING") in comment block of the uapi header. > > Signed-off-by: Zenghui Yu > --- > include/uapi/linux/vfio.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/include/uapi/linux/vfio.h b/include/uapi/linux/vfio.h > index 920470502329..d4bd39e124bf 100644 > --- a/include/uapi/linux/vfio.h > +++ b/include/uapi/linux/vfio.h > @@ -462,7 +462,7 @@ struct vfio_region_gfx_edid { > * 5. Resumed > * |--------->| > * > - * 0. Default state of VFIO device is _RUNNNG when the user application starts. > + * 0. Default state of VFIO device is _RUNNING when the user application starts. > * 1. During normal shutdown of the user application, the user application may > * optionally change the VFIO device state from _RUNNING to _STOP. This > * transition is optional. The vendor driver must support this transition but Reviewed-by: Cornelia Huck