From patchwork Tue Jan 28 15:46:14 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olaf Hering X-Patchwork-Id: 11354653 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 56AA413A4 for ; Tue, 28 Jan 2020 15:47:44 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 32D1A2073A for ; Tue, 28 Jan 2020 15:47:44 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=aepfle.de header.i=@aepfle.de header.b="aDd5XJit" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 32D1A2073A Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=aepfle.de Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=xen-devel-bounces@lists.xenproject.org Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1iwT4I-0002Pj-IJ; Tue, 28 Jan 2020 15:46:22 +0000 Received: from us1-rack-iad1.inumbo.com ([172.99.69.81]) by lists.xenproject.org with esmtp (Exim 4.89) (envelope-from ) id 1iwT4G-0002Pe-Is for xen-devel@lists.xenproject.org; Tue, 28 Jan 2020 15:46:21 +0000 X-Inumbo-ID: 52f08d6c-41e5-11ea-8396-bc764e2007e4 Received: from mo6-p01-ob.smtp.rzone.de (unknown [2a01:238:20a:202:5301::10]) by us1-rack-iad1.inumbo.com (Halon) with ESMTPS id 52f08d6c-41e5-11ea-8396-bc764e2007e4; Tue, 28 Jan 2020 15:46:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1580226378; s=strato-dkim-0002; d=aepfle.de; h=Message-Id:Date:Subject:Cc:To:From:X-RZG-CLASS-ID:X-RZG-AUTH:From: Subject:Sender; bh=tL/1EY2Kjpt6lH1vf/lunytuHcFLqHKrd4LkHAh1JEk=; b=aDd5XJitAfY0GiPQWbkBHNHp4YqK9mKak7e1naj6uVQP7Tz3dGCDDKhYQAR5iZ3Gd3 4TFGE7Yk06Sj747aN2UJSDiIVEHo6BVz0511mujqAU7MmNTWw/6anDScz2ouStA+nw3b yQR9C+qOpPFq4fzYbmG7eWCtZ+gwH9mn6vX2gmR7wWYz/b1n5HHzdnt0vKBG5yqP6MPs K+oHCROUFonBrSTHtDV54IdNUPodU8BE/3/PfhF9XTr7DIAVcj2YAgEsi+FZzPhgklpp dICuJPqhqOfbZcATOgiuHm0Wy/ifEDf6iDE36fdiL7xJ7nsiKZFkfKd0/Uzq1LbBzFTu L/RQ== X-RZG-AUTH: ":P2EQZWCpfu+qG7CngxMFH1J+3q8wa/QXkBR9MXjAuzBW/OdlBZQ4AHSS32xJjw==" X-RZG-CLASS-ID: mo00 Received: from sender by smtp.strato.de (RZmta 46.1.7 SBL|AUTH) with ESMTPSA id j07b1dw0SFkGIYS (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256 bits)) (Client did not present a certificate); Tue, 28 Jan 2020 16:46:16 +0100 (CET) From: Olaf Hering To: Andrew Cooper , George Dunlap , Ian Jackson , Jan Beulich , Julien Grall , Konrad Rzeszutek Wilk , Stefano Stabellini , Wei Liu , xen-devel@lists.xenproject.org Date: Tue, 28 Jan 2020 16:46:14 +0100 Message-Id: <20200128154614.30572-1-olaf@aepfle.de> X-Mailer: git-send-email 2.16.4 MIME-Version: 1.0 Subject: [Xen-devel] [PATCH v1] x86/domctl: fix typo in comment X-BeenThere: xen-devel@lists.xenproject.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Cc: Olaf Hering Errors-To: xen-devel-bounces@lists.xenproject.org Sender: "Xen-devel" The array is named msr_policy. Fixes commit 60529dfeca1 Signed-off-by: Olaf Hering Acked-by: Wei Liu --- xen/include/public/domctl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/public/domctl.h b/xen/include/public/domctl.h index e313da499f..2bb7397923 100644 --- a/xen/include/public/domctl.h +++ b/xen/include/public/domctl.h @@ -675,7 +675,7 @@ struct xen_domctl_cpu_policy { uint32_t nr_leaves; /* IN/OUT: Number of leaves in/written to * 'cpuid_policy'. */ uint32_t nr_msrs; /* IN/OUT: Number of MSRs in/written to - * 'msr_domain_policy' */ + * 'msr_policy' */ XEN_GUEST_HANDLE_64(xen_cpuid_leaf_t) cpuid_policy; /* IN/OUT */ XEN_GUEST_HANDLE_64(xen_msr_entry_t) msr_policy; /* IN/OUT */