diff options
author | Tony Luck <tony.luck@intel.com> | 2008-04-17 10:12:27 -0700 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2008-04-17 10:12:27 -0700 |
commit | 14d0647c98f52e2d76113d44de6b771ec87a934f (patch) | |
tree | 4b9407b00ad0b5baf5ee6245a4157a07062680b5 /arch/ia64/kernel/asm-offsets.c | |
parent | 2a467d5f7d6bdc90c365db167a10022dd8351894 (diff) | |
parent | b64f34cdfe5bef9dfed1304c513220b0f2862eca (diff) | |
download | talos-op-linux-14d0647c98f52e2d76113d44de6b771ec87a934f.tar.gz talos-op-linux-14d0647c98f52e2d76113d44de6b771ec87a934f.zip |
Pull virt-cpu-accounting into release branch
Diffstat (limited to 'arch/ia64/kernel/asm-offsets.c')
-rw-r--r-- | arch/ia64/kernel/asm-offsets.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/ia64/kernel/asm-offsets.c b/arch/ia64/kernel/asm-offsets.c index 0aebc6f79e95..5865130b0a92 100644 --- a/arch/ia64/kernel/asm-offsets.c +++ b/arch/ia64/kernel/asm-offsets.c @@ -39,6 +39,12 @@ void foo(void) DEFINE(TI_FLAGS, offsetof(struct thread_info, flags)); DEFINE(TI_CPU, offsetof(struct thread_info, cpu)); DEFINE(TI_PRE_COUNT, offsetof(struct thread_info, preempt_count)); +#ifdef CONFIG_VIRT_CPU_ACCOUNTING + DEFINE(TI_AC_STAMP, offsetof(struct thread_info, ac_stamp)); + DEFINE(TI_AC_LEAVE, offsetof(struct thread_info, ac_leave)); + DEFINE(TI_AC_STIME, offsetof(struct thread_info, ac_stime)); + DEFINE(TI_AC_UTIME, offsetof(struct thread_info, ac_utime)); +#endif BLANK(); |