From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-it0-x235.google.com (mail-it0-x235.google.com [IPv6:2607:f8b0:4001:c0b::235]) (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 98FDC80468 for ; Tue, 21 Mar 2017 03:42:42 -0700 (PDT) Received: by mail-it0-x235.google.com with SMTP id y18so6458375itc.0 for ; Tue, 21 Mar 2017 03:42:42 -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=Ebp04gCVvGhA/U1TtWf3SNUj0+6itKDYO/PD4Rfnh+Q=; b=VyuuwfptjbCUfqSSSR5uua2QJvUfjlO6eEY4Npho2nl+lm7cVmSZ05QKXioVwdHQ6h C0S17d6AZHU84vHdFjl1nljga1lxJe1r1wYk6p3RycFQ9Fw348eXyU3GF/XqfJO846iV 9ZwwuNkOjJDefk+iSjbjzBtXgXvGjP0YhTv+I= 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=Ebp04gCVvGhA/U1TtWf3SNUj0+6itKDYO/PD4Rfnh+Q=; b=oc9Z2T39KxVgEzazcOGOcjzEa9mYfKq1GbSaYbu7UdhiYxgFslGwOWXRwM/rTLO6Mb 98bwKQlyUxUn1/8cDlL00UdJ/YqDKUVCcbqyiXjumH+W6or3KQ4Uaw9ckTLuNEPniyTe 4ZcXZ4PIODZeYVU5JIPQ5pPH8JsdEyXvmmT4b6T7wwsA0dkzkmQbJs7omtmyiwu/zu4Z jim5bvjjRx3RdIvxNFtEhv8w76J3OyUKra2vYSszpd/56IxlglAs8thhy94DTUrjvcRL bKuY2+BWRa+sjRq2Jsd9Ygb7YjIV7hHanTN9pz/aYCNIJ96gN3+8XfnIX1C8SxRRcx0h OquQ== X-Gm-Message-State: AFeK/H0Sb+buVwrIGJ6hMYTxiZ7d+zYE3T8BBvxANQfc3eeKtTY5zcBnJZ6hurcPJiwo9+sQQBaGXJUeUDuVaB4r X-Received: by 10.36.89.209 with SMTP id p200mr1834129itb.59.1490092962016; Tue, 21 Mar 2017 03:42:42 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.10.27 with HTTP; Tue, 21 Mar 2017 03:42:41 -0700 (PDT) In-Reply-To: <1490088209-8564-1-git-send-email-ard.biesheuvel@linaro.org> References: <1490088209-8564-1-git-send-email-ard.biesheuvel@linaro.org> From: Ard Biesheuvel Date: Tue, 21 Mar 2017 10:42:41 +0000 Message-ID: To: "edk2-devel@lists.01.org" , Laszlo Ersek Cc: Michael Zimmermann , Ard Biesheuvel Subject: Re: [PATCH 0/2] ArmVirtPkg/HighMemDxe: fix issues reported by Michael X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Mar 2017 10:42:42 -0000 Content-Type: text/plain; charset=UTF-8 On 21 March 2017 at 09:23, Ard Biesheuvel wrote: > This fixes two separate issues reported by Michael: > - setting EFI_MEMORY_XP via the GCD memory space map always fails, > - patchable PCD updates do not propagate to other modules. > > Ard Biesheuvel (2): > ArmVirtPkg/HighMemDxe: use CPU arch protocol to apply memprotect > policy > ArmVirtPkg/HighMemDxe: check new regions against GCD memory space map > > ArmVirtPkg/HighMemDxe/HighMemDxe.c | 59 ++++++++++++++------ > ArmVirtPkg/HighMemDxe/HighMemDxe.inf | 2 +- > 2 files changed, 43 insertions(+), 18 deletions(-) > Pushed as 60bd1e1269ff ArmVirtPkg/HighMemDxe: use CPU arch protocol to apply memprotect policy 5d5a19028a55 ArmVirtPkg/HighMemDxe: check new regions against GCD memory space map Thanks,