diff options
author | Peter Zijlstra <peterz@infradead.org> | 2017-05-31 17:52:02 +0200 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2017-06-04 21:55:52 +0200 |
commit | c6e9f42bbeecbc10cd4fbcca474b5859aba1de67 (patch) | |
tree | dfce9cd831a23e8baf113f7009332b7771ac6d9b /arch/x86/kernel/apic/apic.c | |
parent | Merge tag 'tty-4.12-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/gre... (diff) | |
download | linux-c6e9f42bbeecbc10cd4fbcca474b5859aba1de67.tar.xz linux-c6e9f42bbeecbc10cd4fbcca474b5859aba1de67.zip |
x86/apic: Change the lapic name in deadline mode
So that we can more easily see in what mode the lapic timer operates.
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: kevin.b.stanton@intel.com
Link: http://lkml.kernel.org/r/20170531155305.989808008@infradead.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/apic/apic.c')
-rw-r--r-- | arch/x86/kernel/apic/apic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/apic/apic.c b/arch/x86/kernel/apic/apic.c index 2d75faf743f2..87d721a1f3cc 100644 --- a/arch/x86/kernel/apic/apic.c +++ b/arch/x86/kernel/apic/apic.c @@ -563,6 +563,7 @@ static void setup_APIC_timer(void) levt->cpumask = cpumask_of(smp_processor_id()); if (this_cpu_has(X86_FEATURE_TSC_DEADLINE_TIMER)) { + levt->name = "lapic-deadline"; levt->features &= ~(CLOCK_EVT_FEAT_PERIODIC | CLOCK_EVT_FEAT_DUMMY); levt->set_next_event = lapic_next_deadline; |