All of lore.kernel.org
 help / color / mirror / Atom feed
* [patch 0/2] add Altivec/VMX state to coredumps
@ 2007-10-11  7:15 markn
  2007-10-11  7:15 ` [patch 1/2] Replace NT_PRXFPREG with ELF_CORE_XFPREG_TYPE #define markn
  2007-10-11  7:16 ` [patch 2/2] add Altivec/VMX state to coredumps markn
  0 siblings, 2 replies; 19+ messages in thread
From: markn @ 2007-10-11  7:15 UTC (permalink / raw)
  To: linuxppc-dev

-- 
Here's the new and improved patch to add Altivec/VMX state into the coredump.

It's now two patches:
* the first patch makes the note type of the state dumped by
  elf_core_copy_task_xfpregs() a #define and adds the appropriate #defines so
  that archs that support SSE still have their note type as NT_PRXFPREG
* the second patch actually adds the Altivec/VMX state to the coredumps and
  uses a note type of NT_PPC_VMX that's #defined as 0x100. Thus SPE could use
  a note type of NT_PPC_SPE and 0x101, for example.

The second patch is essentially the same as the single patch that was posted on
2007-09-25, but with the addition of the new NT_PPC_VMX note type.

^ permalink raw reply	[flat|nested] 19+ messages in thread
* [patch 1/2] Replace NT_PRXFPREG with ELF_CORE_XFPREG_TYPE #define
@ 2007-10-11  9:57 Paul Mackerras
  2007-10-12  5:32 ` [PATCH 1/2] [V3] " Mark Nelson
  0 siblings, 1 reply; 19+ messages in thread
From: Paul Mackerras @ 2007-10-11  9:57 UTC (permalink / raw)
  To: akpm; +Cc: linux-arch, markn

From: Mark Nelson <markn@au1.ibm.com>

Replace NT_PRXFPREG with ELF_CORE_XFPREG_TYPE in the coredump code which
allows for more flexibility in the note type for the state of 'extended
floating point' implementations in coredumps.  New note types can now be
added with an appropriate #define.

This does #define ELF_CORE_XFPREG_TYPE to be NT_PRXFPREG in all
current users so there's are no change in behaviour.

This will let us use different note types on powerpc for the
Altivec/VMX state that some PowerPC cpus have (G4, PPC970, POWER6) and
for the SPE (signal processing extension) state that some embedded
PowerPC cpus from Freescale have.

Signed-off-by: Mark Nelson <markn@au1.ibm.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
---
Andrew: if you ack this I can push it through my tree along with the
following patch that adds Altivec/VMX state to core dumps. -- Paul.

 arch/ia64/ia32/elfcore32.h     |    1 +
 arch/x86_64/ia32/ia32_binfmt.c |    1 +
 fs/binfmt_elf.c                |    4 ++--
 include/asm-i386/elf.h         |    1 +
 4 files changed, 5 insertions(+), 2 deletions(-)

Index: linux/arch/ia64/ia32/elfcore32.h
===================================================================
--- linux.orig/arch/ia64/ia32/elfcore32.h
+++ linux/arch/ia64/ia32/elfcore32.h
@@ -117,6 +117,7 @@ elf_core_copy_task_fpregs(struct task_st
 }
 
 #define ELF_CORE_COPY_XFPREGS 1
+#define ELF_CORE_XFPREG_TYPE NT_PRXFPREG
 static inline int
 elf_core_copy_task_xfpregs(struct task_struct *tsk, elf_fpxregset_t *xfpu)
 {
Index: linux/arch/x86_64/ia32/ia32_binfmt.c
===================================================================
--- linux.orig/arch/x86_64/ia32/ia32_binfmt.c
+++ linux/arch/x86_64/ia32/ia32_binfmt.c
@@ -188,6 +188,7 @@ elf_core_copy_task_fpregs(struct task_st
 }
 
 #define ELF_CORE_COPY_XFPREGS 1
+#define ELF_CORE_XFPREG_TYPE NT_PRXFPREG
 static inline int 
 elf_core_copy_task_xfpregs(struct task_struct *t, elf_fpxregset_t *xfpu)
 {
Index: linux/fs/binfmt_elf.c
===================================================================
--- linux.orig/fs/binfmt_elf.c
+++ linux/fs/binfmt_elf.c
@@ -1446,8 +1446,8 @@ static int elf_dump_thread_status(long s
 
 #ifdef ELF_CORE_COPY_XFPREGS
 	if (elf_core_copy_task_xfpregs(p, &t->xfpu)) {
-		fill_note(&t->notes[2], "LINUX", NT_PRXFPREG, sizeof(t->xfpu),
-			  &t->xfpu);
+		fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE,
+			  sizeof(t->xfpu), &t->xfpu);
 		t->num_notes++;
 		sz += notesize(&t->notes[2]);
 	}
Index: linux/include/asm-i386/elf.h
===================================================================
--- linux.orig/include/asm-i386/elf.h
+++ linux/include/asm-i386/elf.h
@@ -129,6 +129,7 @@ extern int dump_task_extended_fpu (struc
 #define ELF_CORE_COPY_TASK_REGS(tsk, elf_regs) dump_task_regs(tsk, elf_regs)
 #define ELF_CORE_COPY_FPREGS(tsk, elf_fpregs) dump_task_fpu(tsk, elf_fpregs)
 #define ELF_CORE_COPY_XFPREGS(tsk, elf_xfpregs) dump_task_extended_fpu(tsk, elf_xfpregs)
+#define ELF_CORE_XFPREG_TYPE NT_PRXFPREG
 
 #define VDSO_HIGH_BASE		(__fix_to_virt(FIX_VDSO))
 #define VDSO_CURRENT_BASE	((unsigned long)current->mm->context.vdso)

^ permalink raw reply	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2007-10-12  5:33 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-10-11  7:15 [patch 0/2] add Altivec/VMX state to coredumps markn
2007-10-11  7:15 ` [patch 1/2] Replace NT_PRXFPREG with ELF_CORE_XFPREG_TYPE #define markn
2007-10-11 13:04   ` Kumar Gala
2007-10-11 21:55     ` Paul Mackerras
2007-10-11 21:55       ` Paul Mackerras
2007-10-11 22:01       ` Kumar Gala
2007-10-11 22:01         ` Kumar Gala
2007-10-11 22:14         ` Paul Mackerras
2007-10-11 22:14           ` Paul Mackerras
2007-10-11 23:31     ` Michael Ellerman
2007-10-11 23:31       ` Michael Ellerman
2007-10-12  1:37     ` Mark Nelson
2007-10-12  2:15       ` [PATCH 1/2] [V2] " Mark Nelson
2007-10-12  2:15         ` Mark Nelson
2007-10-12  2:35         ` Mark Nelson
2007-10-12  2:40       ` [PATCH 1/2] [V3] " Mark Nelson
2007-10-12  2:40         ` Mark Nelson
2007-10-11  7:16 ` [patch 2/2] add Altivec/VMX state to coredumps markn
  -- strict thread matches above, loose matches on Subject: below --
2007-10-11  9:57 [patch 1/2] Replace NT_PRXFPREG with ELF_CORE_XFPREG_TYPE #define Paul Mackerras
2007-10-12  5:32 ` [PATCH 1/2] [V3] " Mark Nelson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.