summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/trace
diff options
context:
space:
mode:
authorThomas Gleixner2017-10-12 11:02:50 +0200
committerThomas Gleixner2017-10-12 11:02:50 +0200
commit331b57d14829c49d75076779cdc54d7e4537bbf0 (patch)
tree79a70eadb04ed2fd65d3280021ec6ad5266d1cc1 /arch/x86/include/asm/trace
parentx86/apic: Fix spelling mistake: "symmectic" -> "symmetric" (diff)
parentgenirq/cpuhotplug: Enforce affinity setting on startup of managed irqs (diff)
downloadkernel-qcow2-linux-331b57d14829c49d75076779cdc54d7e4537bbf0.tar.gz
kernel-qcow2-linux-331b57d14829c49d75076779cdc54d7e4537bbf0.tar.xz
kernel-qcow2-linux-331b57d14829c49d75076779cdc54d7e4537bbf0.zip
Merge branch 'irq/urgent' into x86/apic
Pick up core changes which affect the vector rework.
Diffstat (limited to 'arch/x86/include/asm/trace')
-rw-r--r--arch/x86/include/asm/trace/fpu.h11
1 files changed, 4 insertions, 7 deletions
diff --git a/arch/x86/include/asm/trace/fpu.h b/arch/x86/include/asm/trace/fpu.h
index 342e59789fcd..39f7a27bef13 100644
--- a/arch/x86/include/asm/trace/fpu.h
+++ b/arch/x86/include/asm/trace/fpu.h
@@ -12,25 +12,22 @@ DECLARE_EVENT_CLASS(x86_fpu,
TP_STRUCT__entry(
__field(struct fpu *, fpu)
- __field(bool, fpregs_active)
- __field(bool, fpstate_active)
+ __field(bool, initialized)
__field(u64, xfeatures)
__field(u64, xcomp_bv)
),
TP_fast_assign(
__entry->fpu = fpu;
- __entry->fpregs_active = fpu->fpregs_active;
- __entry->fpstate_active = fpu->fpstate_active;
+ __entry->initialized = fpu->initialized;
if (boot_cpu_has(X86_FEATURE_OSXSAVE)) {
__entry->xfeatures = fpu->state.xsave.header.xfeatures;
__entry->xcomp_bv = fpu->state.xsave.header.xcomp_bv;
}
),
- TP_printk("x86/fpu: %p fpregs_active: %d fpstate_active: %d xfeatures: %llx xcomp_bv: %llx",
+ TP_printk("x86/fpu: %p initialized: %d xfeatures: %llx xcomp_bv: %llx",
__entry->fpu,
- __entry->fpregs_active,
- __entry->fpstate_active,
+ __entry->initialized,
__entry->xfeatures,
__entry->xcomp_bv
)