Module Name:    src
Committed By:   matt
Date:           Mon Jun 20 07:31:19 UTC 2011

Modified Files:
        src/sys/arch/powerpc/include: frame.h

Log Message:
Pad out trapframe for OEA so that trapframe has identical sizes for all
PPC variants.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/powerpc/include/frame.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/powerpc/include/frame.h
diff -u src/sys/arch/powerpc/include/frame.h:1.22 src/sys/arch/powerpc/include/frame.h:1.23
--- src/sys/arch/powerpc/include/frame.h:1.22	Tue Jan 18 01:02:54 2011
+++ src/sys/arch/powerpc/include/frame.h	Mon Jun 20 07:31:18 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: frame.h,v 1.22 2011/01/18 01:02:54 matt Exp $	*/
+/*	$NetBSD: frame.h,v 1.23 2011/06/20 07:31:18 matt Exp $	*/
 
 /*
  * Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -84,9 +84,11 @@
 	uint32_t tf_exc;
 #if defined(PPC_OEA) || defined(PPC_OEA64) || defined(PPC_OEA64_BRIDGE)
 	register_t tf_dar;
+	register_t tf_pad0[2];
 	uint32_t tf_dsisr;
 	uint32_t tf_vrsave;
 	uint32_t tf_mq;
+	uint32_t tf_pad1[1];
 #endif
 #if defined(PPC_BOOKE) || defined(PPC_IBM4XX)
 	register_t tf_dear;

Reply via email to