From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrew Cooper Subject: x86_64: fix naming of rflags in elf regset structure Date: Tue, 8 May 2012 10:51:17 +0100 Message-ID: <4FA8EC95.8020508@citrix.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="------------000708070408040800030402" Return-path: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: "xen-devel@lists.xen.org" , Jan Beulich , Keir Fraser List-Id: xen-devel@lists.xenproject.org --------------000708070408040800030402 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit This is a trivial, non-functional, change so should be considered for 4.2, and backported to 4.1 and 4.0 release candidates. -- Andrew Cooper - Dom0 Kernel Engineer, Citrix XenServer T: +44 (0)1223 225 900, http://www.citrix.com --------------000708070408040800030402 Content-Type: text/x-patch; name="x86-elf-rflags-name.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="x86-elf-rflags-name.patch" # HG changeset patch # Parent 8f1e0cc4a507a52a49a2eb7832a57ecc7e032dce x86_64: fix naming of rflags in elf regset structure 'pushfq' pushes rflags, not eflags. Fix up naming of the structure. No functional change. Signed-off-by: Andrew Cooper diff -r 8f1e0cc4a507 xen/include/asm-x86/x86_64/elf.h --- a/xen/include/asm-x86/x86_64/elf.h +++ b/xen/include/asm-x86/x86_64/elf.h @@ -20,7 +20,7 @@ typedef struct { unsigned long orig_rax; unsigned long rip; unsigned long cs; - unsigned long eflags; + unsigned long rflags; unsigned long rsp; unsigned long ss; unsigned long thread_fs; @@ -54,7 +54,7 @@ static inline void elf_core_save_regs(EL /* orig_rax not filled in for now */ core_regs->rip = (unsigned long)elf_core_save_regs; asm volatile("movl %%cs, %%eax;" :"=a"(core_regs->cs)); - asm volatile("pushfq; popq %0" :"=m"(core_regs->eflags)); + asm volatile("pushfq; popq %0" :"=m"(core_regs->rflags)); asm volatile("movq %%rsp,%0" : "=m"(core_regs->rsp)); asm volatile("movl %%ss, %%eax;" :"=a"(core_regs->ss)); /* thread_fs not filled in for now */ --------------000708070408040800030402 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel --------------000708070408040800030402--