From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:4001:c0b::242; helo=mail-it0-x242.google.com; envelope-from=ard.biesheuvel@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-it0-x242.google.com (mail-it0-x242.google.com [IPv6:2607:f8b0:4001:c0b::242]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 4D65A211B1133 for ; Mon, 11 Jun 2018 09:05:08 -0700 (PDT) Received: by mail-it0-x242.google.com with SMTP id v83-v6so11566567itc.3 for ; Mon, 11 Jun 2018 09:05:08 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=zgmSlvGftSSH85sCG5D+eu0Q5NNJMFUkZl9sCUHiliE=; b=a8ydQAmon12WBh9FceXYj7S/bXJto2Zsp8CEcrzqDt/wyryuGBnSuSiqDaxdmpIHBv eN/0E28e/sFl665ezT8HeKywmKOTf98mQ3FKQnEBd9o5m2ntDHrsFk5jKTEFWocCO2K4 W73fY4yriwzTDVogG33hOunHR8QoC0AMlGYsY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=zgmSlvGftSSH85sCG5D+eu0Q5NNJMFUkZl9sCUHiliE=; b=uBdmqU6T9dSPHbpCHK6c5oqRrqFjM+wGJ6B2MKTb6r6JcXvBseLoBZsxJOFwAvT/Vm QkwYvBZrQYMaTuCAKZTCTC7ilYBHo3bZZTpdXvY/hfJsD0dMpGIB31jsZqoYEWv9+FLY ftvvlkgRs9kopOY1wPVnbMs8od/A34sJSQ636/ROwXCN2/Ge4d+I5Uo4DnVjPNNmMviD guK9FuSP7ypuKpiS34wPbFkfV0doLl0dNqDG7LZ0Yjwsnl3VjePd9fQcruR6j4L8RX77 a7WNt+A2huUJQ1CaTp9I0sW9ib8VJK2iWmezObavmEotVyZ95H6s3qzqctfaLz2pENSM jLOA== X-Gm-Message-State: APt69E2qg/afLWH59EQZQbbf9iJexy6niHaG08pB0gKTh8u+JmDxCtTm KqmL2RzWD5OiObCp27YZRJhQ1N+/NaQQ5ePECqCgQA== X-Google-Smtp-Source: ADUXVKKO5kUnumZzxeFx31QMAt2Jl9o+JYGw+lY4Ck40Jjgl491kAGclK9WuTr1kentKaW7yu884yEzHbteQSYivf3E= X-Received: by 2002:a24:e105:: with SMTP id n5-v6mr10974868ith.68.1528733107614; Mon, 11 Jun 2018 09:05:07 -0700 (PDT) MIME-Version: 1.0 Received: by 2002:a6b:bbc7:0:0:0:0:0 with HTTP; Mon, 11 Jun 2018 09:05:07 -0700 (PDT) In-Reply-To: References: <20180611072553.30050-1-ard.biesheuvel@linaro.org> <20180611072553.30050-2-ard.biesheuvel@linaro.org> From: Ard Biesheuvel Date: Mon, 11 Jun 2018 18:05:07 +0200 Message-ID: To: Laszlo Ersek Cc: "edk2-devel@lists.01.org" , "Kinney, Michael D" , "Gao, Liming" , Leif Lindholm Subject: Re: [PATCH v3 2/2] ArmVirtPkg: switch to KVM safe IoLib implementation X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.26 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 11 Jun 2018 16:05:08 -0000 Content-Type: text/plain; charset="UTF-8" On 11 June 2018 at 12:44, Laszlo Ersek wrote: > On 06/11/18 09:25, Ard Biesheuvel wrote: >> Switch to the new IoLib implementation that will only use KVM >> safe instructions to perform MMIO memory accesses. >> >> Contributed-under: TianoCore Contribution Agreement 1.1 >> Signed-off-by: Ard Biesheuvel >> --- >> v2: split off from 1/1 >> >> ArmVirtPkg/ArmVirt.dsc.inc | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/ArmVirtPkg/ArmVirt.dsc.inc b/ArmVirtPkg/ArmVirt.dsc.inc >> index 766e4f598a07..7464ac70ed1b 100644 >> --- a/ArmVirtPkg/ArmVirt.dsc.inc >> +++ b/ArmVirtPkg/ArmVirt.dsc.inc >> @@ -41,7 +41,7 @@ [LibraryClasses.common] >> PrintLib|MdePkg/Library/BasePrintLib/BasePrintLib.inf >> PeCoffGetEntryPointLib|MdePkg/Library/BasePeCoffGetEntryPointLib/BasePeCoffGetEntryPointLib.inf >> PeCoffLib|MdePkg/Library/BasePeCoffLib/BasePeCoffLib.inf >> - IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsic.inf >> + IoLib|MdePkg/Library/BaseIoLibIntrinsic/BaseIoLibIntrinsicArmVirt.inf >> UefiDecompressLib|MdePkg/Library/BaseUefiDecompressLib/BaseUefiDecompressLib.inf >> CpuLib|MdePkg/Library/BaseCpuLib/BaseCpuLib.inf >> >> > > Reviewed-by: Laszlo Ersek Thanks. Pushed as 0b37c75e6944f3d3ded7bef1e10cf4df72386616