Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/powerpc/include Pad out trapframe for OEA so that t...



details:   https://anonhg.NetBSD.org/src/rev/6b7f8266434a
branches:  trunk
changeset: 766285:6b7f8266434a
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Jun 20 07:31:18 2011 +0000

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

diffstat:

 sys/arch/powerpc/include/frame.h |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (21 lines):

diff -r 24a1d0fc62f3 -r 6b7f8266434a sys/arch/powerpc/include/frame.h
--- a/sys/arch/powerpc/include/frame.h  Mon Jun 20 07:23:36 2011 +0000
+++ b/sys/arch/powerpc/include/frame.h  Mon Jun 20 07:31:18 2011 +0000
@@ -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;



Home | Main Index | Thread Index | Old Index