Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Jun 2006 20:55:24 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 98503 for review
Message-ID:  <200606042055.k54KtO8l060709@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=98503

Change 98503 by kmacy@kmacy_storage:sun4v_work on 2006/06/04 20:54:32

	force trapframe to be 64-byte aligned

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/sun4v/include/frame.h#5 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/sun4v/include/frame.h#5 (text+ko) ====

@@ -52,11 +52,11 @@
 	uint64_t tf_wstate;
 	uint64_t tf_asi;
 	uint64_t tf_pad3[1];
-};
+} __aligned(64);
 /* extra padding can go away once we re-shuffle user-land mcontext
  */
 
-#define	tf_sp	tf_out[6]
+#define	tf_sp	        tf_out[6]
  
 #define	TF_DONE(tf) do { \
 	tf->tf_tpc = tf->tf_tnpc; \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606042055.k54KtO8l060709>