svn commit: r221228 - projects/altix/sys/ia64/include

Marcel Moolenaar marcel at FreeBSD.org
Fri Apr 29 21:10:46 UTC 2011


Author: marcel
Date: Fri Apr 29 21:10:45 2011
New Revision: 221228
URL: http://svn.freebsd.org/changeset/base/221228

Log:
  o   Add as_trace field.
  o   as_delay must be signed as it can drop below 0.

Modified:
  projects/altix/sys/ia64/include/smp.h

Modified: projects/altix/sys/ia64/include/smp.h
==============================================================================
--- projects/altix/sys/ia64/include/smp.h	Fri Apr 29 21:10:41 2011	(r221227)
+++ projects/altix/sys/ia64/include/smp.h	Fri Apr 29 21:10:45 2011	(r221228)
@@ -17,6 +17,7 @@
 struct pcpu;
 
 struct ia64_ap_state {
+	uint64_t	as_trace;
 	uint64_t	as_pgtbl_pte;
 	uint64_t	as_pgtbl_itir;
 	uint64_t	as_text_va;
@@ -28,7 +29,7 @@ struct ia64_ap_state {
 	void		*as_kstack;
 	void		*as_kstack_top;
 	struct pcpu	*as_pcpu;
-	volatile u_int	as_delay;
+	volatile int	as_delay;
 	volatile u_int	as_awake;
 	volatile u_int	as_spin;
 };


More information about the svn-src-projects mailing list