Date: Fri, 29 Apr 2011 21:10:45 +0000 (UTC) From: Marcel Moolenaar <marcel@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r221228 - projects/altix/sys/ia64/include Message-ID: <201104292110.p3TLAjl4015773@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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; };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104292110.p3TLAjl4015773>