From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Vrabel Subject: Re: [PATCH v2 12/22] elfnotes: intorduce a new PHYS_ENTRY elfnote Date: Fri, 3 Jul 2015 11:36:05 +0100 Message-ID: <55966595.7040309@citrix.com> References: <1435761975-98579-1-git-send-email-roger.pau@citrix.com> <1435761975-98579-13-git-send-email-roger.pau@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZAyKH-0006a9-Vr for xen-devel@lists.xenproject.org; Fri, 03 Jul 2015 10:36:10 +0000 In-Reply-To: <1435761975-98579-13-git-send-email-roger.pau@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Roger Pau Monne , xen-devel@lists.xenproject.org Cc: Ian Jackson , Wei Liu , Ian Campbell , Stefano Stabellini List-Id: xen-devel@lists.xenproject.org On 01/07/15 15:46, Roger Pau Monne wrote: > This new elfnote contains the 32bit entry point into the kernel. Xen will > use this entry point in order to launch the guest kernel in 32bit protected > mode with paging disabled. [...] > --- a/tools/xcutils/readnotes.c > +++ b/tools/xcutils/readnotes.c > @@ -159,6 +159,9 @@ static unsigned print_notes(struct elf_binary *elf, ELF_HANDLE_DECL(elf_note) st > case XEN_ELFNOTE_L1_MFN_VALID: > print_l1_mfn_valid_note("L1_MFN_VALID", elf , note); > break; > + case XEN_ELFNOTE_PHYS_ENTRY: > + print_numeric_note("PHYS_ENTRY", elf , note); > + break; I assume this is supposed to be XEN_ELFNOTE_PHYS32_ENTRY? It doesn't build otherwise. David