linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] timers: Recalculate next timer interrupt only when necessary
@ 2020-07-23 15:16 Frederic Weisbecker
  2020-07-24 10:59 ` [tip: timers/core] " tip-bot2 for Frederic Weisbecker
  2021-07-08  6:43 ` [PATCH v2] " He Zhe
  0 siblings, 2 replies; 16+ messages in thread
From: Frederic Weisbecker @ 2020-07-23 15:16 UTC (permalink / raw)
  To: Thomas Gleixner; +Cc: LKML, Frederic Weisbecker, Anna-Maria Behnsen

The nohz tick code recalculates the timer wheel's next expiry on each
idle loop iteration.

On the other hand, the base next expiry is now always cached and updated
upon timer enqueue and execution. Only timer dequeue may leave
base->next_expiry out of date (but then its stale value won't ever go
past the actual next expiry to be recalculated).

Since recalculating the next_expiry isn't a free operation, especially
when the last wheel level is reached to find out that no timer has
been enqueued at all, reuse the next expiry cache when it is known to be
reliable, which it is most of the time.

Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Anna-Maria Behnsen <anna-maria@linutronix.de>
---
Changes since v1:
_ Fix changelog's ramblings
_ Fix structure layout

 kernel/time/timer.c | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index 77e21e98ec32..96d802e9769e 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -204,6 +204,7 @@ struct timer_base {
 	unsigned long		clk;
 	unsigned long		next_expiry;
 	unsigned int		cpu;
+	bool			next_expiry_recalc;
 	bool			is_idle;
 	DECLARE_BITMAP(pending_map, WHEEL_SIZE);
 	struct hlist_head	vectors[WHEEL_SIZE];
@@ -593,6 +594,7 @@ static void enqueue_timer(struct timer_base *base, struct timer_list *timer,
 		 * can reevaluate the wheel:
 		 */
 		base->next_expiry = bucket_expiry;
+		base->next_expiry_recalc = false;
 		trigger_dyntick_cpu(base, timer);
 	}
 }
@@ -836,8 +838,10 @@ static int detach_if_pending(struct timer_list *timer, struct timer_base *base,
 	if (!timer_pending(timer))
 		return 0;
 
-	if (hlist_is_singular_node(&timer->entry, base->vectors + idx))
+	if (hlist_is_singular_node(&timer->entry, base->vectors + idx)) {
 		__clear_bit(idx, base->pending_map);
+		base->next_expiry_recalc = true;
+	}
 
 	detach_timer(timer, clear_pending);
 	return 1;
@@ -1571,6 +1575,9 @@ static unsigned long __next_timer_interrupt(struct timer_base *base)
 		clk >>= LVL_CLK_SHIFT;
 		clk += adj;
 	}
+
+	base->next_expiry_recalc = false;
+
 	return next;
 }
 
@@ -1631,9 +1638,11 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
 		return expires;
 
 	raw_spin_lock(&base->lock);
-	nextevt = __next_timer_interrupt(base);
+	if (base->next_expiry_recalc)
+		base->next_expiry = __next_timer_interrupt(base);
+	nextevt = base->next_expiry;
 	is_max_delta = (nextevt == base->clk + NEXT_TIMER_MAX_DELTA);
-	base->next_expiry = nextevt;
+
 	/*
 	 * We have a fresh next event. Check whether we can forward the
 	 * base. We can only do that when @basej is past base->clk
@@ -1725,6 +1734,12 @@ static inline void __run_timers(struct timer_base *base)
 	while (time_after_eq(jiffies, base->clk) &&
 	       time_after_eq(jiffies, base->next_expiry)) {
 		levels = collect_expired_timers(base, heads);
+		/*
+		 * The only possible reason for not finding any expired
+		 * timer at this clk is that all matching timers have been
+		 * dequeued.
+		 */
+		WARN_ON_ONCE(!levels && !base->next_expiry_recalc);
 		base->clk++;
 		base->next_expiry = __next_timer_interrupt(base);
 
-- 
2.26.2


^ permalink raw reply related	[flat|nested] 16+ messages in thread

* [tip: timers/core] timers: Recalculate next timer interrupt only when necessary
  2020-07-23 15:16 [PATCH v2] timers: Recalculate next timer interrupt only when necessary Frederic Weisbecker
@ 2020-07-24 10:59 ` tip-bot2 for Frederic Weisbecker
  2021-07-08  6:43 ` [PATCH v2] " He Zhe
  1 sibling, 0 replies; 16+ messages in thread
From: tip-bot2 for Frederic Weisbecker @ 2020-07-24 10:59 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Frederic Weisbecker, Thomas Gleixner, x86, LKML

The following commit has been merged into the timers/core branch of tip:

Commit-ID:     31cd0e119d50cf27ebe214d1a8f7ca36692f13a5
Gitweb:        https://git.kernel.org/tip/31cd0e119d50cf27ebe214d1a8f7ca36692f13a5
Author:        Frederic Weisbecker <frederic@kernel.org>
AuthorDate:    Thu, 23 Jul 2020 17:16:41 +02:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Fri, 24 Jul 2020 12:49:40 +02:00

timers: Recalculate next timer interrupt only when necessary

The nohz tick code recalculates the timer wheel's next expiry on each idle
loop iteration.

On the other hand, the base next expiry is now always cached and updated
upon timer enqueue and execution. Only timer dequeue may leave
base->next_expiry out of date (but then its stale value won't ever go past
the actual next expiry to be recalculated).

Since recalculating the next_expiry isn't a free operation, especially when
the last wheel level is reached to find out that no timer has been enqueued
at all, reuse the next expiry cache when it is known to be reliable, which
it is most of the time.

Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200723151641.12236-1-frederic@kernel.org

---
 kernel/time/timer.c | 21 ++++++++++++++++++---
 1 file changed, 18 insertions(+), 3 deletions(-)

diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index 77e21e9..96d802e 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -204,6 +204,7 @@ struct timer_base {
 	unsigned long		clk;
 	unsigned long		next_expiry;
 	unsigned int		cpu;
+	bool			next_expiry_recalc;
 	bool			is_idle;
 	DECLARE_BITMAP(pending_map, WHEEL_SIZE);
 	struct hlist_head	vectors[WHEEL_SIZE];
@@ -593,6 +594,7 @@ static void enqueue_timer(struct timer_base *base, struct timer_list *timer,
 		 * can reevaluate the wheel:
 		 */
 		base->next_expiry = bucket_expiry;
+		base->next_expiry_recalc = false;
 		trigger_dyntick_cpu(base, timer);
 	}
 }
@@ -836,8 +838,10 @@ static int detach_if_pending(struct timer_list *timer, struct timer_base *base,
 	if (!timer_pending(timer))
 		return 0;
 
-	if (hlist_is_singular_node(&timer->entry, base->vectors + idx))
+	if (hlist_is_singular_node(&timer->entry, base->vectors + idx)) {
 		__clear_bit(idx, base->pending_map);
+		base->next_expiry_recalc = true;
+	}
 
 	detach_timer(timer, clear_pending);
 	return 1;
@@ -1571,6 +1575,9 @@ static unsigned long __next_timer_interrupt(struct timer_base *base)
 		clk >>= LVL_CLK_SHIFT;
 		clk += adj;
 	}
+
+	base->next_expiry_recalc = false;
+
 	return next;
 }
 
@@ -1631,9 +1638,11 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
 		return expires;
 
 	raw_spin_lock(&base->lock);
-	nextevt = __next_timer_interrupt(base);
+	if (base->next_expiry_recalc)
+		base->next_expiry = __next_timer_interrupt(base);
+	nextevt = base->next_expiry;
 	is_max_delta = (nextevt == base->clk + NEXT_TIMER_MAX_DELTA);
-	base->next_expiry = nextevt;
+
 	/*
 	 * We have a fresh next event. Check whether we can forward the
 	 * base. We can only do that when @basej is past base->clk
@@ -1725,6 +1734,12 @@ static inline void __run_timers(struct timer_base *base)
 	while (time_after_eq(jiffies, base->clk) &&
 	       time_after_eq(jiffies, base->next_expiry)) {
 		levels = collect_expired_timers(base, heads);
+		/*
+		 * The only possible reason for not finding any expired
+		 * timer at this clk is that all matching timers have been
+		 * dequeued.
+		 */
+		WARN_ON_ONCE(!levels && !base->next_expiry_recalc);
 		base->clk++;
 		base->next_expiry = __next_timer_interrupt(base);
 

^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH v2] timers: Recalculate next timer interrupt only when necessary
  2020-07-23 15:16 [PATCH v2] timers: Recalculate next timer interrupt only when necessary Frederic Weisbecker
  2020-07-24 10:59 ` [tip: timers/core] " tip-bot2 for Frederic Weisbecker
@ 2021-07-08  6:43 ` He Zhe
  2021-07-08 11:35   ` Frederic Weisbecker
  2021-07-08 15:36   ` Frederic Weisbecker
  1 sibling, 2 replies; 16+ messages in thread
From: He Zhe @ 2021-07-08  6:43 UTC (permalink / raw)
  To: frederic; +Cc: anna-maria, linux-kernel, tglx

[-- Attachment #1: Type: text/plain, Size: 918 bytes --]

Hi,

Ever since this commit merged in, when nohz_full enabled, the counts of arch_timer interrupt on arm64 arches keep increasing on cores that have been isolated. This can be reproduced on several arm64 boards. After reverting the commit, the counts would stop increasing after boot. my .config is attached.

root@qemuarm64:~# uname -a
Linux qemuarm64 5.13.0 #1 SMP PREEMPT Mon Jul 5 07:11:27 UTC 2021 aarch64 aarch64 aarch64 GNU/Linux
root@qemuarm64:~# cat /proc/cmdline
root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0  earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5
root@qemuarm64:~# cat /proc/interrupts
           CPU0       CPU1       CPU2       CPU3       CPU4       CPU5      
 11:      12396        326        325        323        320        321     GIC-0  27 Level     arch_timer


Zhe

[-- Attachment #2: config-arm64-intterrupt --]
[-- Type: text/plain, Size: 107808 bytes --]

#
# Automatically generated file; DO NOT EDIT.
# Linux/arm64 5.13.0 Kernel Configuration
#
CONFIG_CC_VERSION_TEXT="aarch64-wrs-linux-gcc (GCC) 11.1.1 20210523"
CONFIG_CC_IS_GCC=y
CONFIG_GCC_VERSION=110101
CONFIG_CLANG_VERSION=0
CONFIG_AS_IS_GNU=y
CONFIG_AS_VERSION=23601
CONFIG_LD_IS_BFD=y
CONFIG_LD_VERSION=23601
CONFIG_LLD_VERSION=0
CONFIG_CC_CAN_LINK=y
CONFIG_CC_CAN_LINK_STATIC=y
CONFIG_CC_HAS_ASM_GOTO=y
CONFIG_CC_HAS_ASM_GOTO_OUTPUT=y
CONFIG_CC_HAS_ASM_INLINE=y
CONFIG_IRQ_WORK=y
CONFIG_BUILDTIME_TABLE_SORT=y
CONFIG_THREAD_INFO_IN_TASK=y

#
# General setup
#
CONFIG_INIT_ENV_ARG_LIMIT=32
# CONFIG_COMPILE_TEST is not set
# CONFIG_LOCALVERSION_AUTO is not set
CONFIG_BUILD_SALT=""
CONFIG_DEFAULT_INIT=""
CONFIG_DEFAULT_HOSTNAME="(none)"
CONFIG_SWAP=y
CONFIG_SYSVIPC=y
CONFIG_SYSVIPC_SYSCTL=y
CONFIG_POSIX_MQUEUE=y
CONFIG_POSIX_MQUEUE_SYSCTL=y
# CONFIG_WATCH_QUEUE is not set
CONFIG_CROSS_MEMORY_ATTACH=y
# CONFIG_USELIB is not set
# CONFIG_AUDIT is not set
CONFIG_HAVE_ARCH_AUDITSYSCALL=y

#
# IRQ subsystem
#
CONFIG_GENERIC_IRQ_PROBE=y
CONFIG_GENERIC_IRQ_SHOW=y
CONFIG_GENERIC_IRQ_SHOW_LEVEL=y
CONFIG_GENERIC_IRQ_EFFECTIVE_AFF_MASK=y
CONFIG_GENERIC_IRQ_MIGRATION=y
CONFIG_HARDIRQS_SW_RESEND=y
CONFIG_IRQ_DOMAIN=y
CONFIG_IRQ_DOMAIN_HIERARCHY=y
CONFIG_GENERIC_IRQ_IPI=y
CONFIG_GENERIC_MSI_IRQ=y
CONFIG_GENERIC_MSI_IRQ_DOMAIN=y
CONFIG_IRQ_MSI_IOMMU=y
CONFIG_HANDLE_DOMAIN_IRQ=y
CONFIG_IRQ_FORCED_THREADING=y
CONFIG_SPARSE_IRQ=y
# CONFIG_GENERIC_IRQ_DEBUGFS is not set
# end of IRQ subsystem

CONFIG_GENERIC_TIME_VSYSCALL=y
CONFIG_GENERIC_CLOCKEVENTS=y
CONFIG_ARCH_HAS_TICK_BROADCAST=y
CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y

#
# Timers subsystem
#
CONFIG_TICK_ONESHOT=y
CONFIG_NO_HZ_COMMON=y
# CONFIG_HZ_PERIODIC is not set
# CONFIG_NO_HZ_IDLE is not set
CONFIG_NO_HZ_FULL=y
CONFIG_CONTEXT_TRACKING=y
# CONFIG_CONTEXT_TRACKING_FORCE is not set
# CONFIG_NO_HZ is not set
CONFIG_HIGH_RES_TIMERS=y
# end of Timers subsystem

CONFIG_BPF=y
CONFIG_HAVE_EBPF_JIT=y
CONFIG_ARCH_WANT_DEFAULT_BPF_JIT=y

#
# BPF subsystem
#
CONFIG_BPF_SYSCALL=y
CONFIG_BPF_JIT=y
# CONFIG_BPF_JIT_ALWAYS_ON is not set
CONFIG_BPF_JIT_DEFAULT_ON=y
# CONFIG_BPF_UNPRIV_DEFAULT_OFF is not set
# CONFIG_BPF_PRELOAD is not set
# CONFIG_BPF_LSM is not set
# end of BPF subsystem

# CONFIG_PREEMPT_NONE is not set
# CONFIG_PREEMPT_VOLUNTARY is not set
CONFIG_PREEMPT=y
CONFIG_PREEMPT_COUNT=y
CONFIG_PREEMPTION=y

#
# CPU/Task time and stats accounting
#
CONFIG_VIRT_CPU_ACCOUNTING=y
CONFIG_VIRT_CPU_ACCOUNTING_GEN=y
# CONFIG_IRQ_TIME_ACCOUNTING is not set
CONFIG_BSD_PROCESS_ACCT=y
CONFIG_BSD_PROCESS_ACCT_V3=y
CONFIG_TASKSTATS=y
CONFIG_TASK_DELAY_ACCT=y
CONFIG_TASK_XACCT=y
CONFIG_TASK_IO_ACCOUNTING=y
# CONFIG_PSI is not set
# end of CPU/Task time and stats accounting

CONFIG_CPU_ISOLATION=y

#
# RCU Subsystem
#
CONFIG_TREE_RCU=y
CONFIG_PREEMPT_RCU=y
# CONFIG_RCU_EXPERT is not set
CONFIG_SRCU=y
CONFIG_TREE_SRCU=y
CONFIG_TASKS_RCU_GENERIC=y
CONFIG_TASKS_RCU=y
CONFIG_TASKS_RUDE_RCU=y
CONFIG_TASKS_TRACE_RCU=y
CONFIG_RCU_STALL_COMMON=y
CONFIG_RCU_NEED_SEGCBLIST=y
CONFIG_RCU_NOCB_CPU=y
# end of RCU Subsystem

CONFIG_IKCONFIG=y
CONFIG_IKCONFIG_PROC=y
# CONFIG_IKHEADERS is not set
CONFIG_LOG_BUF_SHIFT=17
CONFIG_LOG_CPU_MAX_BUF_SHIFT=12
CONFIG_PRINTK_SAFE_LOG_BUF_SHIFT=13
CONFIG_GENERIC_SCHED_CLOCK=y

#
# Scheduler features
#
# end of Scheduler features

CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y
CONFIG_CC_HAS_INT128=y
CONFIG_ARCH_SUPPORTS_INT128=y
CONFIG_CGROUPS=y
CONFIG_PAGE_COUNTER=y
CONFIG_MEMCG=y
CONFIG_MEMCG_SWAP=y
CONFIG_MEMCG_KMEM=y
CONFIG_BLK_CGROUP=y
CONFIG_CGROUP_WRITEBACK=y
CONFIG_CGROUP_SCHED=y
CONFIG_FAIR_GROUP_SCHED=y
# CONFIG_CFS_BANDWIDTH is not set
# CONFIG_RT_GROUP_SCHED is not set
CONFIG_CGROUP_PIDS=y
# CONFIG_CGROUP_RDMA is not set
CONFIG_CGROUP_FREEZER=y
CONFIG_CPUSETS=y
CONFIG_PROC_PID_CPUSET=y
CONFIG_CGROUP_DEVICE=y
CONFIG_CGROUP_CPUACCT=y
CONFIG_CGROUP_PERF=y
CONFIG_CGROUP_BPF=y
# CONFIG_CGROUP_MISC is not set
CONFIG_SOCK_CGROUP_DATA=y
CONFIG_NAMESPACES=y
CONFIG_UTS_NS=y
CONFIG_TIME_NS=y
CONFIG_IPC_NS=y
CONFIG_USER_NS=y
CONFIG_PID_NS=y
CONFIG_NET_NS=y
CONFIG_CHECKPOINT_RESTORE=y
# CONFIG_SCHED_AUTOGROUP is not set
# CONFIG_SYSFS_DEPRECATED is not set
CONFIG_RELAY=y
CONFIG_BLK_DEV_INITRD=y
CONFIG_INITRAMFS_SOURCE=""
CONFIG_RD_GZIP=y
CONFIG_RD_BZIP2=y
CONFIG_RD_LZMA=y
CONFIG_RD_XZ=y
CONFIG_RD_LZO=y
CONFIG_RD_LZ4=y
CONFIG_RD_ZSTD=y
# CONFIG_BOOT_CONFIG is not set
CONFIG_CC_OPTIMIZE_FOR_PERFORMANCE=y
# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set
CONFIG_LD_ORPHAN_WARN=y
CONFIG_SYSCTL=y
CONFIG_HAVE_UID16=y
CONFIG_SYSCTL_EXCEPTION_TRACE=y
# CONFIG_EXPERT is not set
CONFIG_UID16=y
CONFIG_MULTIUSER=y
CONFIG_SYSFS_SYSCALL=y
CONFIG_FHANDLE=y
CONFIG_POSIX_TIMERS=y
CONFIG_PRINTK=y
CONFIG_PRINTK_NMI=y
CONFIG_BUG=y
CONFIG_ELF_CORE=y
CONFIG_BASE_FULL=y
CONFIG_FUTEX=y
CONFIG_FUTEX_PI=y
CONFIG_HAVE_FUTEX_CMPXCHG=y
CONFIG_EPOLL=y
CONFIG_SIGNALFD=y
CONFIG_TIMERFD=y
CONFIG_EVENTFD=y
CONFIG_SHMEM=y
CONFIG_AIO=y
CONFIG_IO_URING=y
CONFIG_ADVISE_SYSCALLS=y
CONFIG_MEMBARRIER=y
CONFIG_KALLSYMS=y
CONFIG_KALLSYMS_BASE_RELATIVE=y
# CONFIG_USERFAULTFD is not set
CONFIG_ARCH_HAS_MEMBARRIER_SYNC_CORE=y
CONFIG_KCMP=y
CONFIG_RSEQ=y
# CONFIG_EMBEDDED is not set
CONFIG_HAVE_PERF_EVENTS=y

#
# Kernel Performance Events And Counters
#
CONFIG_PERF_EVENTS=y
# end of Kernel Performance Events And Counters

CONFIG_VM_EVENT_COUNTERS=y
CONFIG_SLUB_DEBUG=y
CONFIG_COMPAT_BRK=y
# CONFIG_SLAB is not set
CONFIG_SLUB=y
CONFIG_SLAB_MERGE_DEFAULT=y
# CONFIG_SLAB_FREELIST_RANDOM is not set
# CONFIG_SLAB_FREELIST_HARDENED is not set
# CONFIG_SHUFFLE_PAGE_ALLOCATOR is not set
CONFIG_SLUB_CPU_PARTIAL=y
# CONFIG_PROFILING is not set
CONFIG_TRACEPOINTS=y
# end of General setup

CONFIG_ARM64=y
CONFIG_64BIT=y
CONFIG_MMU=y
CONFIG_ARM64_PAGE_SHIFT=12
CONFIG_ARM64_CONT_PTE_SHIFT=4
CONFIG_ARM64_CONT_PMD_SHIFT=4
CONFIG_ARCH_MMAP_RND_BITS_MIN=18
CONFIG_ARCH_MMAP_RND_BITS_MAX=24
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MIN=11
CONFIG_ARCH_MMAP_RND_COMPAT_BITS_MAX=16
CONFIG_STACKTRACE_SUPPORT=y
CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000
CONFIG_LOCKDEP_SUPPORT=y
CONFIG_TRACE_IRQFLAGS_SUPPORT=y
CONFIG_GENERIC_BUG=y
CONFIG_GENERIC_BUG_RELATIVE_POINTERS=y
CONFIG_GENERIC_HWEIGHT=y
CONFIG_GENERIC_CSUM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_ZONE_DMA=y
CONFIG_ZONE_DMA32=y
CONFIG_ARCH_MHP_MEMMAP_ON_MEMORY_ENABLE=y
CONFIG_SMP=y
CONFIG_KERNEL_MODE_NEON=y
CONFIG_FIX_EARLYCON_MEM=y
CONFIG_PGTABLE_LEVELS=3
CONFIG_ARCH_SUPPORTS_UPROBES=y
CONFIG_ARCH_PROC_KCORE_TEXT=y

#
# Platform selection
#
# CONFIG_ARCH_ACTIONS is not set
# CONFIG_ARCH_SUNXI is not set
# CONFIG_ARCH_ALPINE is not set
# CONFIG_ARCH_APPLE is not set
# CONFIG_ARCH_BCM2835 is not set
# CONFIG_ARCH_BCM4908 is not set
# CONFIG_ARCH_BCM_IPROC is not set
# CONFIG_ARCH_BERLIN is not set
# CONFIG_ARCH_BITMAIN is not set
# CONFIG_ARCH_BRCMSTB is not set
# CONFIG_ARCH_EXYNOS is not set
# CONFIG_ARCH_SPARX5 is not set
# CONFIG_ARCH_K3 is not set
# CONFIG_ARCH_LAYERSCAPE is not set
# CONFIG_ARCH_LG1K is not set
# CONFIG_ARCH_HISI is not set
# CONFIG_ARCH_KEEMBAY is not set
# CONFIG_ARCH_MEDIATEK is not set
# CONFIG_ARCH_MESON is not set
# CONFIG_ARCH_MVEBU is not set
# CONFIG_ARCH_MXC is not set
# CONFIG_ARCH_QCOM is not set
# CONFIG_ARCH_REALTEK is not set
# CONFIG_ARCH_RENESAS is not set
# CONFIG_ARCH_ROCKCHIP is not set
# CONFIG_ARCH_S32 is not set
# CONFIG_ARCH_SEATTLE is not set
# CONFIG_ARCH_INTEL_SOCFPGA is not set
# CONFIG_ARCH_SYNQUACER is not set
# CONFIG_ARCH_TEGRA is not set
# CONFIG_ARCH_SPRD is not set
# CONFIG_ARCH_THUNDER is not set
# CONFIG_ARCH_THUNDER2 is not set
# CONFIG_ARCH_UNIPHIER is not set
CONFIG_ARCH_VEXPRESS=y
# CONFIG_ARCH_VISCONTI is not set
# CONFIG_ARCH_XGENE is not set
# CONFIG_ARCH_ZYNQMP is not set
# end of Platform selection

#
# Kernel Features
#

#
# ARM errata workarounds via the alternatives framework
#
CONFIG_ARM64_WORKAROUND_CLEAN_CACHE=y
CONFIG_ARM64_ERRATUM_826319=y
CONFIG_ARM64_ERRATUM_827319=y
CONFIG_ARM64_ERRATUM_824069=y
CONFIG_ARM64_ERRATUM_819472=y
CONFIG_ARM64_ERRATUM_832075=y
CONFIG_ARM64_ERRATUM_845719=y
CONFIG_ARM64_ERRATUM_843419=y
CONFIG_ARM64_LD_HAS_FIX_ERRATUM_843419=y
CONFIG_ARM64_ERRATUM_1024718=y
CONFIG_ARM64_ERRATUM_1418040=y
CONFIG_ARM64_WORKAROUND_SPECULATIVE_AT=y
CONFIG_ARM64_ERRATUM_1165522=y
CONFIG_ARM64_ERRATUM_1319367=y
CONFIG_ARM64_ERRATUM_1530923=y
CONFIG_ARM64_WORKAROUND_REPEAT_TLBI=y
CONFIG_ARM64_ERRATUM_1286807=y
CONFIG_ARM64_ERRATUM_1463225=y
CONFIG_ARM64_ERRATUM_1542419=y
CONFIG_ARM64_ERRATUM_1508412=y
CONFIG_CAVIUM_ERRATUM_22375=y
CONFIG_CAVIUM_ERRATUM_23154=y
CONFIG_CAVIUM_ERRATUM_27456=y
CONFIG_CAVIUM_ERRATUM_30115=y
CONFIG_CAVIUM_TX2_ERRATUM_219=y
CONFIG_FUJITSU_ERRATUM_010001=y
CONFIG_HISILICON_ERRATUM_161600802=y
CONFIG_QCOM_FALKOR_ERRATUM_1003=y
CONFIG_QCOM_FALKOR_ERRATUM_1009=y
CONFIG_QCOM_QDF2400_ERRATUM_0065=y
CONFIG_QCOM_FALKOR_ERRATUM_E1041=y
CONFIG_NVIDIA_CARMEL_CNP_ERRATUM=y
CONFIG_SOCIONEXT_SYNQUACER_PREITS=y
# end of ARM errata workarounds via the alternatives framework

CONFIG_ARM64_4K_PAGES=y
# CONFIG_ARM64_16K_PAGES is not set
# CONFIG_ARM64_64K_PAGES is not set
CONFIG_ARM64_VA_BITS_39=y
# CONFIG_ARM64_VA_BITS_48 is not set
CONFIG_ARM64_VA_BITS=39
CONFIG_ARM64_PA_BITS_48=y
CONFIG_ARM64_PA_BITS=48
# CONFIG_CPU_BIG_ENDIAN is not set
CONFIG_CPU_LITTLE_ENDIAN=y
# CONFIG_SCHED_MC is not set
# CONFIG_SCHED_SMT is not set
CONFIG_NR_CPUS=256
CONFIG_HOTPLUG_CPU=y
# CONFIG_NUMA is not set
CONFIG_HOLES_IN_ZONE=y
# CONFIG_HZ_100 is not set
CONFIG_HZ_250=y
# CONFIG_HZ_300 is not set
# CONFIG_HZ_1000 is not set
CONFIG_HZ=250
CONFIG_SCHED_HRTICK=y
CONFIG_ARCH_SPARSEMEM_ENABLE=y
CONFIG_HW_PERF_EVENTS=y
CONFIG_ARCH_HAS_FILTER_PGPROT=y
# CONFIG_PARAVIRT is not set
# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set
# CONFIG_KEXEC is not set
# CONFIG_KEXEC_FILE is not set
# CONFIG_CRASH_DUMP is not set
# CONFIG_XEN is not set
CONFIG_FORCE_MAX_ZONEORDER=11
CONFIG_UNMAP_KERNEL_AT_EL0=y
CONFIG_RODATA_FULL_DEFAULT_ENABLED=y
# CONFIG_ARM64_SW_TTBR0_PAN is not set
CONFIG_ARM64_TAGGED_ADDR_ABI=y
CONFIG_COMPAT=y
CONFIG_KUSER_HELPERS=y
# CONFIG_ARMV8_DEPRECATED is not set

#
# ARMv8.1 architectural features
#
CONFIG_ARM64_HW_AFDBM=y
CONFIG_ARM64_PAN=y
CONFIG_AS_HAS_LDAPR=y
CONFIG_AS_HAS_LSE_ATOMICS=y
# end of ARMv8.1 architectural features

#
# ARMv8.2 architectural features
#
# CONFIG_ARM64_PMEM is not set
CONFIG_ARM64_RAS_EXTN=y
CONFIG_ARM64_CNP=y
# end of ARMv8.2 architectural features

#
# ARMv8.3 architectural features
#
CONFIG_ARM64_PTR_AUTH=y
CONFIG_CC_HAS_BRANCH_PROT_PAC_RET=y
CONFIG_CC_HAS_SIGN_RETURN_ADDRESS=y
CONFIG_AS_HAS_PAC=y
CONFIG_AS_HAS_CFI_NEGATE_RA_STATE=y
# end of ARMv8.3 architectural features

#
# ARMv8.4 architectural features
#
CONFIG_ARM64_AMU_EXTN=y
CONFIG_AS_HAS_ARMV8_4=y
CONFIG_ARM64_TLB_RANGE=y
# end of ARMv8.4 architectural features

#
# ARMv8.5 architectural features
#
CONFIG_AS_HAS_ARMV8_5=y
CONFIG_ARM64_BTI=y
CONFIG_ARM64_BTI_KERNEL=y
CONFIG_CC_HAS_BRANCH_PROT_PAC_RET_BTI=y
CONFIG_ARM64_E0PD=y
CONFIG_ARCH_RANDOM=y
CONFIG_ARM64_AS_HAS_MTE=y
CONFIG_ARM64_MTE=y
# end of ARMv8.5 architectural features

#
# ARMv8.7 architectural features
#
CONFIG_ARM64_EPAN=y
# end of ARMv8.7 architectural features

CONFIG_ARM64_SVE=y
CONFIG_ARM64_MODULE_PLTS=y
# CONFIG_ARM64_PSEUDO_NMI is not set
CONFIG_RELOCATABLE=y
# CONFIG_RANDOMIZE_BASE is not set
CONFIG_CC_HAVE_STACKPROTECTOR_SYSREG=y
CONFIG_STACKPROTECTOR_PER_TASK=y
# end of Kernel Features

#
# Boot options
#
CONFIG_CMDLINE=""
CONFIG_EFI_STUB=y
CONFIG_EFI=y
CONFIG_DMI=y
# end of Boot options

CONFIG_SYSVIPC_COMPAT=y

#
# Power management options
#
CONFIG_SUSPEND=y
CONFIG_SUSPEND_FREEZER=y
# CONFIG_HIBERNATION is not set
CONFIG_PM_SLEEP=y
CONFIG_PM_SLEEP_SMP=y
# CONFIG_PM_AUTOSLEEP is not set
# CONFIG_PM_WAKELOCKS is not set
CONFIG_PM=y
# CONFIG_PM_DEBUG is not set
CONFIG_PM_CLK=y
CONFIG_PM_GENERIC_DOMAINS=y
# CONFIG_WQ_POWER_EFFICIENT_DEFAULT is not set
CONFIG_PM_GENERIC_DOMAINS_SLEEP=y
CONFIG_PM_GENERIC_DOMAINS_OF=y
CONFIG_CPU_PM=y
CONFIG_ARCH_HIBERNATION_POSSIBLE=y
CONFIG_ARCH_SUSPEND_POSSIBLE=y
# end of Power management options

#
# CPU Power Management
#

#
# CPU Idle
#
# CONFIG_CPU_IDLE is not set
# end of CPU Idle

#
# CPU Frequency scaling
#
# CONFIG_CPU_FREQ is not set
# end of CPU Frequency scaling
# end of CPU Power Management

#
# Firmware Drivers
#
# CONFIG_ARM_SDE_INTERFACE is not set
CONFIG_DMIID=y
# CONFIG_DMI_SYSFS is not set
# CONFIG_FW_CFG_SYSFS is not set
# CONFIG_GOOGLE_FIRMWARE is not set

#
# EFI (Extensible Firmware Interface) Support
#
CONFIG_EFI_ESRT=y
CONFIG_EFI_PARAMS_FROM_FDT=y
CONFIG_EFI_RUNTIME_WRAPPERS=y
CONFIG_EFI_GENERIC_STUB=y
CONFIG_EFI_ARMSTUB_DTB_LOADER=y
# CONFIG_EFI_GENERIC_STUB_INITRD_CMDLINE_LOADER is not set
# CONFIG_EFI_BOOTLOADER_CONTROL is not set
# CONFIG_EFI_CAPSULE_LOADER is not set
# CONFIG_EFI_TEST is not set
# CONFIG_RESET_ATTACK_MITIGATION is not set
# CONFIG_EFI_DISABLE_PCI_DMA is not set
# end of EFI (Extensible Firmware Interface) Support

CONFIG_EFI_EARLYCON=y
CONFIG_ARM_PSCI_FW=y
CONFIG_HAVE_ARM_SMCCC=y
CONFIG_HAVE_ARM_SMCCC_DISCOVERY=y
CONFIG_ARM_SMCCC_SOC_ID=y

#
# Tegra firmware driver
#
# end of Tegra firmware driver
# end of Firmware Drivers

CONFIG_ARCH_SUPPORTS_ACPI=y
# CONFIG_ACPI is not set
# CONFIG_VIRTUALIZATION is not set
# CONFIG_ARM64_CRYPTO is not set

#
# General architecture-dependent options
#
CONFIG_CRASH_CORE=y
CONFIG_KPROBES=y
# CONFIG_JUMP_LABEL is not set
CONFIG_UPROBES=y
CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y
CONFIG_KRETPROBES=y
CONFIG_HAVE_KPROBES=y
CONFIG_HAVE_KRETPROBES=y
CONFIG_HAVE_FUNCTION_ERROR_INJECTION=y
CONFIG_HAVE_NMI=y
CONFIG_HAVE_ARCH_TRACEHOOK=y
CONFIG_HAVE_DMA_CONTIGUOUS=y
CONFIG_GENERIC_SMP_IDLE_THREAD=y
CONFIG_GENERIC_IDLE_POLL_SETUP=y
CONFIG_ARCH_HAS_FORTIFY_SOURCE=y
CONFIG_ARCH_HAS_KEEPINITRD=y
CONFIG_ARCH_HAS_SET_MEMORY=y
CONFIG_ARCH_HAS_SET_DIRECT_MAP=y
CONFIG_HAVE_ARCH_THREAD_STRUCT_WHITELIST=y
CONFIG_HAVE_ASM_MODVERSIONS=y
CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y
CONFIG_HAVE_RSEQ=y
CONFIG_HAVE_FUNCTION_ARG_ACCESS_API=y
CONFIG_HAVE_HW_BREAKPOINT=y
CONFIG_HAVE_PERF_REGS=y
CONFIG_HAVE_PERF_USER_STACK_DUMP=y
CONFIG_HAVE_ARCH_JUMP_LABEL=y
CONFIG_HAVE_ARCH_JUMP_LABEL_RELATIVE=y
CONFIG_MMU_GATHER_TABLE_FREE=y
CONFIG_MMU_GATHER_RCU_TABLE_FREE=y
CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y
CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y
CONFIG_HAVE_CMPXCHG_LOCAL=y
CONFIG_HAVE_CMPXCHG_DOUBLE=y
CONFIG_ARCH_WANT_COMPAT_IPC_PARSE_VERSION=y
CONFIG_HAVE_ARCH_SECCOMP=y
CONFIG_HAVE_ARCH_SECCOMP_FILTER=y
CONFIG_SECCOMP=y
CONFIG_SECCOMP_FILTER=y
# CONFIG_SECCOMP_CACHE_DEBUG is not set
CONFIG_HAVE_ARCH_STACKLEAK=y
CONFIG_HAVE_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR=y
CONFIG_STACKPROTECTOR_STRONG=y
CONFIG_ARCH_SUPPORTS_LTO_CLANG=y
CONFIG_ARCH_SUPPORTS_LTO_CLANG_THIN=y
CONFIG_LTO_NONE=y
CONFIG_ARCH_SUPPORTS_CFI_CLANG=y
CONFIG_HAVE_CONTEXT_TRACKING=y
CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y
CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y
CONFIG_HAVE_MOVE_PUD=y
CONFIG_HAVE_MOVE_PMD=y
CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y
CONFIG_HAVE_ARCH_HUGE_VMAP=y
CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y
CONFIG_HAVE_MOD_ARCH_SPECIFIC=y
CONFIG_MODULES_USE_ELF_RELA=y
CONFIG_ARCH_HAS_ELF_RANDOMIZE=y
CONFIG_HAVE_ARCH_MMAP_RND_BITS=y
CONFIG_ARCH_MMAP_RND_BITS=18
CONFIG_HAVE_ARCH_MMAP_RND_COMPAT_BITS=y
CONFIG_ARCH_MMAP_RND_COMPAT_BITS=11
CONFIG_ARCH_WANT_DEFAULT_TOPDOWN_MMAP_LAYOUT=y
CONFIG_CLONE_BACKWARDS=y
CONFIG_OLD_SIGSUSPEND3=y
CONFIG_COMPAT_OLD_SIGACTION=y
CONFIG_COMPAT_32BIT_TIME=y
CONFIG_HAVE_ARCH_VMAP_STACK=y
CONFIG_VMAP_STACK=y
CONFIG_HAVE_ARCH_RANDOMIZE_KSTACK_OFFSET=y
# CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT is not set
CONFIG_ARCH_HAS_STRICT_KERNEL_RWX=y
CONFIG_STRICT_KERNEL_RWX=y
CONFIG_ARCH_HAS_STRICT_MODULE_RWX=y
CONFIG_STRICT_MODULE_RWX=y
CONFIG_HAVE_ARCH_COMPILER_H=y
CONFIG_HAVE_ARCH_PREL32_RELOCATIONS=y
CONFIG_ARCH_USE_MEMREMAP_PROT=y
# CONFIG_LOCK_EVENT_COUNTS is not set
CONFIG_ARCH_HAS_RELR=y
CONFIG_ARCH_WANT_LD_ORPHAN_WARN=y
CONFIG_HAVE_ARCH_PFN_VALID=y
CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y

#
# GCOV-based kernel profiling
#
# CONFIG_GCOV_KERNEL is not set
CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y
# end of GCOV-based kernel profiling

CONFIG_HAVE_GCC_PLUGINS=y
CONFIG_GCC_PLUGINS=y
# CONFIG_GCC_PLUGIN_LATENT_ENTROPY is not set
# CONFIG_GCC_PLUGIN_RANDSTRUCT is not set
# end of General architecture-dependent options

CONFIG_RT_MUTEXES=y
CONFIG_BASE_SMALL=0
CONFIG_MODULES=y
# CONFIG_MODULE_FORCE_LOAD is not set
CONFIG_MODULE_UNLOAD=y
# CONFIG_MODULE_FORCE_UNLOAD is not set
# CONFIG_MODVERSIONS is not set
# CONFIG_MODULE_SRCVERSION_ALL is not set
# CONFIG_MODULE_SIG is not set
CONFIG_MODULE_COMPRESS_NONE=y
# CONFIG_MODULE_COMPRESS_GZIP is not set
# CONFIG_MODULE_COMPRESS_XZ is not set
# CONFIG_MODULE_COMPRESS_ZSTD is not set
# CONFIG_MODULE_ALLOW_MISSING_NAMESPACE_IMPORTS is not set
CONFIG_MODPROBE_PATH="/sbin/modprobe"
CONFIG_MODULES_TREE_LOOKUP=y
CONFIG_BLOCK=y
CONFIG_BLK_SCSI_REQUEST=y
CONFIG_BLK_DEV_BSG=y
# CONFIG_BLK_DEV_BSGLIB is not set
# CONFIG_BLK_DEV_INTEGRITY is not set
# CONFIG_BLK_DEV_ZONED is not set
# CONFIG_BLK_DEV_THROTTLING is not set
# CONFIG_BLK_CMDLINE_PARSER is not set
# CONFIG_BLK_WBT is not set
# CONFIG_BLK_CGROUP_IOLATENCY is not set
# CONFIG_BLK_CGROUP_IOCOST is not set
CONFIG_BLK_DEBUG_FS=y
# CONFIG_BLK_SED_OPAL is not set
# CONFIG_BLK_INLINE_ENCRYPTION is not set

#
# Partition Types
#
# CONFIG_PARTITION_ADVANCED is not set
CONFIG_MSDOS_PARTITION=y
CONFIG_EFI_PARTITION=y
# end of Partition Types

CONFIG_BLOCK_COMPAT=y
CONFIG_BLK_MQ_PCI=y
CONFIG_BLK_MQ_VIRTIO=y
CONFIG_BLK_PM=y

#
# IO Schedulers
#
CONFIG_MQ_IOSCHED_DEADLINE=y
CONFIG_MQ_IOSCHED_KYBER=y
# CONFIG_IOSCHED_BFQ is not set
# end of IO Schedulers

CONFIG_UNINLINE_SPIN_UNLOCK=y
CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y
CONFIG_MUTEX_SPIN_ON_OWNER=y
CONFIG_RWSEM_SPIN_ON_OWNER=y
CONFIG_LOCK_SPIN_ON_OWNER=y
CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y
CONFIG_QUEUED_SPINLOCKS=y
CONFIG_ARCH_USE_QUEUED_RWLOCKS=y
CONFIG_QUEUED_RWLOCKS=y
CONFIG_ARCH_HAS_NON_OVERLAPPING_ADDRESS_SPACE=y
CONFIG_ARCH_HAS_SYSCALL_WRAPPER=y
CONFIG_FREEZER=y

#
# Executable file formats
#
CONFIG_BINFMT_ELF=y
CONFIG_COMPAT_BINFMT_ELF=y
CONFIG_ARCH_BINFMT_ELF_STATE=y
CONFIG_ARCH_HAVE_ELF_PROT=y
CONFIG_ARCH_USE_GNU_PROPERTY=y
CONFIG_ELFCORE=y
CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS=y
CONFIG_BINFMT_SCRIPT=y
CONFIG_BINFMT_MISC=m
CONFIG_COREDUMP=y
# end of Executable file formats

#
# Memory Management options
#
CONFIG_SPARSEMEM=y
CONFIG_SPARSEMEM_EXTREME=y
CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y
CONFIG_SPARSEMEM_VMEMMAP=y
CONFIG_HAVE_FAST_GUP=y
CONFIG_ARCH_KEEP_MEMBLOCK=y
CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y
# CONFIG_MEMORY_HOTPLUG is not set
CONFIG_ARCH_ENABLE_MEMORY_HOTREMOVE=y
CONFIG_SPLIT_PTLOCK_CPUS=4
CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y
CONFIG_MEMORY_BALLOON=y
CONFIG_BALLOON_COMPACTION=y
CONFIG_COMPACTION=y
CONFIG_PAGE_REPORTING=y
CONFIG_MIGRATION=y
CONFIG_PHYS_ADDR_T_64BIT=y
# CONFIG_KSM is not set
CONFIG_DEFAULT_MMAP_MIN_ADDR=4096
CONFIG_ARCH_SUPPORTS_MEMORY_FAILURE=y
# CONFIG_MEMORY_FAILURE is not set
# CONFIG_TRANSPARENT_HUGEPAGE is not set
# CONFIG_CLEANCACHE is not set
# CONFIG_FRONTSWAP is not set
# CONFIG_CMA is not set
# CONFIG_ZPOOL is not set
# CONFIG_ZBUD is not set
# CONFIG_ZSMALLOC is not set
CONFIG_GENERIC_EARLY_IOREMAP=y
# CONFIG_DEFERRED_STRUCT_PAGE_INIT is not set
# CONFIG_IDLE_PAGE_TRACKING is not set
CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y
CONFIG_ARCH_HAS_PTE_DEVMAP=y
CONFIG_ARCH_USES_HIGH_VMA_FLAGS=y
# CONFIG_PERCPU_STATS is not set
# CONFIG_GUP_TEST is not set
CONFIG_ARCH_HAS_PTE_SPECIAL=y
# end of Memory Management options

CONFIG_NET=y
CONFIG_NET_INGRESS=y
CONFIG_NET_EGRESS=y
CONFIG_SKB_EXTENSIONS=y

#
# Networking options
#
CONFIG_PACKET=y
# CONFIG_PACKET_DIAG is not set
CONFIG_UNIX=y
CONFIG_UNIX_SCM=y
# CONFIG_UNIX_DIAG is not set
# CONFIG_TLS is not set
CONFIG_XFRM=y
CONFIG_XFRM_ALGO=y
CONFIG_XFRM_USER=m
# CONFIG_XFRM_INTERFACE is not set
CONFIG_XFRM_SUB_POLICY=y
CONFIG_XFRM_MIGRATE=y
# CONFIG_XFRM_STATISTICS is not set
CONFIG_XFRM_AH=y
CONFIG_XFRM_ESP=y
CONFIG_XFRM_IPCOMP=m
CONFIG_NET_KEY=m
CONFIG_NET_KEY_MIGRATE=y
# CONFIG_XDP_SOCKETS is not set
CONFIG_INET=y
CONFIG_IP_MULTICAST=y
CONFIG_IP_ADVANCED_ROUTER=y
# CONFIG_IP_FIB_TRIE_STATS is not set
CONFIG_IP_MULTIPLE_TABLES=y
CONFIG_IP_ROUTE_MULTIPATH=y
CONFIG_IP_ROUTE_VERBOSE=y
CONFIG_IP_ROUTE_CLASSID=y
CONFIG_IP_PNP=y
CONFIG_IP_PNP_DHCP=y
CONFIG_IP_PNP_BOOTP=y
CONFIG_IP_PNP_RARP=y
CONFIG_NET_IPIP=m
CONFIG_NET_IPGRE_DEMUX=m
CONFIG_NET_IP_TUNNEL=y
CONFIG_NET_IPGRE=m
CONFIG_NET_IPGRE_BROADCAST=y
CONFIG_IP_MROUTE_COMMON=y
CONFIG_IP_MROUTE=y
# CONFIG_IP_MROUTE_MULTIPLE_TABLES is not set
CONFIG_IP_PIMSM_V1=y
CONFIG_IP_PIMSM_V2=y
CONFIG_SYN_COOKIES=y
# CONFIG_NET_IPVTI is not set
CONFIG_NET_UDP_TUNNEL=m
# CONFIG_NET_FOU is not set
# CONFIG_NET_FOU_IP_TUNNELS is not set
CONFIG_INET_AH=m
CONFIG_INET_ESP=m
# CONFIG_INET_ESP_OFFLOAD is not set
# CONFIG_INET_ESPINTCP is not set
CONFIG_INET_IPCOMP=m
CONFIG_INET_XFRM_TUNNEL=m
CONFIG_INET_TUNNEL=y
CONFIG_INET_DIAG=y
CONFIG_INET_TCP_DIAG=y
# CONFIG_INET_UDP_DIAG is not set
# CONFIG_INET_RAW_DIAG is not set
# CONFIG_INET_DIAG_DESTROY is not set
# CONFIG_TCP_CONG_ADVANCED is not set
CONFIG_TCP_CONG_CUBIC=y
CONFIG_DEFAULT_TCP_CONG="cubic"
# CONFIG_TCP_MD5SIG is not set
CONFIG_IPV6=y
CONFIG_IPV6_ROUTER_PREF=y
# CONFIG_IPV6_ROUTE_INFO is not set
# CONFIG_IPV6_OPTIMISTIC_DAD is not set
CONFIG_INET6_AH=y
CONFIG_INET6_ESP=y
# CONFIG_INET6_ESP_OFFLOAD is not set
# CONFIG_INET6_ESPINTCP is not set
CONFIG_INET6_IPCOMP=m
# CONFIG_IPV6_MIP6 is not set
# CONFIG_IPV6_ILA is not set
CONFIG_INET6_XFRM_TUNNEL=m
CONFIG_INET6_TUNNEL=m
# CONFIG_IPV6_VTI is not set
CONFIG_IPV6_SIT=y
# CONFIG_IPV6_SIT_6RD is not set
CONFIG_IPV6_NDISC_NODETYPE=y
CONFIG_IPV6_TUNNEL=m
# CONFIG_IPV6_GRE is not set
# CONFIG_IPV6_MULTIPLE_TABLES is not set
# CONFIG_IPV6_MROUTE is not set
# CONFIG_IPV6_SEG6_LWTUNNEL is not set
# CONFIG_IPV6_SEG6_HMAC is not set
# CONFIG_IPV6_RPL_LWTUNNEL is not set
# CONFIG_NETLABEL is not set
# CONFIG_MPTCP is not set
# CONFIG_NETWORK_SECMARK is not set
# CONFIG_NETWORK_PHY_TIMESTAMPING is not set
CONFIG_NETFILTER=y
CONFIG_NETFILTER_ADVANCED=y
CONFIG_BRIDGE_NETFILTER=y

#
# Core Netfilter Configuration
#
CONFIG_NETFILTER_INGRESS=y
CONFIG_NETFILTER_NETLINK=m
CONFIG_NETFILTER_FAMILY_BRIDGE=y
CONFIG_NETFILTER_FAMILY_ARP=y
# CONFIG_NETFILTER_NETLINK_ACCT is not set
CONFIG_NETFILTER_NETLINK_QUEUE=m
CONFIG_NETFILTER_NETLINK_LOG=m
# CONFIG_NETFILTER_NETLINK_OSF is not set
CONFIG_NF_CONNTRACK=m
CONFIG_NF_LOG_SYSLOG=m
CONFIG_NETFILTER_CONNCOUNT=m
CONFIG_NF_CONNTRACK_MARK=y
# CONFIG_NF_CONNTRACK_ZONES is not set
CONFIG_NF_CONNTRACK_PROCFS=y
# CONFIG_NF_CONNTRACK_EVENTS is not set
# CONFIG_NF_CONNTRACK_TIMEOUT is not set
# CONFIG_NF_CONNTRACK_TIMESTAMP is not set
# CONFIG_NF_CONNTRACK_LABELS is not set
CONFIG_NF_CT_PROTO_DCCP=y
CONFIG_NF_CT_PROTO_GRE=y
CONFIG_NF_CT_PROTO_SCTP=y
CONFIG_NF_CT_PROTO_UDPLITE=y
CONFIG_NF_CONNTRACK_AMANDA=m
CONFIG_NF_CONNTRACK_FTP=m
CONFIG_NF_CONNTRACK_H323=m
CONFIG_NF_CONNTRACK_IRC=m
CONFIG_NF_CONNTRACK_BROADCAST=m
CONFIG_NF_CONNTRACK_NETBIOS_NS=m
# CONFIG_NF_CONNTRACK_SNMP is not set
CONFIG_NF_CONNTRACK_PPTP=m
CONFIG_NF_CONNTRACK_SANE=m
CONFIG_NF_CONNTRACK_SIP=m
CONFIG_NF_CONNTRACK_TFTP=m
CONFIG_NF_CT_NETLINK=m
# CONFIG_NETFILTER_NETLINK_GLUE_CT is not set
CONFIG_NF_NAT=m
CONFIG_NF_NAT_AMANDA=m
CONFIG_NF_NAT_FTP=m
CONFIG_NF_NAT_IRC=m
CONFIG_NF_NAT_SIP=m
CONFIG_NF_NAT_TFTP=m
CONFIG_NF_NAT_REDIRECT=y
CONFIG_NF_NAT_MASQUERADE=y
CONFIG_NETFILTER_SYNPROXY=m
# CONFIG_NF_TABLES is not set
CONFIG_NETFILTER_XTABLES=m
CONFIG_NETFILTER_XTABLES_COMPAT=y

#
# Xtables combined modules
#
CONFIG_NETFILTER_XT_MARK=m
CONFIG_NETFILTER_XT_CONNMARK=m

#
# Xtables targets
#
CONFIG_NETFILTER_XT_TARGET_CHECKSUM=m
CONFIG_NETFILTER_XT_TARGET_CLASSIFY=m
CONFIG_NETFILTER_XT_TARGET_CONNMARK=m
CONFIG_NETFILTER_XT_TARGET_CT=m
CONFIG_NETFILTER_XT_TARGET_DSCP=m
CONFIG_NETFILTER_XT_TARGET_HL=m
# CONFIG_NETFILTER_XT_TARGET_HMARK is not set
# CONFIG_NETFILTER_XT_TARGET_IDLETIMER is not set
CONFIG_NETFILTER_XT_TARGET_LOG=m
CONFIG_NETFILTER_XT_TARGET_MARK=m
CONFIG_NETFILTER_XT_NAT=m
CONFIG_NETFILTER_XT_TARGET_NETMAP=m
CONFIG_NETFILTER_XT_TARGET_NFLOG=m
CONFIG_NETFILTER_XT_TARGET_NFQUEUE=m
CONFIG_NETFILTER_XT_TARGET_NOTRACK=m
# CONFIG_NETFILTER_XT_TARGET_RATEEST is not set
CONFIG_NETFILTER_XT_TARGET_REDIRECT=m
CONFIG_NETFILTER_XT_TARGET_MASQUERADE=m
# CONFIG_NETFILTER_XT_TARGET_TEE is not set
# CONFIG_NETFILTER_XT_TARGET_TPROXY is not set
CONFIG_NETFILTER_XT_TARGET_TRACE=m
CONFIG_NETFILTER_XT_TARGET_TCPMSS=m
# CONFIG_NETFILTER_XT_TARGET_TCPOPTSTRIP is not set

#
# Xtables matches
#
CONFIG_NETFILTER_XT_MATCH_ADDRTYPE=m
# CONFIG_NETFILTER_XT_MATCH_BPF is not set
# CONFIG_NETFILTER_XT_MATCH_CGROUP is not set
# CONFIG_NETFILTER_XT_MATCH_CLUSTER is not set
CONFIG_NETFILTER_XT_MATCH_COMMENT=m
CONFIG_NETFILTER_XT_MATCH_CONNBYTES=m
# CONFIG_NETFILTER_XT_MATCH_CONNLABEL is not set
CONFIG_NETFILTER_XT_MATCH_CONNLIMIT=m
CONFIG_NETFILTER_XT_MATCH_CONNMARK=m
CONFIG_NETFILTER_XT_MATCH_CONNTRACK=m
# CONFIG_NETFILTER_XT_MATCH_CPU is not set
CONFIG_NETFILTER_XT_MATCH_DCCP=m
# CONFIG_NETFILTER_XT_MATCH_DEVGROUP is not set
CONFIG_NETFILTER_XT_MATCH_DSCP=m
CONFIG_NETFILTER_XT_MATCH_ECN=m
CONFIG_NETFILTER_XT_MATCH_ESP=m
CONFIG_NETFILTER_XT_MATCH_HASHLIMIT=m
CONFIG_NETFILTER_XT_MATCH_HELPER=m
CONFIG_NETFILTER_XT_MATCH_HL=m
# CONFIG_NETFILTER_XT_MATCH_IPCOMP is not set
# CONFIG_NETFILTER_XT_MATCH_IPRANGE is not set
# CONFIG_NETFILTER_XT_MATCH_L2TP is not set
CONFIG_NETFILTER_XT_MATCH_LENGTH=m
CONFIG_NETFILTER_XT_MATCH_LIMIT=m
CONFIG_NETFILTER_XT_MATCH_MAC=m
CONFIG_NETFILTER_XT_MATCH_MARK=m
CONFIG_NETFILTER_XT_MATCH_MULTIPORT=m
# CONFIG_NETFILTER_XT_MATCH_NFACCT is not set
# CONFIG_NETFILTER_XT_MATCH_OSF is not set
# CONFIG_NETFILTER_XT_MATCH_OWNER is not set
CONFIG_NETFILTER_XT_MATCH_POLICY=m
# CONFIG_NETFILTER_XT_MATCH_PHYSDEV is not set
CONFIG_NETFILTER_XT_MATCH_PKTTYPE=m
CONFIG_NETFILTER_XT_MATCH_QUOTA=m
# CONFIG_NETFILTER_XT_MATCH_RATEEST is not set
CONFIG_NETFILTER_XT_MATCH_REALM=m
# CONFIG_NETFILTER_XT_MATCH_RECENT is not set
CONFIG_NETFILTER_XT_MATCH_SCTP=m
# CONFIG_NETFILTER_XT_MATCH_SOCKET is not set
CONFIG_NETFILTER_XT_MATCH_STATE=m
CONFIG_NETFILTER_XT_MATCH_STATISTIC=m
CONFIG_NETFILTER_XT_MATCH_STRING=m
CONFIG_NETFILTER_XT_MATCH_TCPMSS=m
# CONFIG_NETFILTER_XT_MATCH_TIME is not set
CONFIG_NETFILTER_XT_MATCH_U32=m
# end of Core Netfilter Configuration

# CONFIG_IP_SET is not set
# CONFIG_IP_VS is not set

#
# IP: Netfilter Configuration
#
CONFIG_NF_DEFRAG_IPV4=m
# CONFIG_NF_SOCKET_IPV4 is not set
# CONFIG_NF_TPROXY_IPV4 is not set
# CONFIG_NF_DUP_IPV4 is not set
# CONFIG_NF_LOG_ARP is not set
# CONFIG_NF_LOG_IPV4 is not set
CONFIG_NF_REJECT_IPV4=m
CONFIG_NF_NAT_PPTP=m
CONFIG_NF_NAT_H323=m
CONFIG_IP_NF_IPTABLES=m
CONFIG_IP_NF_MATCH_AH=m
CONFIG_IP_NF_MATCH_ECN=m
CONFIG_IP_NF_MATCH_RPFILTER=m
CONFIG_IP_NF_MATCH_TTL=m
CONFIG_IP_NF_FILTER=m
CONFIG_IP_NF_TARGET_REJECT=m
CONFIG_IP_NF_TARGET_SYNPROXY=m
CONFIG_IP_NF_NAT=m
CONFIG_IP_NF_TARGET_MASQUERADE=m
CONFIG_IP_NF_TARGET_NETMAP=m
CONFIG_IP_NF_TARGET_REDIRECT=m
CONFIG_IP_NF_MANGLE=m
CONFIG_IP_NF_TARGET_CLUSTERIP=m
CONFIG_IP_NF_TARGET_ECN=m
CONFIG_IP_NF_TARGET_TTL=m
CONFIG_IP_NF_RAW=m
CONFIG_IP_NF_SECURITY=m
CONFIG_IP_NF_ARPTABLES=m
CONFIG_IP_NF_ARPFILTER=m
CONFIG_IP_NF_ARP_MANGLE=m
# end of IP: Netfilter Configuration

#
# IPv6: Netfilter Configuration
#
# CONFIG_NF_SOCKET_IPV6 is not set
# CONFIG_NF_TPROXY_IPV6 is not set
# CONFIG_NF_DUP_IPV6 is not set
# CONFIG_NF_REJECT_IPV6 is not set
CONFIG_NF_LOG_IPV6=m
CONFIG_IP6_NF_IPTABLES=m
# CONFIG_IP6_NF_MATCH_AH is not set
CONFIG_IP6_NF_MATCH_EUI64=m
CONFIG_IP6_NF_MATCH_FRAG=m
CONFIG_IP6_NF_MATCH_OPTS=m
CONFIG_IP6_NF_MATCH_HL=m
CONFIG_IP6_NF_MATCH_IPV6HEADER=m
# CONFIG_IP6_NF_MATCH_MH is not set
# CONFIG_IP6_NF_MATCH_RPFILTER is not set
CONFIG_IP6_NF_MATCH_RT=m
# CONFIG_IP6_NF_MATCH_SRH is not set
# CONFIG_IP6_NF_TARGET_HL is not set
CONFIG_IP6_NF_FILTER=m
# CONFIG_IP6_NF_TARGET_REJECT is not set
# CONFIG_IP6_NF_TARGET_SYNPROXY is not set
CONFIG_IP6_NF_MANGLE=m
CONFIG_IP6_NF_RAW=m
# CONFIG_IP6_NF_SECURITY is not set
CONFIG_IP6_NF_NAT=m
# CONFIG_IP6_NF_TARGET_MASQUERADE is not set
# CONFIG_IP6_NF_TARGET_NPT is not set
# end of IPv6: Netfilter Configuration

CONFIG_NF_DEFRAG_IPV6=m
# CONFIG_NF_CONNTRACK_BRIDGE is not set
CONFIG_BRIDGE_NF_EBTABLES=m
CONFIG_BRIDGE_EBT_BROUTE=m
CONFIG_BRIDGE_EBT_T_FILTER=m
CONFIG_BRIDGE_EBT_T_NAT=m
CONFIG_BRIDGE_EBT_802_3=m
CONFIG_BRIDGE_EBT_AMONG=m
CONFIG_BRIDGE_EBT_ARP=m
CONFIG_BRIDGE_EBT_IP=m
CONFIG_BRIDGE_EBT_IP6=m
CONFIG_BRIDGE_EBT_LIMIT=m
CONFIG_BRIDGE_EBT_MARK=m
CONFIG_BRIDGE_EBT_PKTTYPE=m
CONFIG_BRIDGE_EBT_STP=m
CONFIG_BRIDGE_EBT_VLAN=m
CONFIG_BRIDGE_EBT_ARPREPLY=m
CONFIG_BRIDGE_EBT_DNAT=m
CONFIG_BRIDGE_EBT_MARK_T=m
CONFIG_BRIDGE_EBT_REDIRECT=m
CONFIG_BRIDGE_EBT_SNAT=m
CONFIG_BRIDGE_EBT_LOG=m
CONFIG_BRIDGE_EBT_NFLOG=m
# CONFIG_BPFILTER is not set
CONFIG_IP_SCTP=m
# CONFIG_SCTP_DBG_OBJCNT is not set
CONFIG_SCTP_DEFAULT_COOKIE_HMAC_MD5=y
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_SHA1 is not set
# CONFIG_SCTP_DEFAULT_COOKIE_HMAC_NONE is not set
CONFIG_SCTP_COOKIE_HMAC_MD5=y
# CONFIG_SCTP_COOKIE_HMAC_SHA1 is not set
CONFIG_INET_SCTP_DIAG=m
# CONFIG_RDS is not set
CONFIG_TIPC=m
CONFIG_TIPC_MEDIA_UDP=y
CONFIG_TIPC_CRYPTO=y
CONFIG_TIPC_DIAG=m
# CONFIG_ATM is not set
# CONFIG_L2TP is not set
CONFIG_STP=y
CONFIG_BRIDGE=y
CONFIG_BRIDGE_IGMP_SNOOPING=y
# CONFIG_BRIDGE_VLAN_FILTERING is not set
# CONFIG_BRIDGE_MRP is not set
# CONFIG_BRIDGE_CFM is not set
# CONFIG_NET_DSA is not set
CONFIG_VLAN_8021Q=m
# CONFIG_VLAN_8021Q_GVRP is not set
# CONFIG_VLAN_8021Q_MVRP is not set
# CONFIG_DECNET is not set
CONFIG_LLC=y
# CONFIG_LLC2 is not set
# CONFIG_ATALK is not set
# CONFIG_X25 is not set
# CONFIG_LAPB is not set
# CONFIG_PHONET is not set
# CONFIG_6LOWPAN is not set
# CONFIG_IEEE802154 is not set
CONFIG_NET_SCHED=y

#
# Queueing/Scheduling
#
CONFIG_NET_SCH_CBQ=m
CONFIG_NET_SCH_HTB=m
CONFIG_NET_SCH_HFSC=m
CONFIG_NET_SCH_PRIO=m
# CONFIG_NET_SCH_MULTIQ is not set
CONFIG_NET_SCH_RED=m
# CONFIG_NET_SCH_SFB is not set
CONFIG_NET_SCH_SFQ=m
CONFIG_NET_SCH_TEQL=m
CONFIG_NET_SCH_TBF=m
# CONFIG_NET_SCH_CBS is not set
# CONFIG_NET_SCH_ETF is not set
# CONFIG_NET_SCH_TAPRIO is not set
CONFIG_NET_SCH_GRED=m
CONFIG_NET_SCH_DSMARK=m
CONFIG_NET_SCH_NETEM=m
# CONFIG_NET_SCH_DRR is not set
# CONFIG_NET_SCH_MQPRIO is not set
# CONFIG_NET_SCH_SKBPRIO is not set
# CONFIG_NET_SCH_CHOKE is not set
# CONFIG_NET_SCH_QFQ is not set
CONFIG_NET_SCH_CODEL=m
CONFIG_NET_SCH_FQ_CODEL=m
# CONFIG_NET_SCH_CAKE is not set
# CONFIG_NET_SCH_FQ is not set
# CONFIG_NET_SCH_HHF is not set
# CONFIG_NET_SCH_PIE is not set
CONFIG_NET_SCH_INGRESS=m
# CONFIG_NET_SCH_PLUG is not set
# CONFIG_NET_SCH_ETS is not set
# CONFIG_NET_SCH_DEFAULT is not set

#
# Classification
#
CONFIG_NET_CLS=y
CONFIG_NET_CLS_BASIC=y
# CONFIG_NET_CLS_TCINDEX is not set
# CONFIG_NET_CLS_ROUTE4 is not set
# CONFIG_NET_CLS_FW is not set
CONFIG_NET_CLS_U32=y
# CONFIG_CLS_U32_PERF is not set
# CONFIG_CLS_U32_MARK is not set
# CONFIG_NET_CLS_RSVP is not set
# CONFIG_NET_CLS_RSVP6 is not set
# CONFIG_NET_CLS_FLOW is not set
CONFIG_NET_CLS_CGROUP=m
# CONFIG_NET_CLS_BPF is not set
# CONFIG_NET_CLS_FLOWER is not set
# CONFIG_NET_CLS_MATCHALL is not set
# CONFIG_NET_EMATCH is not set
CONFIG_NET_CLS_ACT=y
CONFIG_NET_ACT_POLICE=m
# CONFIG_NET_ACT_GACT is not set
CONFIG_NET_ACT_MIRRED=m
# CONFIG_NET_ACT_SAMPLE is not set
# CONFIG_NET_ACT_IPT is not set
# CONFIG_NET_ACT_NAT is not set
# CONFIG_NET_ACT_PEDIT is not set
# CONFIG_NET_ACT_SIMP is not set
# CONFIG_NET_ACT_SKBEDIT is not set
# CONFIG_NET_ACT_CSUM is not set
# CONFIG_NET_ACT_MPLS is not set
# CONFIG_NET_ACT_VLAN is not set
# CONFIG_NET_ACT_BPF is not set
# CONFIG_NET_ACT_CONNMARK is not set
# CONFIG_NET_ACT_CTINFO is not set
# CONFIG_NET_ACT_SKBMOD is not set
# CONFIG_NET_ACT_IFE is not set
# CONFIG_NET_ACT_TUNNEL_KEY is not set
# CONFIG_NET_ACT_GATE is not set
# CONFIG_NET_TC_SKB_EXT is not set
CONFIG_NET_SCH_FIFO=y
# CONFIG_DCB is not set
CONFIG_DNS_RESOLVER=y
# CONFIG_BATMAN_ADV is not set
CONFIG_OPENVSWITCH=m
CONFIG_OPENVSWITCH_GRE=m
CONFIG_OPENVSWITCH_VXLAN=m
CONFIG_VSOCKETS=y
CONFIG_VSOCKETS_DIAG=y
CONFIG_VSOCKETS_LOOPBACK=y
CONFIG_VIRTIO_VSOCKETS=y
CONFIG_VIRTIO_VSOCKETS_COMMON=y
# CONFIG_NETLINK_DIAG is not set
CONFIG_MPLS=y
CONFIG_NET_MPLS_GSO=m
# CONFIG_MPLS_ROUTING is not set
CONFIG_NET_NSH=m
# CONFIG_HSR is not set
# CONFIG_NET_SWITCHDEV is not set
# CONFIG_NET_L3_MASTER_DEV is not set
# CONFIG_QRTR is not set
# CONFIG_NET_NCSI is not set
CONFIG_PCPU_DEV_REFCNT=y
CONFIG_RPS=y
CONFIG_RFS_ACCEL=y
CONFIG_SOCK_RX_QUEUE_MAPPING=y
CONFIG_XPS=y
CONFIG_CGROUP_NET_PRIO=y
CONFIG_CGROUP_NET_CLASSID=y
CONFIG_NET_RX_BUSY_POLL=y
CONFIG_BQL=y
# CONFIG_BPF_STREAM_PARSER is not set
CONFIG_NET_FLOW_LIMIT=y

#
# Network testing
#
CONFIG_NET_PKTGEN=m
# CONFIG_NET_DROP_MONITOR is not set
# end of Network testing
# end of Networking options

# CONFIG_HAMRADIO is not set
# CONFIG_CAN is not set
# CONFIG_BT is not set
# CONFIG_AF_RXRPC is not set
# CONFIG_AF_KCM is not set
CONFIG_FIB_RULES=y
CONFIG_WIRELESS=y
# CONFIG_CFG80211 is not set

#
# CFG80211 needs to be enabled for MAC80211
#
CONFIG_MAC80211_STA_HASH_MAX_SIZE=0
CONFIG_RFKILL=y
CONFIG_RFKILL_INPUT=y
# CONFIG_RFKILL_GPIO is not set
# CONFIG_NET_9P is not set
# CONFIG_CAIF is not set
# CONFIG_CEPH_LIB is not set
# CONFIG_NFC is not set
# CONFIG_PSAMPLE is not set
# CONFIG_NET_IFE is not set
# CONFIG_LWTUNNEL is not set
CONFIG_DST_CACHE=y
CONFIG_GRO_CELLS=y
CONFIG_NET_SOCK_MSG=y
CONFIG_FAILOVER=y
CONFIG_ETHTOOL_NETLINK=y

#
# Device Drivers
#
CONFIG_ARM_AMBA=y
CONFIG_HAVE_PCI=y
CONFIG_PCI=y
CONFIG_PCI_DOMAINS=y
CONFIG_PCI_DOMAINS_GENERIC=y
CONFIG_PCI_SYSCALL=y
# CONFIG_PCIEPORTBUS is not set
CONFIG_PCIEASPM=y
CONFIG_PCIEASPM_DEFAULT=y
# CONFIG_PCIEASPM_POWERSAVE is not set
# CONFIG_PCIEASPM_POWER_SUPERSAVE is not set
# CONFIG_PCIEASPM_PERFORMANCE is not set
# CONFIG_PCIE_PTM is not set
CONFIG_PCI_MSI=y
CONFIG_PCI_MSI_IRQ_DOMAIN=y
CONFIG_PCI_QUIRKS=y
# CONFIG_PCI_STUB is not set
CONFIG_PCI_ECAM=y
# CONFIG_PCI_IOV is not set
# CONFIG_PCI_PRI is not set
# CONFIG_PCI_PASID is not set
CONFIG_PCI_LABEL=y
# CONFIG_HOTPLUG_PCI is not set

#
# PCI controller drivers
#
# CONFIG_PCI_FTPCI100 is not set
CONFIG_PCI_HOST_COMMON=y
CONFIG_PCI_HOST_GENERIC=y
# CONFIG_PCIE_XILINX is not set
# CONFIG_PCI_XGENE is not set
# CONFIG_PCIE_ALTERA is not set
# CONFIG_PCI_HOST_THUNDER_PEM is not set
# CONFIG_PCI_HOST_THUNDER_ECAM is not set
# CONFIG_PCIE_MICROCHIP_HOST is not set

#
# DesignWare PCI Core Support
#
# CONFIG_PCIE_DW_PLAT_HOST is not set
# CONFIG_PCI_HISI is not set
# CONFIG_PCIE_KIRIN is not set
# CONFIG_PCI_MESON is not set
# CONFIG_PCIE_AL is not set
# end of DesignWare PCI Core Support

#
# Mobiveil PCIe Core Support
#
# end of Mobiveil PCIe Core Support

#
# Cadence PCIe controllers support
#
# CONFIG_PCIE_CADENCE_PLAT_HOST is not set
# CONFIG_PCI_J721E_HOST is not set
# end of Cadence PCIe controllers support
# end of PCI controller drivers

#
# PCI Endpoint
#
# CONFIG_PCI_ENDPOINT is not set
# end of PCI Endpoint

#
# PCI switch controller drivers
#
# CONFIG_PCI_SW_SWITCHTEC is not set
# end of PCI switch controller drivers

# CONFIG_CXL_BUS is not set
# CONFIG_PCCARD is not set
# CONFIG_RAPIDIO is not set

#
# Generic Driver Options
#
# CONFIG_UEVENT_HELPER is not set
CONFIG_DEVTMPFS=y
CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y

#
# Firmware loader
#
CONFIG_FW_LOADER=y
CONFIG_EXTRA_FIRMWARE=""
# CONFIG_FW_LOADER_USER_HELPER is not set
# CONFIG_FW_LOADER_COMPRESS is not set
CONFIG_FW_CACHE=y
# end of Firmware loader

CONFIG_ALLOW_DEV_COREDUMP=y
# CONFIG_TEST_ASYNC_DRIVER_PROBE is not set
CONFIG_GENERIC_CPU_AUTOPROBE=y
CONFIG_GENERIC_CPU_VULNERABILITIES=y
CONFIG_SOC_BUS=y
CONFIG_REGMAP=y
CONFIG_REGMAP_MMIO=y
CONFIG_DMA_SHARED_BUFFER=y
# CONFIG_DMA_FENCE_TRACE is not set
CONFIG_GENERIC_ARCH_TOPOLOGY=y
# end of Generic Driver Options

#
# Bus devices
#
# CONFIG_BRCMSTB_GISB_ARB is not set
# CONFIG_SIMPLE_PM_BUS is not set
CONFIG_VEXPRESS_CONFIG=y
# CONFIG_MHI_BUS is not set
# end of Bus devices

# CONFIG_CONNECTOR is not set
# CONFIG_GNSS is not set
# CONFIG_MTD is not set
CONFIG_DTC=y
CONFIG_OF=y
# CONFIG_OF_UNITTEST is not set
CONFIG_OF_FLATTREE=y
CONFIG_OF_EARLY_FLATTREE=y
CONFIG_OF_KOBJ=y
CONFIG_OF_ADDRESS=y
CONFIG_OF_IRQ=y
CONFIG_OF_NET=y
CONFIG_OF_RESERVED_MEM=y
# CONFIG_OF_OVERLAY is not set
# CONFIG_PARPORT is not set
CONFIG_BLK_DEV=y
# CONFIG_BLK_DEV_NULL_BLK is not set
# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set
CONFIG_BLK_DEV_LOOP=y
CONFIG_BLK_DEV_LOOP_MIN_COUNT=8
CONFIG_BLK_DEV_CRYPTOLOOP=m
# CONFIG_BLK_DEV_DRBD is not set
CONFIG_BLK_DEV_NBD=m
# CONFIG_BLK_DEV_SX8 is not set
CONFIG_BLK_DEV_RAM=y
CONFIG_BLK_DEV_RAM_COUNT=16
CONFIG_BLK_DEV_RAM_SIZE=4096
# CONFIG_CDROM_PKTCDVD is not set
# CONFIG_ATA_OVER_ETH is not set
CONFIG_VIRTIO_BLK=y
# CONFIG_BLK_DEV_RBD is not set
# CONFIG_BLK_DEV_RSXX is not set

#
# NVME Support
#
# CONFIG_BLK_DEV_NVME is not set
# CONFIG_NVME_FC is not set
# CONFIG_NVME_TCP is not set
# CONFIG_NVME_TARGET is not set
# end of NVME Support

#
# Misc devices
#
# CONFIG_AD525X_DPOT is not set
# CONFIG_DUMMY_IRQ is not set
# CONFIG_PHANTOM is not set
# CONFIG_TIFM_CORE is not set
# CONFIG_ICS932S401 is not set
# CONFIG_ENCLOSURE_SERVICES is not set
# CONFIG_HP_ILO is not set
# CONFIG_APDS9802ALS is not set
# CONFIG_ISL29003 is not set
# CONFIG_ISL29020 is not set
# CONFIG_SENSORS_TSL2550 is not set
# CONFIG_SENSORS_BH1770 is not set
# CONFIG_SENSORS_APDS990X is not set
# CONFIG_HMC6352 is not set
# CONFIG_DS1682 is not set
# CONFIG_SRAM is not set
# CONFIG_DW_XDATA_PCIE is not set
# CONFIG_PCI_ENDPOINT_TEST is not set
# CONFIG_XILINX_SDFEC is not set
# CONFIG_C2PORT is not set

#
# EEPROM support
#
# CONFIG_EEPROM_AT24 is not set
# CONFIG_EEPROM_LEGACY is not set
# CONFIG_EEPROM_MAX6875 is not set
# CONFIG_EEPROM_93CX6 is not set
# CONFIG_EEPROM_IDT_89HPESX is not set
# CONFIG_EEPROM_EE1004 is not set
# end of EEPROM support

# CONFIG_CB710_CORE is not set

#
# Texas Instruments shared transport line discipline
#
# CONFIG_TI_ST is not set
# end of Texas Instruments shared transport line discipline

# CONFIG_SENSORS_LIS3_I2C is not set
# CONFIG_ALTERA_STAPL is not set
# CONFIG_GENWQE is not set
# CONFIG_ECHO is not set
# CONFIG_BCM_VK is not set
# CONFIG_MISC_ALCOR_PCI is not set
# CONFIG_MISC_RTSX_PCI is not set
# CONFIG_MISC_RTSX_USB is not set
# CONFIG_HABANA_AI is not set
# CONFIG_UACCE is not set
# CONFIG_PVPANIC is not set
# end of Misc devices

#
# SCSI device support
#
CONFIG_SCSI_MOD=y
# CONFIG_RAID_ATTRS is not set
# CONFIG_SCSI is not set
# end of SCSI device support

CONFIG_HAVE_PATA_PLATFORM=y
# CONFIG_ATA is not set
CONFIG_MD=y
CONFIG_BLK_DEV_MD=y
CONFIG_MD_AUTODETECT=y
CONFIG_MD_LINEAR=y
CONFIG_MD_RAID0=y
CONFIG_MD_RAID1=y
CONFIG_MD_RAID10=y
CONFIG_MD_RAID456=y
CONFIG_MD_MULTIPATH=y
CONFIG_MD_FAULTY=y
# CONFIG_BCACHE is not set
CONFIG_BLK_DEV_DM_BUILTIN=y
CONFIG_BLK_DEV_DM=y
# CONFIG_DM_DEBUG is not set
CONFIG_DM_BUFIO=y
# CONFIG_DM_DEBUG_BLOCK_MANAGER_LOCKING is not set
CONFIG_DM_BIO_PRISON=m
CONFIG_DM_PERSISTENT_DATA=m
# CONFIG_DM_UNSTRIPED is not set
CONFIG_DM_CRYPT=y
CONFIG_DM_SNAPSHOT=y
CONFIG_DM_THIN_PROVISIONING=m
# CONFIG_DM_CACHE is not set
# CONFIG_DM_WRITECACHE is not set
# CONFIG_DM_EBS is not set
# CONFIG_DM_ERA is not set
# CONFIG_DM_CLONE is not set
CONFIG_DM_MIRROR=y
# CONFIG_DM_LOG_USERSPACE is not set
# CONFIG_DM_RAID is not set
CONFIG_DM_ZERO=y
# CONFIG_DM_MULTIPATH is not set
# CONFIG_DM_DELAY is not set
# CONFIG_DM_DUST is not set
# CONFIG_DM_INIT is not set
# CONFIG_DM_UEVENT is not set
# CONFIG_DM_FLAKEY is not set
# CONFIG_DM_VERITY is not set
# CONFIG_DM_SWITCH is not set
# CONFIG_DM_LOG_WRITES is not set
# CONFIG_DM_INTEGRITY is not set
# CONFIG_TARGET_CORE is not set
# CONFIG_FUSION is not set

#
# IEEE 1394 (FireWire) support
#
# CONFIG_FIREWIRE is not set
# CONFIG_FIREWIRE_NOSY is not set
# end of IEEE 1394 (FireWire) support

CONFIG_NETDEVICES=y
CONFIG_NET_CORE=y
CONFIG_BONDING=m
CONFIG_DUMMY=m
# CONFIG_WIREGUARD is not set
# CONFIG_EQUALIZER is not set
# CONFIG_IFB is not set
# CONFIG_NET_TEAM is not set
CONFIG_MACVLAN=y
# CONFIG_MACVTAP is not set
# CONFIG_IPVLAN is not set
CONFIG_VXLAN=m
# CONFIG_GENEVE is not set
# CONFIG_BAREUDP is not set
# CONFIG_GTP is not set
# CONFIG_MACSEC is not set
CONFIG_NETCONSOLE=y
CONFIG_NETPOLL=y
CONFIG_NET_POLL_CONTROLLER=y
CONFIG_TUN=m
# CONFIG_TUN_VNET_CROSS_LE is not set
CONFIG_VETH=y
CONFIG_VIRTIO_NET=y
# CONFIG_NLMON is not set
# CONFIG_ARCNET is not set
CONFIG_ETHERNET=y
CONFIG_NET_VENDOR_3COM=y
# CONFIG_VORTEX is not set
# CONFIG_TYPHOON is not set
CONFIG_NET_VENDOR_ADAPTEC=y
# CONFIG_ADAPTEC_STARFIRE is not set
CONFIG_NET_VENDOR_AGERE=y
# CONFIG_ET131X is not set
CONFIG_NET_VENDOR_ALACRITECH=y
# CONFIG_SLICOSS is not set
CONFIG_NET_VENDOR_ALTEON=y
# CONFIG_ACENIC is not set
# CONFIG_ALTERA_TSE is not set
CONFIG_NET_VENDOR_AMAZON=y
# CONFIG_ENA_ETHERNET is not set
CONFIG_NET_VENDOR_AMD=y
# CONFIG_AMD8111_ETH is not set
# CONFIG_PCNET32 is not set
# CONFIG_AMD_XGBE is not set
CONFIG_NET_VENDOR_AQUANTIA=y
# CONFIG_AQTION is not set
CONFIG_NET_VENDOR_ARC=y
CONFIG_NET_VENDOR_ATHEROS=y
# CONFIG_ATL2 is not set
# CONFIG_ATL1 is not set
# CONFIG_ATL1E is not set
# CONFIG_ATL1C is not set
# CONFIG_ALX is not set
CONFIG_NET_VENDOR_BROADCOM=y
# CONFIG_B44 is not set
# CONFIG_BCMGENET is not set
# CONFIG_BNX2 is not set
# CONFIG_CNIC is not set
# CONFIG_TIGON3 is not set
# CONFIG_BNX2X is not set
# CONFIG_SYSTEMPORT is not set
# CONFIG_BNXT is not set
CONFIG_NET_VENDOR_BROCADE=y
# CONFIG_BNA is not set
CONFIG_NET_VENDOR_CADENCE=y
# CONFIG_MACB is not set
CONFIG_NET_VENDOR_CAVIUM=y
# CONFIG_THUNDER_NIC_PF is not set
# CONFIG_THUNDER_NIC_VF is not set
# CONFIG_THUNDER_NIC_BGX is not set
# CONFIG_THUNDER_NIC_RGX is not set
# CONFIG_LIQUIDIO is not set
# CONFIG_LIQUIDIO_VF is not set
CONFIG_NET_VENDOR_CHELSIO=y
# CONFIG_CHELSIO_T1 is not set
# CONFIG_CHELSIO_T3 is not set
# CONFIG_CHELSIO_T4 is not set
# CONFIG_CHELSIO_T4VF is not set
CONFIG_NET_VENDOR_CISCO=y
# CONFIG_ENIC is not set
CONFIG_NET_VENDOR_CORTINA=y
# CONFIG_GEMINI_ETHERNET is not set
# CONFIG_DNET is not set
CONFIG_NET_VENDOR_DEC=y
# CONFIG_NET_TULIP is not set
CONFIG_NET_VENDOR_DLINK=y
# CONFIG_DL2K is not set
# CONFIG_SUNDANCE is not set
CONFIG_NET_VENDOR_EMULEX=y
# CONFIG_BE2NET is not set
CONFIG_NET_VENDOR_EZCHIP=y
# CONFIG_EZCHIP_NPS_MANAGEMENT_ENET is not set
CONFIG_NET_VENDOR_GOOGLE=y
# CONFIG_GVE is not set
CONFIG_NET_VENDOR_HISILICON=y
# CONFIG_HIX5HD2_GMAC is not set
# CONFIG_HISI_FEMAC is not set
# CONFIG_HIP04_ETH is not set
# CONFIG_HNS_DSAF is not set
# CONFIG_HNS_ENET is not set
# CONFIG_HNS3 is not set
CONFIG_NET_VENDOR_HUAWEI=y
# CONFIG_HINIC is not set
CONFIG_NET_VENDOR_I825XX=y
CONFIG_NET_VENDOR_INTEL=y
# CONFIG_E100 is not set
# CONFIG_E1000 is not set
# CONFIG_E1000E is not set
# CONFIG_IGB is not set
# CONFIG_IGBVF is not set
# CONFIG_IXGB is not set
# CONFIG_IXGBE is not set
# CONFIG_IXGBEVF is not set
# CONFIG_I40E is not set
# CONFIG_I40EVF is not set
# CONFIG_ICE is not set
# CONFIG_FM10K is not set
# CONFIG_IGC is not set
CONFIG_NET_VENDOR_MICROSOFT=y
# CONFIG_JME is not set
CONFIG_NET_VENDOR_MARVELL=y
# CONFIG_MVMDIO is not set
# CONFIG_SKGE is not set
# CONFIG_SKY2 is not set
# CONFIG_OCTEONTX2_AF is not set
# CONFIG_OCTEONTX2_PF is not set
CONFIG_NET_VENDOR_MELLANOX=y
# CONFIG_MLX4_EN is not set
# CONFIG_MLX5_CORE is not set
# CONFIG_MLXSW_CORE is not set
# CONFIG_MLXFW is not set
CONFIG_NET_VENDOR_MICREL=y
# CONFIG_KS8851_MLL is not set
# CONFIG_KSZ884X_PCI is not set
CONFIG_NET_VENDOR_MICROCHIP=y
# CONFIG_LAN743X is not set
CONFIG_NET_VENDOR_MICROSEMI=y
CONFIG_NET_VENDOR_MYRI=y
# CONFIG_MYRI10GE is not set
# CONFIG_FEALNX is not set
CONFIG_NET_VENDOR_NATSEMI=y
# CONFIG_NATSEMI is not set
# CONFIG_NS83820 is not set
CONFIG_NET_VENDOR_NETERION=y
# CONFIG_S2IO is not set
# CONFIG_VXGE is not set
CONFIG_NET_VENDOR_NETRONOME=y
# CONFIG_NFP is not set
CONFIG_NET_VENDOR_NI=y
# CONFIG_NI_XGE_MANAGEMENT_ENET is not set
CONFIG_NET_VENDOR_8390=y
# CONFIG_NE2K_PCI is not set
CONFIG_NET_VENDOR_NVIDIA=y
# CONFIG_FORCEDETH is not set
CONFIG_NET_VENDOR_OKI=y
# CONFIG_ETHOC is not set
CONFIG_NET_VENDOR_PACKET_ENGINES=y
# CONFIG_HAMACHI is not set
# CONFIG_YELLOWFIN is not set
CONFIG_NET_VENDOR_PENSANDO=y
# CONFIG_IONIC is not set
CONFIG_NET_VENDOR_QLOGIC=y
# CONFIG_QLA3XXX is not set
# CONFIG_QLCNIC is not set
# CONFIG_NETXEN_NIC is not set
# CONFIG_QED is not set
CONFIG_NET_VENDOR_QUALCOMM=y
# CONFIG_QCOM_EMAC is not set
# CONFIG_RMNET is not set
CONFIG_NET_VENDOR_RDC=y
# CONFIG_R6040 is not set
CONFIG_NET_VENDOR_REALTEK=y
# CONFIG_8139CP is not set
# CONFIG_8139TOO is not set
# CONFIG_R8169 is not set
CONFIG_NET_VENDOR_RENESAS=y
CONFIG_NET_VENDOR_ROCKER=y
CONFIG_NET_VENDOR_SAMSUNG=y
# CONFIG_SXGBE_ETH is not set
CONFIG_NET_VENDOR_SEEQ=y
CONFIG_NET_VENDOR_SOLARFLARE=y
# CONFIG_SFC is not set
# CONFIG_SFC_FALCON is not set
CONFIG_NET_VENDOR_SILAN=y
# CONFIG_SC92031 is not set
CONFIG_NET_VENDOR_SIS=y
# CONFIG_SIS900 is not set
# CONFIG_SIS190 is not set
CONFIG_NET_VENDOR_SMSC=y
# CONFIG_SMC91X is not set
# CONFIG_EPIC100 is not set
# CONFIG_SMSC911X is not set
# CONFIG_SMSC9420 is not set
CONFIG_NET_VENDOR_SOCIONEXT=y
CONFIG_NET_VENDOR_STMICRO=y
# CONFIG_STMMAC_ETH is not set
CONFIG_NET_VENDOR_SUN=y
# CONFIG_HAPPYMEAL is not set
# CONFIG_SUNGEM is not set
# CONFIG_CASSINI is not set
# CONFIG_NIU is not set
CONFIG_NET_VENDOR_SYNOPSYS=y
# CONFIG_DWC_XLGMAC is not set
CONFIG_NET_VENDOR_TEHUTI=y
# CONFIG_TEHUTI is not set
CONFIG_NET_VENDOR_TI=y
# CONFIG_TI_CPSW_PHY_SEL is not set
# CONFIG_TLAN is not set
CONFIG_NET_VENDOR_VIA=y
# CONFIG_VIA_RHINE is not set
# CONFIG_VIA_VELOCITY is not set
CONFIG_NET_VENDOR_WIZNET=y
# CONFIG_WIZNET_W5100 is not set
# CONFIG_WIZNET_W5300 is not set
CONFIG_NET_VENDOR_XILINX=y
# CONFIG_XILINX_EMACLITE is not set
# CONFIG_XILINX_AXI_EMAC is not set
# CONFIG_XILINX_LL_TEMAC is not set
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PHYLIB is not set
# CONFIG_MDIO_DEVICE is not set

#
# PCS device drivers
#
# end of PCS device drivers

CONFIG_PPP=m
CONFIG_PPP_BSDCOMP=m
CONFIG_PPP_DEFLATE=m
CONFIG_PPP_FILTER=y
# CONFIG_PPP_MPPE is not set
CONFIG_PPP_MULTILINK=y
CONFIG_PPPOE=m
# CONFIG_PPTP is not set
CONFIG_PPP_ASYNC=m
CONFIG_PPP_SYNC_TTY=m
CONFIG_SLIP=m
CONFIG_SLHC=m
CONFIG_SLIP_COMPRESSED=y
CONFIG_SLIP_SMART=y
CONFIG_SLIP_MODE_SLIP6=y
CONFIG_USB_NET_DRIVERS=y
# CONFIG_USB_CATC is not set
# CONFIG_USB_KAWETH is not set
# CONFIG_USB_PEGASUS is not set
# CONFIG_USB_RTL8150 is not set
# CONFIG_USB_RTL8152 is not set
# CONFIG_USB_LAN78XX is not set
# CONFIG_USB_USBNET is not set
# CONFIG_USB_HSO is not set
# CONFIG_USB_IPHETH is not set
CONFIG_WLAN=y
CONFIG_WLAN_VENDOR_ADMTEK=y
CONFIG_WLAN_VENDOR_ATH=y
# CONFIG_ATH_DEBUG is not set
# CONFIG_ATH5K_PCI is not set
CONFIG_WLAN_VENDOR_ATMEL=y
CONFIG_WLAN_VENDOR_BROADCOM=y
CONFIG_WLAN_VENDOR_CISCO=y
CONFIG_WLAN_VENDOR_INTEL=y
CONFIG_WLAN_VENDOR_INTERSIL=y
# CONFIG_HOSTAP is not set
# CONFIG_PRISM54 is not set
CONFIG_WLAN_VENDOR_MARVELL=y
CONFIG_WLAN_VENDOR_MEDIATEK=y
CONFIG_WLAN_VENDOR_MICROCHIP=y
CONFIG_WLAN_VENDOR_RALINK=y
CONFIG_WLAN_VENDOR_REALTEK=y
CONFIG_WLAN_VENDOR_RSI=y
CONFIG_WLAN_VENDOR_ST=y
CONFIG_WLAN_VENDOR_TI=y
CONFIG_WLAN_VENDOR_ZYDAS=y
CONFIG_WLAN_VENDOR_QUANTENNA=y
# CONFIG_WAN is not set
# CONFIG_WWAN is not set
# CONFIG_VMXNET3 is not set
# CONFIG_NETDEVSIM is not set
CONFIG_NET_FAILOVER=y
# CONFIG_ISDN is not set
# CONFIG_NVM is not set

#
# Input device support
#
CONFIG_INPUT=y
CONFIG_INPUT_FF_MEMLESS=y
# CONFIG_INPUT_SPARSEKMAP is not set
# CONFIG_INPUT_MATRIXKMAP is not set

#
# Userland interfaces
#
# CONFIG_INPUT_MOUSEDEV is not set
# CONFIG_INPUT_JOYDEV is not set
CONFIG_INPUT_EVDEV=y
# CONFIG_INPUT_EVBUG is not set

#
# Input Device Drivers
#
CONFIG_INPUT_KEYBOARD=y
# CONFIG_KEYBOARD_ADP5588 is not set
# CONFIG_KEYBOARD_ADP5589 is not set
CONFIG_KEYBOARD_ATKBD=y
# CONFIG_KEYBOARD_QT1050 is not set
# CONFIG_KEYBOARD_QT1070 is not set
# CONFIG_KEYBOARD_QT2160 is not set
# CONFIG_KEYBOARD_DLINK_DIR685 is not set
# CONFIG_KEYBOARD_LKKBD is not set
# CONFIG_KEYBOARD_GPIO is not set
# CONFIG_KEYBOARD_GPIO_POLLED is not set
# CONFIG_KEYBOARD_TCA6416 is not set
# CONFIG_KEYBOARD_TCA8418 is not set
# CONFIG_KEYBOARD_MATRIX is not set
# CONFIG_KEYBOARD_LM8333 is not set
# CONFIG_KEYBOARD_MAX7359 is not set
# CONFIG_KEYBOARD_MCS is not set
# CONFIG_KEYBOARD_MPR121 is not set
# CONFIG_KEYBOARD_NEWTON is not set
# CONFIG_KEYBOARD_OPENCORES is not set
# CONFIG_KEYBOARD_SAMSUNG is not set
# CONFIG_KEYBOARD_STOWAWAY is not set
# CONFIG_KEYBOARD_SUNKBD is not set
# CONFIG_KEYBOARD_OMAP4 is not set
# CONFIG_KEYBOARD_XTKBD is not set
# CONFIG_KEYBOARD_CAP11XX is not set
# CONFIG_KEYBOARD_BCM is not set
CONFIG_INPUT_MOUSE=y
CONFIG_MOUSE_PS2=y
CONFIG_MOUSE_PS2_ALPS=y
CONFIG_MOUSE_PS2_BYD=y
CONFIG_MOUSE_PS2_LOGIPS2PP=y
CONFIG_MOUSE_PS2_SYNAPTICS=y
CONFIG_MOUSE_PS2_SYNAPTICS_SMBUS=y
CONFIG_MOUSE_PS2_CYPRESS=y
CONFIG_MOUSE_PS2_TRACKPOINT=y
# CONFIG_MOUSE_PS2_ELANTECH is not set
# CONFIG_MOUSE_PS2_SENTELIC is not set
# CONFIG_MOUSE_PS2_TOUCHKIT is not set
CONFIG_MOUSE_PS2_FOCALTECH=y
CONFIG_MOUSE_PS2_SMBUS=y
# CONFIG_MOUSE_SERIAL is not set
# CONFIG_MOUSE_APPLETOUCH is not set
# CONFIG_MOUSE_BCM5974 is not set
# CONFIG_MOUSE_CYAPA is not set
# CONFIG_MOUSE_ELAN_I2C is not set
# CONFIG_MOUSE_VSXXXAA is not set
# CONFIG_MOUSE_GPIO is not set
# CONFIG_MOUSE_SYNAPTICS_I2C is not set
# CONFIG_MOUSE_SYNAPTICS_USB is not set
# CONFIG_INPUT_JOYSTICK is not set
CONFIG_INPUT_TABLET=y
# CONFIG_TABLET_USB_ACECAD is not set
# CONFIG_TABLET_USB_AIPTEK is not set
# CONFIG_TABLET_USB_HANWANG is not set
# CONFIG_TABLET_USB_KBTAB is not set
# CONFIG_TABLET_USB_PEGASUS is not set
# CONFIG_TABLET_SERIAL_WACOM4 is not set
# CONFIG_INPUT_TOUCHSCREEN is not set
CONFIG_INPUT_MISC=y
# CONFIG_INPUT_AD714X is not set
# CONFIG_INPUT_ATMEL_CAPTOUCH is not set
# CONFIG_INPUT_BMA150 is not set
# CONFIG_INPUT_E3X0_BUTTON is not set
# CONFIG_INPUT_MMA8450 is not set
# CONFIG_INPUT_GPIO_BEEPER is not set
# CONFIG_INPUT_GPIO_DECODER is not set
# CONFIG_INPUT_GPIO_VIBRA is not set
# CONFIG_INPUT_ATI_REMOTE2 is not set
# CONFIG_INPUT_KEYSPAN_REMOTE is not set
# CONFIG_INPUT_KXTJ9 is not set
# CONFIG_INPUT_POWERMATE is not set
# CONFIG_INPUT_YEALINK is not set
# CONFIG_INPUT_CM109 is not set
CONFIG_INPUT_UINPUT=y
# CONFIG_INPUT_PCF8574 is not set
# CONFIG_INPUT_GPIO_ROTARY_ENCODER is not set
# CONFIG_INPUT_DA7280_HAPTICS is not set
# CONFIG_INPUT_ADXL34X is not set
# CONFIG_INPUT_IQS269A is not set
# CONFIG_INPUT_IQS626A is not set
# CONFIG_INPUT_CMA3000 is not set
# CONFIG_INPUT_DRV260X_HAPTICS is not set
# CONFIG_INPUT_DRV2665_HAPTICS is not set
# CONFIG_INPUT_DRV2667_HAPTICS is not set
# CONFIG_RMI4_CORE is not set

#
# Hardware I/O ports
#
CONFIG_SERIO=y
CONFIG_SERIO_SERPORT=y
# CONFIG_SERIO_AMBAKMI is not set
# CONFIG_SERIO_PCIPS2 is not set
CONFIG_SERIO_LIBPS2=y
# CONFIG_SERIO_RAW is not set
# CONFIG_SERIO_ALTERA_PS2 is not set
# CONFIG_SERIO_PS2MULT is not set
# CONFIG_SERIO_ARC_PS2 is not set
# CONFIG_SERIO_APBPS2 is not set
# CONFIG_SERIO_GPIO_PS2 is not set
# CONFIG_USERIO is not set
# CONFIG_GAMEPORT is not set
# end of Hardware I/O ports
# end of Input device support

#
# Character devices
#
CONFIG_TTY=y
CONFIG_VT=y
CONFIG_CONSOLE_TRANSLATIONS=y
CONFIG_VT_CONSOLE=y
CONFIG_VT_CONSOLE_SLEEP=y
CONFIG_HW_CONSOLE=y
CONFIG_VT_HW_CONSOLE_BINDING=y
CONFIG_UNIX98_PTYS=y
# CONFIG_LEGACY_PTYS is not set
CONFIG_LDISC_AUTOLOAD=y

#
# Serial drivers
#
CONFIG_SERIAL_EARLYCON=y
# CONFIG_SERIAL_8250 is not set

#
# Non-8250 serial port support
#
# CONFIG_SERIAL_AMBA_PL010 is not set
CONFIG_SERIAL_AMBA_PL011=y
CONFIG_SERIAL_AMBA_PL011_CONSOLE=y
# CONFIG_SERIAL_EARLYCON_ARM_SEMIHOST is not set
# CONFIG_SERIAL_UARTLITE is not set
CONFIG_SERIAL_CORE=y
CONFIG_SERIAL_CORE_CONSOLE=y
# CONFIG_SERIAL_JSM is not set
# CONFIG_SERIAL_SIFIVE is not set
# CONFIG_SERIAL_SCCNXP is not set
# CONFIG_SERIAL_SC16IS7XX is not set
# CONFIG_SERIAL_BCM63XX is not set
# CONFIG_SERIAL_ALTERA_JTAGUART is not set
# CONFIG_SERIAL_ALTERA_UART is not set
# CONFIG_SERIAL_XILINX_PS_UART is not set
# CONFIG_SERIAL_ARC is not set
# CONFIG_SERIAL_RP2 is not set
# CONFIG_SERIAL_FSL_LPUART is not set
# CONFIG_SERIAL_FSL_LINFLEXUART is not set
# CONFIG_SERIAL_CONEXANT_DIGICOLOR is not set
# CONFIG_SERIAL_SPRD is not set
# end of Serial drivers

# CONFIG_SERIAL_NONSTANDARD is not set
# CONFIG_N_GSM is not set
# CONFIG_NOZOMI is not set
# CONFIG_NULL_TTY is not set
CONFIG_HVC_DRIVER=y
# CONFIG_HVC_DCC is not set
# CONFIG_SERIAL_DEV_BUS is not set
CONFIG_VIRTIO_CONSOLE=y
# CONFIG_IPMI_HANDLER is not set
CONFIG_HW_RANDOM=y
# CONFIG_HW_RANDOM_TIMERIOMEM is not set
# CONFIG_HW_RANDOM_BA431 is not set
CONFIG_HW_RANDOM_VIRTIO=y
CONFIG_HW_RANDOM_CAVIUM=y
# CONFIG_HW_RANDOM_CCTRNG is not set
# CONFIG_HW_RANDOM_XIPHERA is not set
# CONFIG_APPLICOM is not set
CONFIG_DEVMEM=y
# CONFIG_RAW_DRIVER is not set
CONFIG_DEVPORT=y
# CONFIG_TCG_TPM is not set
# CONFIG_XILLYBUS is not set
# end of Character devices

# CONFIG_RANDOM_TRUST_CPU is not set
# CONFIG_RANDOM_TRUST_BOOTLOADER is not set

#
# I2C support
#
CONFIG_I2C=y
CONFIG_I2C_BOARDINFO=y
CONFIG_I2C_COMPAT=y
# CONFIG_I2C_CHARDEV is not set
# CONFIG_I2C_MUX is not set
CONFIG_I2C_HELPER_AUTO=y
CONFIG_I2C_ALGOBIT=y

#
# I2C Hardware Bus support
#

#
# PC SMBus host controller drivers
#
# CONFIG_I2C_ALI1535 is not set
# CONFIG_I2C_ALI1563 is not set
# CONFIG_I2C_ALI15X3 is not set
# CONFIG_I2C_AMD756 is not set
# CONFIG_I2C_AMD8111 is not set
# CONFIG_I2C_I801 is not set
# CONFIG_I2C_ISCH is not set
# CONFIG_I2C_PIIX4 is not set
# CONFIG_I2C_NFORCE2 is not set
# CONFIG_I2C_NVIDIA_GPU is not set
# CONFIG_I2C_SIS5595 is not set
# CONFIG_I2C_SIS630 is not set
# CONFIG_I2C_SIS96X is not set
# CONFIG_I2C_VIA is not set
# CONFIG_I2C_VIAPRO is not set

#
# I2C system bus drivers (mostly embedded / system-on-chip)
#
# CONFIG_I2C_CADENCE is not set
# CONFIG_I2C_CBUS_GPIO is not set
# CONFIG_I2C_DESIGNWARE_PLATFORM is not set
# CONFIG_I2C_DESIGNWARE_PCI is not set
# CONFIG_I2C_EMEV2 is not set
# CONFIG_I2C_GPIO is not set
# CONFIG_I2C_NOMADIK is not set
# CONFIG_I2C_OCORES is not set
# CONFIG_I2C_PCA_PLATFORM is not set
# CONFIG_I2C_RK3X is not set
# CONFIG_I2C_SIMTEC is not set
# CONFIG_I2C_VERSATILE is not set
# CONFIG_I2C_THUNDERX is not set
# CONFIG_I2C_XILINX is not set

#
# External I2C/SMBus adapter drivers
#
# CONFIG_I2C_DIOLAN_U2C is not set
# CONFIG_I2C_CP2615 is not set
# CONFIG_I2C_ROBOTFUZZ_OSIF is not set
# CONFIG_I2C_TAOS_EVM is not set
# CONFIG_I2C_TINY_USB is not set

#
# Other I2C/SMBus bus drivers
#
# end of I2C Hardware Bus support

# CONFIG_I2C_STUB is not set
# CONFIG_I2C_SLAVE is not set
# CONFIG_I2C_DEBUG_CORE is not set
# CONFIG_I2C_DEBUG_ALGO is not set
# CONFIG_I2C_DEBUG_BUS is not set
# end of I2C support

# CONFIG_I3C is not set
# CONFIG_SPI is not set
# CONFIG_SPMI is not set
# CONFIG_HSI is not set
# CONFIG_PPS is not set

#
# PTP clock support
#
# CONFIG_PTP_1588_CLOCK is not set

#
# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks.
#
# end of PTP clock support

# CONFIG_PINCTRL is not set
CONFIG_GPIOLIB=y
CONFIG_GPIOLIB_FASTPATH_LIMIT=512
CONFIG_OF_GPIO=y
CONFIG_GPIO_CDEV=y
CONFIG_GPIO_CDEV_V1=y
CONFIG_GPIO_GENERIC=y

#
# Memory mapped GPIO drivers
#
# CONFIG_GPIO_74XX_MMIO is not set
# CONFIG_GPIO_ALTERA is not set
# CONFIG_GPIO_CADENCE is not set
# CONFIG_GPIO_DWAPB is not set
# CONFIG_GPIO_FTGPIO010 is not set
CONFIG_GPIO_GENERIC_PLATFORM=y
# CONFIG_GPIO_GRGPIO is not set
# CONFIG_GPIO_HLWD is not set
# CONFIG_GPIO_LOGICVC is not set
# CONFIG_GPIO_MB86S7X is not set
# CONFIG_GPIO_PL061 is not set
# CONFIG_GPIO_SAMA5D2_PIOBU is not set
# CONFIG_GPIO_SIFIVE is not set
# CONFIG_GPIO_SYSCON is not set
# CONFIG_GPIO_XGENE is not set
# CONFIG_GPIO_XILINX is not set
# CONFIG_GPIO_AMD_FCH is not set
# end of Memory mapped GPIO drivers

#
# I2C GPIO expanders
#
# CONFIG_GPIO_ADP5588 is not set
# CONFIG_GPIO_ADNP is not set
# CONFIG_GPIO_GW_PLD is not set
# CONFIG_GPIO_MAX7300 is not set
# CONFIG_GPIO_MAX732X is not set
# CONFIG_GPIO_PCA953X is not set
# CONFIG_GPIO_PCA9570 is not set
# CONFIG_GPIO_PCF857X is not set
# CONFIG_GPIO_TPIC2810 is not set
# end of I2C GPIO expanders

#
# MFD GPIO expanders
#
# end of MFD GPIO expanders

#
# PCI GPIO expanders
#
# CONFIG_GPIO_BT8XX is not set
# CONFIG_GPIO_PCI_IDIO_16 is not set
# CONFIG_GPIO_PCIE_IDIO_24 is not set
# CONFIG_GPIO_RDC321X is not set
# end of PCI GPIO expanders

#
# USB GPIO expanders
#
# end of USB GPIO expanders

#
# Virtual GPIO drivers
#
# CONFIG_GPIO_AGGREGATOR is not set
# CONFIG_GPIO_MOCKUP is not set
# end of Virtual GPIO drivers

# CONFIG_W1 is not set
CONFIG_POWER_RESET=y
# CONFIG_POWER_RESET_BRCMSTB is not set
# CONFIG_POWER_RESET_GPIO is not set
# CONFIG_POWER_RESET_GPIO_RESTART is not set
# CONFIG_POWER_RESET_LTC2952 is not set
# CONFIG_POWER_RESET_RESTART is not set
# CONFIG_POWER_RESET_VEXPRESS is not set
# CONFIG_POWER_RESET_XGENE is not set
# CONFIG_POWER_RESET_SYSCON is not set
# CONFIG_POWER_RESET_SYSCON_POWEROFF is not set
# CONFIG_SYSCON_REBOOT_MODE is not set
# CONFIG_NVMEM_REBOOT_MODE is not set
CONFIG_POWER_SUPPLY=y
# CONFIG_POWER_SUPPLY_DEBUG is not set
CONFIG_POWER_SUPPLY_HWMON=y
# CONFIG_PDA_POWER is not set
# CONFIG_TEST_POWER is not set
# CONFIG_CHARGER_ADP5061 is not set
# CONFIG_BATTERY_CW2015 is not set
# CONFIG_BATTERY_DS2780 is not set
# CONFIG_BATTERY_DS2781 is not set
# CONFIG_BATTERY_DS2782 is not set
# CONFIG_BATTERY_SBS is not set
# CONFIG_CHARGER_SBS is not set
# CONFIG_BATTERY_BQ27XXX is not set
# CONFIG_BATTERY_MAX17040 is not set
# CONFIG_BATTERY_MAX17042 is not set
# CONFIG_CHARGER_MAX8903 is not set
# CONFIG_CHARGER_LP8727 is not set
# CONFIG_CHARGER_GPIO is not set
# CONFIG_CHARGER_LT3651 is not set
# CONFIG_CHARGER_LTC4162L is not set
# CONFIG_CHARGER_DETECTOR_MAX14656 is not set
# CONFIG_CHARGER_BQ2415X is not set
# CONFIG_CHARGER_BQ24257 is not set
# CONFIG_CHARGER_BQ24735 is not set
# CONFIG_CHARGER_BQ2515X is not set
# CONFIG_CHARGER_BQ25890 is not set
# CONFIG_CHARGER_BQ25980 is not set
# CONFIG_CHARGER_BQ256XX is not set
# CONFIG_CHARGER_SMB347 is not set
# CONFIG_BATTERY_GAUGE_LTC2941 is not set
# CONFIG_BATTERY_GOLDFISH is not set
# CONFIG_CHARGER_RT9455 is not set
# CONFIG_CHARGER_BD99954 is not set
CONFIG_HWMON=y
# CONFIG_HWMON_DEBUG_CHIP is not set

#
# Native drivers
#
# CONFIG_SENSORS_AD7414 is not set
# CONFIG_SENSORS_AD7418 is not set
# CONFIG_SENSORS_ADM1021 is not set
# CONFIG_SENSORS_ADM1025 is not set
# CONFIG_SENSORS_ADM1026 is not set
# CONFIG_SENSORS_ADM1029 is not set
# CONFIG_SENSORS_ADM1031 is not set
# CONFIG_SENSORS_ADM1177 is not set
# CONFIG_SENSORS_ADM9240 is not set
# CONFIG_SENSORS_ADT7410 is not set
# CONFIG_SENSORS_ADT7411 is not set
# CONFIG_SENSORS_ADT7462 is not set
# CONFIG_SENSORS_ADT7470 is not set
# CONFIG_SENSORS_ADT7475 is not set
# CONFIG_SENSORS_AHT10 is not set
# CONFIG_SENSORS_AS370 is not set
# CONFIG_SENSORS_ASC7621 is not set
# CONFIG_SENSORS_AXI_FAN_CONTROL is not set
# CONFIG_SENSORS_ASPEED is not set
# CONFIG_SENSORS_ATXP1 is not set
# CONFIG_SENSORS_CORSAIR_CPRO is not set
# CONFIG_SENSORS_CORSAIR_PSU is not set
# CONFIG_SENSORS_DS620 is not set
# CONFIG_SENSORS_DS1621 is not set
# CONFIG_SENSORS_I5K_AMB is not set
# CONFIG_SENSORS_F71805F is not set
# CONFIG_SENSORS_F71882FG is not set
# CONFIG_SENSORS_F75375S is not set
# CONFIG_SENSORS_FTSTEUTATES is not set
# CONFIG_SENSORS_GL518SM is not set
# CONFIG_SENSORS_GL520SM is not set
# CONFIG_SENSORS_G760A is not set
# CONFIG_SENSORS_G762 is not set
# CONFIG_SENSORS_GPIO_FAN is not set
# CONFIG_SENSORS_HIH6130 is not set
# CONFIG_SENSORS_IT87 is not set
# CONFIG_SENSORS_JC42 is not set
# CONFIG_SENSORS_POWR1220 is not set
# CONFIG_SENSORS_LINEAGE is not set
# CONFIG_SENSORS_LTC2945 is not set
# CONFIG_SENSORS_LTC2947_I2C is not set
# CONFIG_SENSORS_LTC2990 is not set
# CONFIG_SENSORS_LTC2992 is not set
# CONFIG_SENSORS_LTC4151 is not set
# CONFIG_SENSORS_LTC4215 is not set
# CONFIG_SENSORS_LTC4222 is not set
# CONFIG_SENSORS_LTC4245 is not set
# CONFIG_SENSORS_LTC4260 is not set
# CONFIG_SENSORS_LTC4261 is not set
# CONFIG_SENSORS_MAX127 is not set
# CONFIG_SENSORS_MAX16065 is not set
# CONFIG_SENSORS_MAX1619 is not set
# CONFIG_SENSORS_MAX1668 is not set
# CONFIG_SENSORS_MAX197 is not set
# CONFIG_SENSORS_MAX31730 is not set
# CONFIG_SENSORS_MAX6621 is not set
# CONFIG_SENSORS_MAX6639 is not set
# CONFIG_SENSORS_MAX6642 is not set
# CONFIG_SENSORS_MAX6650 is not set
# CONFIG_SENSORS_MAX6697 is not set
# CONFIG_SENSORS_MAX31790 is not set
# CONFIG_SENSORS_MCP3021 is not set
# CONFIG_SENSORS_TC654 is not set
# CONFIG_SENSORS_TPS23861 is not set
# CONFIG_SENSORS_MR75203 is not set
# CONFIG_SENSORS_LM63 is not set
# CONFIG_SENSORS_LM73 is not set
# CONFIG_SENSORS_LM75 is not set
# CONFIG_SENSORS_LM77 is not set
# CONFIG_SENSORS_LM78 is not set
# CONFIG_SENSORS_LM80 is not set
# CONFIG_SENSORS_LM83 is not set
# CONFIG_SENSORS_LM85 is not set
# CONFIG_SENSORS_LM87 is not set
# CONFIG_SENSORS_LM90 is not set
# CONFIG_SENSORS_LM92 is not set
# CONFIG_SENSORS_LM93 is not set
# CONFIG_SENSORS_LM95234 is not set
# CONFIG_SENSORS_LM95241 is not set
# CONFIG_SENSORS_LM95245 is not set
# CONFIG_SENSORS_PC87360 is not set
# CONFIG_SENSORS_PC87427 is not set
# CONFIG_SENSORS_NTC_THERMISTOR is not set
# CONFIG_SENSORS_NCT6683 is not set
# CONFIG_SENSORS_NCT6775 is not set
# CONFIG_SENSORS_NCT7802 is not set
# CONFIG_SENSORS_NCT7904 is not set
# CONFIG_SENSORS_NPCM7XX is not set
# CONFIG_SENSORS_NZXT_KRAKEN2 is not set
# CONFIG_SENSORS_OCC_P8_I2C is not set
# CONFIG_SENSORS_PCF8591 is not set
# CONFIG_PMBUS is not set
# CONFIG_SENSORS_SBTSI is not set
# CONFIG_SENSORS_SHT15 is not set
# CONFIG_SENSORS_SHT21 is not set
# CONFIG_SENSORS_SHT3x is not set
# CONFIG_SENSORS_SHTC1 is not set
# CONFIG_SENSORS_SIS5595 is not set
# CONFIG_SENSORS_DME1737 is not set
# CONFIG_SENSORS_EMC1403 is not set
# CONFIG_SENSORS_EMC2103 is not set
# CONFIG_SENSORS_EMC6W201 is not set
# CONFIG_SENSORS_SMSC47M1 is not set
# CONFIG_SENSORS_SMSC47M192 is not set
# CONFIG_SENSORS_SMSC47B397 is not set
# CONFIG_SENSORS_SCH5627 is not set
# CONFIG_SENSORS_SCH5636 is not set
# CONFIG_SENSORS_STTS751 is not set
# CONFIG_SENSORS_SMM665 is not set
# CONFIG_SENSORS_ADC128D818 is not set
# CONFIG_SENSORS_ADS7828 is not set
# CONFIG_SENSORS_AMC6821 is not set
# CONFIG_SENSORS_INA209 is not set
# CONFIG_SENSORS_INA2XX is not set
# CONFIG_SENSORS_INA3221 is not set
# CONFIG_SENSORS_TC74 is not set
# CONFIG_SENSORS_THMC50 is not set
# CONFIG_SENSORS_TMP102 is not set
# CONFIG_SENSORS_TMP103 is not set
# CONFIG_SENSORS_TMP108 is not set
# CONFIG_SENSORS_TMP401 is not set
# CONFIG_SENSORS_TMP421 is not set
# CONFIG_SENSORS_TMP513 is not set
# CONFIG_SENSORS_VEXPRESS is not set
# CONFIG_SENSORS_VIA686A is not set
# CONFIG_SENSORS_VT1211 is not set
# CONFIG_SENSORS_VT8231 is not set
# CONFIG_SENSORS_W83773G is not set
# CONFIG_SENSORS_W83781D is not set
# CONFIG_SENSORS_W83791D is not set
# CONFIG_SENSORS_W83792D is not set
# CONFIG_SENSORS_W83793 is not set
# CONFIG_SENSORS_W83795 is not set
# CONFIG_SENSORS_W83L785TS is not set
# CONFIG_SENSORS_W83L786NG is not set
# CONFIG_SENSORS_W83627HF is not set
# CONFIG_SENSORS_W83627EHF is not set
# CONFIG_THERMAL is not set
CONFIG_WATCHDOG=y
CONFIG_WATCHDOG_CORE=m
# CONFIG_WATCHDOG_NOWAYOUT is not set
CONFIG_WATCHDOG_HANDLE_BOOT_ENABLED=y
CONFIG_WATCHDOG_OPEN_TIMEOUT=0
# CONFIG_WATCHDOG_SYSFS is not set

#
# Watchdog Pretimeout Governors
#
# CONFIG_WATCHDOG_PRETIMEOUT_GOV is not set

#
# Watchdog Device Drivers
#
CONFIG_SOFT_WATCHDOG=m
# CONFIG_GPIO_WATCHDOG is not set
# CONFIG_XILINX_WATCHDOG is not set
# CONFIG_ZIIRAVE_WATCHDOG is not set
# CONFIG_ARM_SP805_WATCHDOG is not set
# CONFIG_ARM_SBSA_WATCHDOG is not set
# CONFIG_CADENCE_WATCHDOG is not set
# CONFIG_DW_WATCHDOG is not set
# CONFIG_MAX63XX_WATCHDOG is not set
# CONFIG_ARM_SMC_WATCHDOG is not set
# CONFIG_ALIM7101_WDT is not set
# CONFIG_I6300ESB_WDT is not set
# CONFIG_MEN_A21_WDT is not set

#
# PCI-based Watchdog Cards
#
# CONFIG_PCIPCWATCHDOG is not set
# CONFIG_WDTPCI is not set

#
# USB-based Watchdog Cards
#
# CONFIG_USBPCWATCHDOG is not set
CONFIG_SSB_POSSIBLE=y
# CONFIG_SSB is not set
CONFIG_BCMA_POSSIBLE=y
# CONFIG_BCMA is not set

#
# Multifunction device drivers
#
CONFIG_MFD_CORE=y
# CONFIG_MFD_ACT8945A is not set
# CONFIG_MFD_AS3711 is not set
# CONFIG_MFD_AS3722 is not set
# CONFIG_PMIC_ADP5520 is not set
# CONFIG_MFD_AAT2870_CORE is not set
# CONFIG_MFD_ATMEL_FLEXCOM is not set
# CONFIG_MFD_ATMEL_HLCDC is not set
# CONFIG_MFD_BCM590XX is not set
# CONFIG_MFD_BD9571MWV is not set
# CONFIG_MFD_AXP20X_I2C is not set
# CONFIG_MFD_MADERA is not set
# CONFIG_PMIC_DA903X is not set
# CONFIG_MFD_DA9052_I2C is not set
# CONFIG_MFD_DA9055 is not set
# CONFIG_MFD_DA9062 is not set
# CONFIG_MFD_DA9063 is not set
# CONFIG_MFD_DA9150 is not set
# CONFIG_MFD_DLN2 is not set
# CONFIG_MFD_GATEWORKS_GSC is not set
# CONFIG_MFD_MC13XXX_I2C is not set
# CONFIG_MFD_MP2629 is not set
# CONFIG_MFD_HI6421_PMIC is not set
# CONFIG_HTC_PASIC3 is not set
# CONFIG_HTC_I2CPLD is not set
# CONFIG_LPC_ICH is not set
# CONFIG_LPC_SCH is not set
# CONFIG_MFD_INTEL_PMT is not set
# CONFIG_MFD_IQS62X is not set
# CONFIG_MFD_JANZ_CMODIO is not set
# CONFIG_MFD_KEMPLD is not set
# CONFIG_MFD_88PM800 is not set
# CONFIG_MFD_88PM805 is not set
# CONFIG_MFD_88PM860X is not set
# CONFIG_MFD_MAX14577 is not set
# CONFIG_MFD_MAX77620 is not set
# CONFIG_MFD_MAX77650 is not set
# CONFIG_MFD_MAX77686 is not set
# CONFIG_MFD_MAX77693 is not set
# CONFIG_MFD_MAX77843 is not set
# CONFIG_MFD_MAX8907 is not set
# CONFIG_MFD_MAX8925 is not set
# CONFIG_MFD_MAX8997 is not set
# CONFIG_MFD_MAX8998 is not set
# CONFIG_MFD_MT6360 is not set
# CONFIG_MFD_MT6397 is not set
# CONFIG_MFD_MENF21BMC is not set
# CONFIG_MFD_VIPERBOARD is not set
# CONFIG_MFD_NTXEC is not set
# CONFIG_MFD_RETU is not set
# CONFIG_MFD_PCF50633 is not set
# CONFIG_MFD_RDC321X is not set
# CONFIG_MFD_RT5033 is not set
# CONFIG_MFD_RC5T583 is not set
# CONFIG_MFD_RK808 is not set
# CONFIG_MFD_RN5T618 is not set
# CONFIG_MFD_SEC_CORE is not set
# CONFIG_MFD_SI476X_CORE is not set
# CONFIG_MFD_SM501 is not set
# CONFIG_MFD_SKY81452 is not set
# CONFIG_MFD_STMPE is not set
CONFIG_MFD_SYSCON=y
# CONFIG_MFD_TI_AM335X_TSCADC is not set
# CONFIG_MFD_LP3943 is not set
# CONFIG_MFD_LP8788 is not set
# CONFIG_MFD_TI_LMU is not set
# CONFIG_MFD_PALMAS is not set
# CONFIG_TPS6105X is not set
# CONFIG_TPS65010 is not set
# CONFIG_TPS6507X is not set
# CONFIG_MFD_TPS65086 is not set
# CONFIG_MFD_TPS65090 is not set
# CONFIG_MFD_TPS65217 is not set
# CONFIG_MFD_TI_LP873X is not set
# CONFIG_MFD_TI_LP87565 is not set
# CONFIG_MFD_TPS65218 is not set
# CONFIG_MFD_TPS6586X is not set
# CONFIG_MFD_TPS65910 is not set
# CONFIG_MFD_TPS65912_I2C is not set
# CONFIG_MFD_TPS80031 is not set
# CONFIG_TWL4030_CORE is not set
# CONFIG_TWL6040_CORE is not set
# CONFIG_MFD_WL1273_CORE is not set
# CONFIG_MFD_LM3533 is not set
# CONFIG_MFD_TC3589X is not set
# CONFIG_MFD_TQMX86 is not set
# CONFIG_MFD_VX855 is not set
# CONFIG_MFD_LOCHNAGAR is not set
# CONFIG_MFD_ARIZONA_I2C is not set
# CONFIG_MFD_WM8400 is not set
# CONFIG_MFD_WM831X_I2C is not set
# CONFIG_MFD_WM8350_I2C is not set
# CONFIG_MFD_WM8994 is not set
# CONFIG_MFD_ROHM_BD718XX is not set
# CONFIG_MFD_ROHM_BD70528 is not set
# CONFIG_MFD_ROHM_BD71828 is not set
# CONFIG_MFD_ROHM_BD957XMUF is not set
# CONFIG_MFD_STPMIC1 is not set
# CONFIG_MFD_STMFX is not set
# CONFIG_MFD_ATC260X_I2C is not set
CONFIG_MFD_VEXPRESS_SYSREG=y
# end of Multifunction device drivers

# CONFIG_REGULATOR is not set
# CONFIG_RC_CORE is not set
# CONFIG_MEDIA_CEC_SUPPORT is not set
# CONFIG_MEDIA_SUPPORT is not set

#
# Graphics support
#
CONFIG_VGA_ARB=y
CONFIG_VGA_ARB_MAX_GPUS=16
CONFIG_DRM=y
# CONFIG_DRM_DP_AUX_CHARDEV is not set
# CONFIG_DRM_DEBUG_MM is not set
CONFIG_DRM_KMS_HELPER=y
CONFIG_DRM_KMS_FB_HELPER=y
CONFIG_DRM_FBDEV_EMULATION=y
CONFIG_DRM_FBDEV_OVERALLOC=100
# CONFIG_DRM_LOAD_EDID_FIRMWARE is not set
# CONFIG_DRM_DP_CEC is not set
CONFIG_DRM_TTM=y
CONFIG_DRM_VRAM_HELPER=y
CONFIG_DRM_TTM_HELPER=y
CONFIG_DRM_GEM_SHMEM_HELPER=y

#
# I2C encoder or helper chips
#
# CONFIG_DRM_I2C_CH7006 is not set
# CONFIG_DRM_I2C_SIL164 is not set
# CONFIG_DRM_I2C_NXP_TDA998X is not set
# CONFIG_DRM_I2C_NXP_TDA9950 is not set
# end of I2C encoder or helper chips

#
# ARM devices
#
# CONFIG_DRM_HDLCD is not set
# CONFIG_DRM_MALI_DISPLAY is not set
# CONFIG_DRM_KOMEDA is not set
# end of ARM devices

# CONFIG_DRM_RADEON is not set
# CONFIG_DRM_AMDGPU is not set
# CONFIG_DRM_NOUVEAU is not set
# CONFIG_DRM_VGEM is not set
# CONFIG_DRM_VKMS is not set
# CONFIG_DRM_UDL is not set
# CONFIG_DRM_AST is not set
# CONFIG_DRM_MGAG200 is not set
# CONFIG_DRM_RCAR_DW_HDMI is not set
# CONFIG_DRM_RCAR_LVDS is not set
# CONFIG_DRM_QXL is not set
CONFIG_DRM_BOCHS=y
CONFIG_DRM_VIRTIO_GPU=y
CONFIG_DRM_PANEL=y

#
# Display Panels
#
# CONFIG_DRM_PANEL_ARM_VERSATILE is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6E88A0_AMS452EF01 is not set
# CONFIG_DRM_PANEL_SAMSUNG_S6E8AA0 is not set
# end of Display Panels

CONFIG_DRM_BRIDGE=y
CONFIG_DRM_PANEL_BRIDGE=y

#
# Display Interface Bridges
#
# CONFIG_DRM_CDNS_DSI is not set
# CONFIG_DRM_CHIPONE_ICN6211 is not set
# CONFIG_DRM_CHRONTEL_CH7033 is not set
# CONFIG_DRM_DISPLAY_CONNECTOR is not set
# CONFIG_DRM_LONTIUM_LT8912B is not set
# CONFIG_DRM_LONTIUM_LT9611 is not set
# CONFIG_DRM_LONTIUM_LT9611UXC is not set
# CONFIG_DRM_LVDS_CODEC is not set
# CONFIG_DRM_MEGACHIPS_STDPXXXX_GE_B850V3_FW is not set
# CONFIG_DRM_NWL_MIPI_DSI is not set
# CONFIG_DRM_NXP_PTN3460 is not set
# CONFIG_DRM_PARADE_PS8622 is not set
# CONFIG_DRM_PARADE_PS8640 is not set
# CONFIG_DRM_SIL_SII8620 is not set
# CONFIG_DRM_SII902X is not set
# CONFIG_DRM_SII9234 is not set
# CONFIG_DRM_SIMPLE_BRIDGE is not set
# CONFIG_DRM_THINE_THC63LVD1024 is not set
# CONFIG_DRM_TOSHIBA_TC358762 is not set
# CONFIG_DRM_TOSHIBA_TC358764 is not set
# CONFIG_DRM_TOSHIBA_TC358767 is not set
# CONFIG_DRM_TOSHIBA_TC358768 is not set
# CONFIG_DRM_TOSHIBA_TC358775 is not set
# CONFIG_DRM_TI_TFP410 is not set
# CONFIG_DRM_TI_SN65DSI86 is not set
# CONFIG_DRM_TI_TPD12S015 is not set
# CONFIG_DRM_ANALOGIX_ANX6345 is not set
# CONFIG_DRM_ANALOGIX_ANX78XX is not set
# CONFIG_DRM_ANALOGIX_ANX7625 is not set
# CONFIG_DRM_I2C_ADV7511 is not set
# CONFIG_DRM_CDNS_MHDP8546 is not set
# end of Display Interface Bridges

# CONFIG_DRM_ETNAVIV is not set
# CONFIG_DRM_HISI_HIBMC is not set
# CONFIG_DRM_HISI_KIRIN is not set
# CONFIG_DRM_MXSFB is not set
# CONFIG_DRM_ARCPGU is not set
# CONFIG_DRM_CIRRUS_QEMU is not set
# CONFIG_DRM_GM12U320 is not set
# CONFIG_DRM_PL111 is not set
# CONFIG_DRM_LIMA is not set
# CONFIG_DRM_PANFROST is not set
# CONFIG_DRM_TIDSS is not set
# CONFIG_DRM_GUD is not set
# CONFIG_DRM_LEGACY is not set
CONFIG_DRM_PANEL_ORIENTATION_QUIRKS=y

#
# Frame buffer Devices
#
CONFIG_FB_CMDLINE=y
CONFIG_FB_NOTIFY=y
CONFIG_FB=y
# CONFIG_FIRMWARE_EDID is not set
CONFIG_FB_CFB_FILLRECT=y
CONFIG_FB_CFB_COPYAREA=y
CONFIG_FB_CFB_IMAGEBLIT=y
CONFIG_FB_SYS_FILLRECT=y
CONFIG_FB_SYS_COPYAREA=y
CONFIG_FB_SYS_IMAGEBLIT=y
# CONFIG_FB_FOREIGN_ENDIAN is not set
CONFIG_FB_SYS_FOPS=y
CONFIG_FB_DEFERRED_IO=y
# CONFIG_FB_MODE_HELPERS is not set
# CONFIG_FB_TILEBLITTING is not set

#
# Frame buffer hardware drivers
#
# CONFIG_FB_CIRRUS is not set
# CONFIG_FB_PM2 is not set
# CONFIG_FB_ARMCLCD is not set
# CONFIG_FB_CYBER2000 is not set
# CONFIG_FB_ASILIANT is not set
# CONFIG_FB_IMSTT is not set
# CONFIG_FB_EFI is not set
# CONFIG_FB_OPENCORES is not set
# CONFIG_FB_S1D13XXX is not set
# CONFIG_FB_NVIDIA is not set
# CONFIG_FB_RIVA is not set
# CONFIG_FB_I740 is not set
# CONFIG_FB_MATROX is not set
# CONFIG_FB_RADEON is not set
# CONFIG_FB_ATY128 is not set
# CONFIG_FB_ATY is not set
# CONFIG_FB_S3 is not set
# CONFIG_FB_SAVAGE is not set
# CONFIG_FB_SIS is not set
# CONFIG_FB_NEOMAGIC is not set
# CONFIG_FB_KYRO is not set
# CONFIG_FB_3DFX is not set
# CONFIG_FB_VOODOO1 is not set
# CONFIG_FB_VT8623 is not set
# CONFIG_FB_TRIDENT is not set
# CONFIG_FB_ARK is not set
# CONFIG_FB_PM3 is not set
# CONFIG_FB_CARMINE is not set
# CONFIG_FB_SMSCUFX is not set
# CONFIG_FB_UDL is not set
# CONFIG_FB_IBM_GXT4500 is not set
# CONFIG_FB_VIRTUAL is not set
# CONFIG_FB_METRONOME is not set
# CONFIG_FB_MB862XX is not set
CONFIG_FB_SIMPLE=y
# CONFIG_FB_SSD1307 is not set
# CONFIG_FB_SM712 is not set
# end of Frame buffer Devices

#
# Backlight & LCD device support
#
# CONFIG_LCD_CLASS_DEVICE is not set
# CONFIG_BACKLIGHT_CLASS_DEVICE is not set
# end of Backlight & LCD device support

CONFIG_HDMI=y

#
# Console display driver support
#
CONFIG_DUMMY_CONSOLE=y
CONFIG_DUMMY_CONSOLE_COLUMNS=80
CONFIG_DUMMY_CONSOLE_ROWS=25
CONFIG_FRAMEBUFFER_CONSOLE=y
CONFIG_FRAMEBUFFER_CONSOLE_DETECT_PRIMARY=y
# CONFIG_FRAMEBUFFER_CONSOLE_ROTATION is not set
# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER is not set
# end of Console display driver support

# CONFIG_LOGO is not set
# end of Graphics support

# CONFIG_SOUND is not set

#
# HID support
#
CONFIG_HID=y
# CONFIG_HID_BATTERY_STRENGTH is not set
# CONFIG_HIDRAW is not set
# CONFIG_UHID is not set
CONFIG_HID_GENERIC=y

#
# Special HID drivers
#
CONFIG_HID_A4TECH=y
# CONFIG_HID_ACCUTOUCH is not set
# CONFIG_HID_ACRUX is not set
CONFIG_HID_APPLE=y
# CONFIG_HID_APPLEIR is not set
# CONFIG_HID_AUREAL is not set
CONFIG_HID_BELKIN=y
# CONFIG_HID_BETOP_FF is not set
CONFIG_HID_CHERRY=y
CONFIG_HID_CHICONY=y
# CONFIG_HID_COUGAR is not set
# CONFIG_HID_MACALLY is not set
# CONFIG_HID_CMEDIA is not set
# CONFIG_HID_CREATIVE_SB0540 is not set
CONFIG_HID_CYPRESS=y
# CONFIG_HID_DRAGONRISE is not set
# CONFIG_HID_EMS_FF is not set
# CONFIG_HID_ELECOM is not set
# CONFIG_HID_ELO is not set
CONFIG_HID_EZKEY=y
# CONFIG_HID_GEMBIRD is not set
# CONFIG_HID_GFRM is not set
# CONFIG_HID_GLORIOUS is not set
# CONFIG_HID_HOLTEK is not set
# CONFIG_HID_VIVALDI is not set
# CONFIG_HID_KEYTOUCH is not set
# CONFIG_HID_KYE is not set
# CONFIG_HID_UCLOGIC is not set
# CONFIG_HID_WALTOP is not set
# CONFIG_HID_VIEWSONIC is not set
# CONFIG_HID_GYRATION is not set
# CONFIG_HID_ICADE is not set
CONFIG_HID_ITE=y
# CONFIG_HID_JABRA is not set
# CONFIG_HID_TWINHAN is not set
CONFIG_HID_KENSINGTON=y
# CONFIG_HID_LCPOWER is not set
# CONFIG_HID_LENOVO is not set
# CONFIG_HID_MAGICMOUSE is not set
# CONFIG_HID_MALTRON is not set
# CONFIG_HID_MAYFLASH is not set
CONFIG_HID_REDRAGON=y
CONFIG_HID_MICROSOFT=y
CONFIG_HID_MONTEREY=y
# CONFIG_HID_MULTITOUCH is not set
# CONFIG_HID_NTI is not set
# CONFIG_HID_NTRIG is not set
# CONFIG_HID_ORTEK is not set
# CONFIG_HID_PANTHERLORD is not set
# CONFIG_HID_PENMOUNT is not set
# CONFIG_HID_PETALYNX is not set
# CONFIG_HID_PICOLCD is not set
# CONFIG_HID_PLANTRONICS is not set
# CONFIG_HID_PLAYSTATION is not set
# CONFIG_HID_PRIMAX is not set
# CONFIG_HID_RETRODE is not set
# CONFIG_HID_ROCCAT is not set
# CONFIG_HID_SAITEK is not set
# CONFIG_HID_SAMSUNG is not set
# CONFIG_HID_SEMITEK is not set
# CONFIG_HID_SPEEDLINK is not set
# CONFIG_HID_STEAM is not set
# CONFIG_HID_STEELSERIES is not set
# CONFIG_HID_SUNPLUS is not set
# CONFIG_HID_RMI is not set
# CONFIG_HID_GREENASIA is not set
# CONFIG_HID_SMARTJOYPLUS is not set
# CONFIG_HID_TIVO is not set
# CONFIG_HID_TOPSEED is not set
# CONFIG_HID_THRUSTMASTER is not set
# CONFIG_HID_UDRAW_PS3 is not set
# CONFIG_HID_WACOM is not set
# CONFIG_HID_XINMO is not set
# CONFIG_HID_ZEROPLUS is not set
# CONFIG_HID_ZYDACRON is not set
# CONFIG_HID_SENSOR_HUB is not set
# CONFIG_HID_ALPS is not set
# CONFIG_HID_MCP2221 is not set
# end of Special HID drivers

#
# USB HID support
#
CONFIG_USB_HID=y
# CONFIG_HID_PID is not set
# CONFIG_USB_HIDDEV is not set
# end of USB HID support

#
# I2C HID support
#
# CONFIG_I2C_HID_OF is not set
# CONFIG_I2C_HID_OF_GOODIX is not set
# end of I2C HID support
# end of HID support

CONFIG_USB_OHCI_LITTLE_ENDIAN=y
CONFIG_USB_SUPPORT=y
CONFIG_USB_COMMON=y
# CONFIG_USB_ULPI_BUS is not set
# CONFIG_USB_CONN_GPIO is not set
CONFIG_USB_ARCH_HAS_HCD=y
CONFIG_USB=y
CONFIG_USB_PCI=y
# CONFIG_USB_ANNOUNCE_NEW_DEVICES is not set

#
# Miscellaneous USB options
#
CONFIG_USB_DEFAULT_PERSIST=y
# CONFIG_USB_FEW_INIT_RETRIES is not set
# CONFIG_USB_DYNAMIC_MINORS is not set
# CONFIG_USB_OTG is not set
# CONFIG_USB_OTG_PRODUCTLIST is not set
CONFIG_USB_AUTOSUSPEND_DELAY=2
# CONFIG_USB_MON is not set

#
# USB Host Controller Drivers
#
# CONFIG_USB_C67X00_HCD is not set
CONFIG_USB_XHCI_HCD=y
# CONFIG_USB_XHCI_DBGCAP is not set
CONFIG_USB_XHCI_PCI=y
# CONFIG_USB_XHCI_PCI_RENESAS is not set
# CONFIG_USB_XHCI_PLATFORM is not set
# CONFIG_USB_EHCI_HCD is not set
# CONFIG_USB_OXU210HP_HCD is not set
# CONFIG_USB_ISP116X_HCD is not set
# CONFIG_USB_FOTG210_HCD is not set
# CONFIG_USB_OHCI_HCD is not set
# CONFIG_USB_UHCI_HCD is not set
# CONFIG_USB_SL811_HCD is not set
# CONFIG_USB_R8A66597_HCD is not set
# CONFIG_USB_HCD_TEST_MODE is not set

#
# USB Device Class drivers
#
# CONFIG_USB_ACM is not set
# CONFIG_USB_PRINTER is not set
# CONFIG_USB_WDM is not set
# CONFIG_USB_TMC is not set

#
# NOTE: USB_STORAGE depends on SCSI but BLK_DEV_SD may
#

#
# also be needed; see USB_STORAGE Help for more info
#

#
# USB Imaging devices
#
# CONFIG_USB_MDC800 is not set
# CONFIG_USBIP_CORE is not set
# CONFIG_USB_CDNS_SUPPORT is not set
# CONFIG_USB_MUSB_HDRC is not set
# CONFIG_USB_DWC3 is not set
# CONFIG_USB_DWC2 is not set
# CONFIG_USB_ISP1760 is not set

#
# USB port drivers
#
# CONFIG_USB_SERIAL is not set

#
# USB Miscellaneous drivers
#
# CONFIG_USB_EMI62 is not set
# CONFIG_USB_EMI26 is not set
# CONFIG_USB_ADUTUX is not set
# CONFIG_USB_SEVSEG is not set
# CONFIG_USB_LEGOTOWER is not set
# CONFIG_USB_LCD is not set
# CONFIG_USB_CYPRESS_CY7C63 is not set
# CONFIG_USB_CYTHERM is not set
# CONFIG_USB_IDMOUSE is not set
# CONFIG_USB_FTDI_ELAN is not set
# CONFIG_USB_APPLEDISPLAY is not set
# CONFIG_APPLE_MFI_FASTCHARGE is not set
# CONFIG_USB_LD is not set
# CONFIG_USB_TRANCEVIBRATOR is not set
# CONFIG_USB_IOWARRIOR is not set
# CONFIG_USB_TEST is not set
# CONFIG_USB_EHSET_TEST_FIXTURE is not set
# CONFIG_USB_ISIGHTFW is not set
# CONFIG_USB_YUREX is not set
# CONFIG_USB_EZUSB_FX2 is not set
# CONFIG_USB_HUB_USB251XB is not set
# CONFIG_USB_HSIC_USB3503 is not set
# CONFIG_USB_HSIC_USB4604 is not set
# CONFIG_USB_LINK_LAYER_TEST is not set
# CONFIG_USB_CHAOSKEY is not set

#
# USB Physical Layer drivers
#
# CONFIG_NOP_USB_XCEIV is not set
# CONFIG_USB_GPIO_VBUS is not set
# CONFIG_USB_ISP1301 is not set
# CONFIG_USB_ULPI is not set
# end of USB Physical Layer drivers

# CONFIG_USB_GADGET is not set
# CONFIG_TYPEC is not set
# CONFIG_USB_ROLE_SWITCH is not set
# CONFIG_MMC is not set
# CONFIG_MEMSTICK is not set
# CONFIG_NEW_LEDS is not set
# CONFIG_ACCESSIBILITY is not set
# CONFIG_INFINIBAND is not set
CONFIG_EDAC_SUPPORT=y
CONFIG_RTC_LIB=y
CONFIG_RTC_CLASS=y
CONFIG_RTC_HCTOSYS=y
CONFIG_RTC_HCTOSYS_DEVICE="rtc0"
CONFIG_RTC_SYSTOHC=y
CONFIG_RTC_SYSTOHC_DEVICE="rtc0"
# CONFIG_RTC_DEBUG is not set
CONFIG_RTC_NVMEM=y

#
# RTC interfaces
#
CONFIG_RTC_INTF_SYSFS=y
CONFIG_RTC_INTF_PROC=y
CONFIG_RTC_INTF_DEV=y
# CONFIG_RTC_INTF_DEV_UIE_EMUL is not set
# CONFIG_RTC_DRV_TEST is not set

#
# I2C RTC drivers
#
# CONFIG_RTC_DRV_ABB5ZES3 is not set
# CONFIG_RTC_DRV_ABEOZ9 is not set
# CONFIG_RTC_DRV_ABX80X is not set
# CONFIG_RTC_DRV_DS1307 is not set
# CONFIG_RTC_DRV_DS1374 is not set
# CONFIG_RTC_DRV_DS1672 is not set
# CONFIG_RTC_DRV_HYM8563 is not set
# CONFIG_RTC_DRV_MAX6900 is not set
# CONFIG_RTC_DRV_RS5C372 is not set
# CONFIG_RTC_DRV_ISL1208 is not set
# CONFIG_RTC_DRV_ISL12022 is not set
# CONFIG_RTC_DRV_ISL12026 is not set
# CONFIG_RTC_DRV_X1205 is not set
# CONFIG_RTC_DRV_PCF8523 is not set
# CONFIG_RTC_DRV_PCF85063 is not set
# CONFIG_RTC_DRV_PCF85363 is not set
# CONFIG_RTC_DRV_PCF8563 is not set
# CONFIG_RTC_DRV_PCF8583 is not set
# CONFIG_RTC_DRV_M41T80 is not set
# CONFIG_RTC_DRV_BQ32K is not set
# CONFIG_RTC_DRV_S35390A is not set
# CONFIG_RTC_DRV_FM3130 is not set
# CONFIG_RTC_DRV_RX8010 is not set
# CONFIG_RTC_DRV_RX8581 is not set
# CONFIG_RTC_DRV_RX8025 is not set
# CONFIG_RTC_DRV_EM3027 is not set
# CONFIG_RTC_DRV_RV3028 is not set
# CONFIG_RTC_DRV_RV3032 is not set
# CONFIG_RTC_DRV_RV8803 is not set
# CONFIG_RTC_DRV_SD3078 is not set

#
# SPI RTC drivers
#
CONFIG_RTC_I2C_AND_SPI=y

#
# SPI and I2C RTC drivers
#
# CONFIG_RTC_DRV_DS3232 is not set
# CONFIG_RTC_DRV_PCF2127 is not set
# CONFIG_RTC_DRV_RV3029C2 is not set
# CONFIG_RTC_DRV_RX6110 is not set

#
# Platform RTC drivers
#
# CONFIG_RTC_DRV_DS1286 is not set
# CONFIG_RTC_DRV_DS1511 is not set
# CONFIG_RTC_DRV_DS1553 is not set
# CONFIG_RTC_DRV_DS1685_FAMILY is not set
# CONFIG_RTC_DRV_DS1742 is not set
# CONFIG_RTC_DRV_DS2404 is not set
# CONFIG_RTC_DRV_EFI is not set
# CONFIG_RTC_DRV_STK17TA8 is not set
# CONFIG_RTC_DRV_M48T86 is not set
# CONFIG_RTC_DRV_M48T35 is not set
# CONFIG_RTC_DRV_M48T59 is not set
# CONFIG_RTC_DRV_MSM6242 is not set
# CONFIG_RTC_DRV_BQ4802 is not set
# CONFIG_RTC_DRV_RP5C01 is not set
# CONFIG_RTC_DRV_V3020 is not set
# CONFIG_RTC_DRV_ZYNQMP is not set

#
# on-CPU RTC drivers
#
# CONFIG_RTC_DRV_PL030 is not set
CONFIG_RTC_DRV_PL031=y
# CONFIG_RTC_DRV_CADENCE is not set
# CONFIG_RTC_DRV_FTRTC010 is not set
# CONFIG_RTC_DRV_R7301 is not set

#
# HID Sensor RTC drivers
#
# CONFIG_RTC_DRV_GOLDFISH is not set
# CONFIG_DMADEVICES is not set

#
# DMABUF options
#
CONFIG_SYNC_FILE=y
# CONFIG_SW_SYNC is not set
# CONFIG_UDMABUF is not set
# CONFIG_DMABUF_MOVE_NOTIFY is not set
# CONFIG_DMABUF_DEBUG is not set
# CONFIG_DMABUF_SELFTESTS is not set
# CONFIG_DMABUF_HEAPS is not set
# end of DMABUF options

# CONFIG_AUXDISPLAY is not set
# CONFIG_UIO is not set
# CONFIG_VFIO is not set
# CONFIG_VIRT_DRIVERS is not set
CONFIG_VIRTIO=y
CONFIG_VIRTIO_PCI_LIB=y
CONFIG_VIRTIO_MENU=y
CONFIG_VIRTIO_PCI=y
CONFIG_VIRTIO_PCI_LEGACY=y
CONFIG_VIRTIO_BALLOON=y
CONFIG_VIRTIO_INPUT=m
CONFIG_VIRTIO_MMIO=y
# CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES is not set
CONFIG_VIRTIO_DMA_SHARED_BUFFER=y
# CONFIG_VDPA is not set
CONFIG_VHOST_MENU=y
# CONFIG_VHOST_NET is not set
# CONFIG_VHOST_VSOCK is not set
# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set

#
# Microsoft Hyper-V guest support
#
# end of Microsoft Hyper-V guest support

# CONFIG_GREYBUS is not set
# CONFIG_COMEDI is not set
# CONFIG_STAGING is not set
# CONFIG_GOLDFISH is not set
# CONFIG_CHROME_PLATFORMS is not set
# CONFIG_MELLANOX_PLATFORM is not set
CONFIG_HAVE_CLK=y
CONFIG_CLKDEV_LOOKUP=y
CONFIG_HAVE_CLK_PREPARE=y
CONFIG_COMMON_CLK=y

#
# Clock driver for ARM Reference designs
#
# CONFIG_ICST is not set
# CONFIG_CLK_SP810 is not set
CONFIG_CLK_VEXPRESS_OSC=y
# end of Clock driver for ARM Reference designs

# CONFIG_COMMON_CLK_MAX9485 is not set
# CONFIG_COMMON_CLK_SI5341 is not set
# CONFIG_COMMON_CLK_SI5351 is not set
# CONFIG_COMMON_CLK_SI514 is not set
# CONFIG_COMMON_CLK_SI544 is not set
# CONFIG_COMMON_CLK_SI570 is not set
# CONFIG_COMMON_CLK_CDCE706 is not set
# CONFIG_COMMON_CLK_CDCE925 is not set
# CONFIG_COMMON_CLK_CS2000_CP is not set
# CONFIG_COMMON_CLK_AXI_CLKGEN is not set
# CONFIG_COMMON_CLK_XGENE is not set
# CONFIG_COMMON_CLK_VC5 is not set
# CONFIG_COMMON_CLK_FIXED_MMIO is not set
# CONFIG_XILINX_VCU is not set
# CONFIG_HWSPINLOCK is not set

#
# Clock Source drivers
#
CONFIG_TIMER_OF=y
CONFIG_TIMER_PROBE=y
CONFIG_ARM_ARCH_TIMER=y
CONFIG_ARM_ARCH_TIMER_EVTSTREAM=y
CONFIG_ARM_ARCH_TIMER_OOL_WORKAROUND=y
CONFIG_FSL_ERRATUM_A008585=y
CONFIG_HISILICON_ERRATUM_161010101=y
CONFIG_ARM64_ERRATUM_858921=y
# CONFIG_MICROCHIP_PIT64B is not set
# end of Clock Source drivers

# CONFIG_MAILBOX is not set
CONFIG_IOMMU_IOVA=y
CONFIG_IOMMU_API=y
CONFIG_IOMMU_SUPPORT=y

#
# Generic IOMMU Pagetable Support
#
# CONFIG_IOMMU_IO_PGTABLE_LPAE is not set
# CONFIG_IOMMU_IO_PGTABLE_ARMV7S is not set
# end of Generic IOMMU Pagetable Support

# CONFIG_IOMMU_DEBUGFS is not set
# CONFIG_IOMMU_DEFAULT_PASSTHROUGH is not set
CONFIG_OF_IOMMU=y
CONFIG_IOMMU_DMA=y
# CONFIG_ARM_SMMU is not set
# CONFIG_ARM_SMMU_V3 is not set
# CONFIG_VIRTIO_IOMMU is not set

#
# Remoteproc drivers
#
# CONFIG_REMOTEPROC is not set
# end of Remoteproc drivers

#
# Rpmsg drivers
#
# CONFIG_RPMSG_VIRTIO is not set
# end of Rpmsg drivers

# CONFIG_SOUNDWIRE is not set

#
# SOC (System On Chip) specific Drivers
#

#
# Amlogic SoC drivers
#
# end of Amlogic SoC drivers

#
# Broadcom SoC drivers
#
# CONFIG_SOC_BRCMSTB is not set
# end of Broadcom SoC drivers

#
# NXP/Freescale QorIQ SoC drivers
#
# CONFIG_QUICC_ENGINE is not set
# CONFIG_FSL_RCPM is not set
# end of NXP/Freescale QorIQ SoC drivers

#
# i.MX SoC drivers
#
# end of i.MX SoC drivers

#
# Enable LiteX SoC Builder specific drivers
#
# CONFIG_LITEX_SOC_CONTROLLER is not set
# end of Enable LiteX SoC Builder specific drivers

#
# Qualcomm SoC drivers
#
# end of Qualcomm SoC drivers

# CONFIG_SOC_TI is not set

#
# Xilinx SoC drivers
#
# end of Xilinx SoC drivers
# end of SOC (System On Chip) specific Drivers

# CONFIG_PM_DEVFREQ is not set
# CONFIG_EXTCON is not set
# CONFIG_MEMORY is not set
# CONFIG_IIO is not set
# CONFIG_NTB is not set
# CONFIG_VME_BUS is not set
# CONFIG_PWM is not set

#
# IRQ chip support
#
CONFIG_IRQCHIP=y
CONFIG_ARM_GIC=y
CONFIG_ARM_GIC_MAX_NR=1
CONFIG_ARM_GIC_V2M=y
CONFIG_ARM_GIC_V3=y
CONFIG_ARM_GIC_V3_ITS=y
CONFIG_ARM_GIC_V3_ITS_PCI=y
# CONFIG_AL_FIC is not set
CONFIG_PARTITION_PERCPU=y
# end of IRQ chip support

# CONFIG_IPACK_BUS is not set
# CONFIG_RESET_CONTROLLER is not set

#
# PHY Subsystem
#
# CONFIG_GENERIC_PHY is not set
# CONFIG_PHY_XGENE is not set
# CONFIG_BCM_KONA_USB2_PHY is not set
# CONFIG_PHY_CADENCE_TORRENT is not set
# CONFIG_PHY_CADENCE_DPHY is not set
# CONFIG_PHY_CADENCE_SALVO is not set
# CONFIG_PHY_FSL_IMX8MQ_USB is not set
# CONFIG_PHY_MIXEL_MIPI_DPHY is not set
# CONFIG_PHY_PXA_28NM_HSIC is not set
# CONFIG_PHY_PXA_28NM_USB2 is not set
# CONFIG_PHY_MAPPHONE_MDM6600 is not set
# CONFIG_PHY_OCELOT_SERDES is not set
# end of PHY Subsystem

# CONFIG_POWERCAP is not set
# CONFIG_MCB is not set

#
# Performance monitor support
#
# CONFIG_ARM_CCI_PMU is not set
# CONFIG_ARM_CCN is not set
# CONFIG_ARM_CMN is not set
CONFIG_ARM_PMU=y
# CONFIG_ARM_DSU_PMU is not set
# CONFIG_ARM_SPE_PMU is not set
# end of Performance monitor support

# CONFIG_RAS is not set
# CONFIG_USB4 is not set

#
# Android
#
# CONFIG_ANDROID is not set
# end of Android

# CONFIG_LIBNVDIMM is not set
# CONFIG_DAX is not set
CONFIG_NVMEM=y
CONFIG_NVMEM_SYSFS=y
# CONFIG_NVMEM_RMEM is not set

#
# HW tracing support
#
# CONFIG_STM is not set
# CONFIG_INTEL_TH is not set
# end of HW tracing support

# CONFIG_FPGA is not set
# CONFIG_FSI is not set
# CONFIG_TEE is not set
# CONFIG_SIOX is not set
# CONFIG_SLIMBUS is not set
# CONFIG_INTERCONNECT is not set
# CONFIG_COUNTER is not set
# CONFIG_MOST is not set
# end of Device Drivers

#
# File systems
#
CONFIG_DCACHE_WORD_ACCESS=y
# CONFIG_VALIDATE_FS_PARSER is not set
CONFIG_FS_IOMAP=y
# CONFIG_EXT2_FS is not set
# CONFIG_EXT3_FS is not set
CONFIG_EXT4_FS=y
CONFIG_EXT4_USE_FOR_EXT2=y
CONFIG_EXT4_FS_POSIX_ACL=y
CONFIG_EXT4_FS_SECURITY=y
# CONFIG_EXT4_DEBUG is not set
CONFIG_JBD2=y
# CONFIG_JBD2_DEBUG is not set
CONFIG_FS_MBCACHE=y
# CONFIG_REISERFS_FS is not set
# CONFIG_JFS_FS is not set
# CONFIG_XFS_FS is not set
# CONFIG_GFS2_FS is not set
# CONFIG_OCFS2_FS is not set
CONFIG_BTRFS_FS=y
CONFIG_BTRFS_FS_POSIX_ACL=y
# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set
# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set
# CONFIG_BTRFS_DEBUG is not set
# CONFIG_BTRFS_ASSERT is not set
# CONFIG_BTRFS_FS_REF_VERIFY is not set
# CONFIG_NILFS2_FS is not set
# CONFIG_F2FS_FS is not set
# CONFIG_FS_DAX is not set
CONFIG_FS_POSIX_ACL=y
CONFIG_EXPORTFS=y
# CONFIG_EXPORTFS_BLOCK_OPS is not set
CONFIG_FILE_LOCKING=y
CONFIG_MANDATORY_FILE_LOCKING=y
CONFIG_FS_ENCRYPTION=y
CONFIG_FS_ENCRYPTION_ALGS=y
# CONFIG_FS_VERITY is not set
CONFIG_FSNOTIFY=y
CONFIG_DNOTIFY=y
CONFIG_INOTIFY_USER=y
# CONFIG_FANOTIFY is not set
# CONFIG_QUOTA is not set
CONFIG_AUTOFS4_FS=y
CONFIG_AUTOFS_FS=y
CONFIG_FUSE_FS=m
CONFIG_CUSE=m
# CONFIG_VIRTIO_FS is not set
CONFIG_OVERLAY_FS=y
# CONFIG_OVERLAY_FS_REDIRECT_DIR is not set
CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW=y
# CONFIG_OVERLAY_FS_INDEX is not set
# CONFIG_OVERLAY_FS_XINO_AUTO is not set
# CONFIG_OVERLAY_FS_METACOPY is not set

#
# Caches
#
# CONFIG_FSCACHE is not set
# end of Caches

#
# CD-ROM/DVD Filesystems
#
# CONFIG_ISO9660_FS is not set
# CONFIG_UDF_FS is not set
# end of CD-ROM/DVD Filesystems

#
# DOS/FAT/EXFAT/NT Filesystems
#
CONFIG_FAT_FS=y
# CONFIG_MSDOS_FS is not set
CONFIG_VFAT_FS=y
# CONFIG_VFAT_FS_NO_DUALNAMES is not set
CONFIG_FAT_DEFAULT_CODEPAGE=437
CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1"
# CONFIG_VFAT_NO_CREATE_WITH_LONGNAMES is not set
# CONFIG_FAT_DEFAULT_UTF8 is not set
# CONFIG_EXFAT_FS is not set
# CONFIG_NTFS_FS is not set
# end of DOS/FAT/EXFAT/NT Filesystems

#
# Pseudo filesystems
#
CONFIG_PROC_FS=y
CONFIG_PROC_KCORE=y
CONFIG_PROC_SYSCTL=y
CONFIG_PROC_PAGE_MONITOR=y
CONFIG_PROC_CHILDREN=y
CONFIG_KERNFS=y
CONFIG_SYSFS=y
CONFIG_TMPFS=y
CONFIG_TMPFS_POSIX_ACL=y
CONFIG_TMPFS_XATTR=y
# CONFIG_TMPFS_INODE64 is not set
CONFIG_ARCH_SUPPORTS_HUGETLBFS=y
# CONFIG_HUGETLBFS is not set
CONFIG_MEMFD_CREATE=y
CONFIG_ARCH_HAS_GIGANTIC_PAGE=y
CONFIG_CONFIGFS_FS=m
CONFIG_EFIVAR_FS=m
# end of Pseudo filesystems

CONFIG_MISC_FILESYSTEMS=y
# CONFIG_ORANGEFS_FS is not set
# CONFIG_ADFS_FS is not set
# CONFIG_AFFS_FS is not set
# CONFIG_ECRYPT_FS is not set
# CONFIG_HFS_FS is not set
# CONFIG_HFSPLUS_FS is not set
# CONFIG_BEFS_FS is not set
# CONFIG_BFS_FS is not set
# CONFIG_EFS_FS is not set
# CONFIG_CRAMFS is not set
# CONFIG_SQUASHFS is not set
# CONFIG_VXFS_FS is not set
# CONFIG_MINIX_FS is not set
# CONFIG_OMFS_FS is not set
# CONFIG_HPFS_FS is not set
# CONFIG_QNX4FS_FS is not set
# CONFIG_QNX6FS_FS is not set
CONFIG_ROMFS_FS=m
CONFIG_ROMFS_BACKED_BY_BLOCK=y
CONFIG_ROMFS_ON_BLOCK=y
# CONFIG_PSTORE is not set
# CONFIG_SYSV_FS is not set
# CONFIG_UFS_FS is not set
# CONFIG_EROFS_FS is not set
# CONFIG_AUFS_FS is not set
CONFIG_NETWORK_FILESYSTEMS=y
CONFIG_NFS_FS=y
CONFIG_NFS_V2=y
CONFIG_NFS_DEF_FILE_IO_SIZE=4096
CONFIG_NFS_V3=y
# CONFIG_NFS_V3_ACL is not set
CONFIG_NFS_V4=y
# CONFIG_NFS_SWAP is not set
# CONFIG_NFS_V4_1 is not set
CONFIG_ROOT_NFS=y
# CONFIG_NFS_USE_LEGACY_DNS is not set
CONFIG_NFS_USE_KERNEL_DNS=y
# CONFIG_NFS_DISABLE_UDP_SUPPORT is not set
# CONFIG_NFSD is not set
CONFIG_GRACE_PERIOD=y
CONFIG_LOCKD=y
CONFIG_LOCKD_V4=y
CONFIG_NFS_COMMON=y
CONFIG_SUNRPC=y
CONFIG_SUNRPC_GSS=y
CONFIG_RPCSEC_GSS_KRB5=y
# CONFIG_SUNRPC_DISABLE_INSECURE_ENCTYPES is not set
# CONFIG_SUNRPC_DEBUG is not set
# CONFIG_CEPH_FS is not set
CONFIG_CIFS=y
# CONFIG_CIFS_STATS2 is not set
CONFIG_CIFS_ALLOW_INSECURE_LEGACY=y
# CONFIG_CIFS_WEAK_PW_HASH is not set
# CONFIG_CIFS_UPCALL is not set
CONFIG_CIFS_XATTR=y
CONFIG_CIFS_POSIX=y
CONFIG_CIFS_DEBUG=y
# CONFIG_CIFS_DEBUG2 is not set
# CONFIG_CIFS_DEBUG_DUMP_KEYS is not set
# CONFIG_CIFS_DFS_UPCALL is not set
# CONFIG_CIFS_SWN_UPCALL is not set
# CONFIG_CIFS_ROOT is not set
# CONFIG_CODA_FS is not set
# CONFIG_AFS_FS is not set
CONFIG_NLS=y
CONFIG_NLS_DEFAULT="iso8859-1"
CONFIG_NLS_CODEPAGE_437=y
CONFIG_NLS_CODEPAGE_737=m
CONFIG_NLS_CODEPAGE_775=m
CONFIG_NLS_CODEPAGE_850=m
CONFIG_NLS_CODEPAGE_852=m
CONFIG_NLS_CODEPAGE_855=m
CONFIG_NLS_CODEPAGE_857=m
CONFIG_NLS_CODEPAGE_860=m
CONFIG_NLS_CODEPAGE_861=m
CONFIG_NLS_CODEPAGE_862=m
CONFIG_NLS_CODEPAGE_863=m
CONFIG_NLS_CODEPAGE_864=m
CONFIG_NLS_CODEPAGE_865=m
CONFIG_NLS_CODEPAGE_866=m
CONFIG_NLS_CODEPAGE_869=m
CONFIG_NLS_CODEPAGE_936=m
CONFIG_NLS_CODEPAGE_950=m
CONFIG_NLS_CODEPAGE_932=m
CONFIG_NLS_CODEPAGE_949=m
CONFIG_NLS_CODEPAGE_874=m
CONFIG_NLS_ISO8859_8=m
CONFIG_NLS_CODEPAGE_1250=m
CONFIG_NLS_CODEPAGE_1251=m
CONFIG_NLS_ASCII=m
CONFIG_NLS_ISO8859_1=y
CONFIG_NLS_ISO8859_2=m
CONFIG_NLS_ISO8859_3=m
CONFIG_NLS_ISO8859_4=m
CONFIG_NLS_ISO8859_5=m
CONFIG_NLS_ISO8859_6=m
CONFIG_NLS_ISO8859_7=m
CONFIG_NLS_ISO8859_9=m
CONFIG_NLS_ISO8859_13=m
CONFIG_NLS_ISO8859_14=m
CONFIG_NLS_ISO8859_15=m
CONFIG_NLS_KOI8_R=m
CONFIG_NLS_KOI8_U=m
# CONFIG_NLS_MAC_ROMAN is not set
# CONFIG_NLS_MAC_CELTIC is not set
# CONFIG_NLS_MAC_CENTEURO is not set
# CONFIG_NLS_MAC_CROATIAN is not set
# CONFIG_NLS_MAC_CYRILLIC is not set
# CONFIG_NLS_MAC_GAELIC is not set
# CONFIG_NLS_MAC_GREEK is not set
# CONFIG_NLS_MAC_ICELAND is not set
# CONFIG_NLS_MAC_INUIT is not set
# CONFIG_NLS_MAC_ROMANIAN is not set
# CONFIG_NLS_MAC_TURKISH is not set
CONFIG_NLS_UTF8=m
# CONFIG_DLM is not set
# CONFIG_UNICODE is not set
CONFIG_IO_WQ=y
# end of File systems

#
# Security options
#
CONFIG_KEYS=y
# CONFIG_KEYS_REQUEST_CACHE is not set
# CONFIG_PERSISTENT_KEYRINGS is not set
CONFIG_ENCRYPTED_KEYS=y
# CONFIG_KEY_DH_OPERATIONS is not set
# CONFIG_SECURITY_DMESG_RESTRICT is not set
CONFIG_SECURITY=y
# CONFIG_SECURITYFS is not set
# CONFIG_SECURITY_NETWORK is not set
CONFIG_SECURITY_PATH=y
CONFIG_HAVE_HARDENED_USERCOPY_ALLOCATOR=y
# CONFIG_HARDENED_USERCOPY is not set
# CONFIG_FORTIFY_SOURCE is not set
# CONFIG_STATIC_USERMODEHELPER is not set
# CONFIG_SECURITY_SMACK is not set
# CONFIG_SECURITY_TOMOYO is not set
# CONFIG_SECURITY_APPARMOR is not set
# CONFIG_SECURITY_LOADPIN is not set
# CONFIG_SECURITY_YAMA is not set
# CONFIG_SECURITY_SAFESETID is not set
# CONFIG_SECURITY_LOCKDOWN_LSM is not set
CONFIG_SECURITY_LANDLOCK=y
CONFIG_INTEGRITY=y
# CONFIG_INTEGRITY_SIGNATURE is not set
# CONFIG_IMA is not set
# CONFIG_IMA_SECURE_AND_OR_TRUSTED_BOOT is not set
# CONFIG_EVM is not set
CONFIG_DEFAULT_SECURITY_DAC=y
CONFIG_LSM="landlock,lockdown,yama,loadpin,safesetid,integrity,bpf"

#
# Kernel hardening options
#

#
# Memory initialization
#
CONFIG_INIT_STACK_NONE=y
# CONFIG_GCC_PLUGIN_STRUCTLEAK_USER is not set
# CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF is not set
# CONFIG_GCC_PLUGIN_STRUCTLEAK_BYREF_ALL is not set
# CONFIG_GCC_PLUGIN_STACKLEAK is not set
# CONFIG_INIT_ON_ALLOC_DEFAULT_ON is not set
# CONFIG_INIT_ON_FREE_DEFAULT_ON is not set
# end of Memory initialization
# end of Kernel hardening options
# end of Security options

CONFIG_XOR_BLOCKS=y
CONFIG_ASYNC_CORE=y
CONFIG_ASYNC_MEMCPY=y
CONFIG_ASYNC_XOR=y
CONFIG_ASYNC_PQ=y
CONFIG_ASYNC_RAID6_RECOV=y
CONFIG_CRYPTO=y

#
# Crypto core or helper
#
CONFIG_CRYPTO_ALGAPI=y
CONFIG_CRYPTO_ALGAPI2=y
CONFIG_CRYPTO_AEAD=y
CONFIG_CRYPTO_AEAD2=y
CONFIG_CRYPTO_SKCIPHER=y
CONFIG_CRYPTO_SKCIPHER2=y
CONFIG_CRYPTO_HASH=y
CONFIG_CRYPTO_HASH2=y
CONFIG_CRYPTO_RNG=y
CONFIG_CRYPTO_RNG2=y
CONFIG_CRYPTO_RNG_DEFAULT=y
CONFIG_CRYPTO_AKCIPHER2=y
CONFIG_CRYPTO_KPP2=y
CONFIG_CRYPTO_ACOMP2=y
CONFIG_CRYPTO_MANAGER=y
CONFIG_CRYPTO_MANAGER2=y
# CONFIG_CRYPTO_USER is not set
CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y
CONFIG_CRYPTO_GF128MUL=y
CONFIG_CRYPTO_NULL=y
CONFIG_CRYPTO_NULL2=y
# CONFIG_CRYPTO_PCRYPT is not set
# CONFIG_CRYPTO_CRYPTD is not set
CONFIG_CRYPTO_AUTHENC=y
CONFIG_CRYPTO_TEST=m
CONFIG_CRYPTO_ENGINE=y

#
# Public-key cryptography
#
# CONFIG_CRYPTO_RSA is not set
# CONFIG_CRYPTO_DH is not set
# CONFIG_CRYPTO_ECDH is not set
# CONFIG_CRYPTO_ECDSA is not set
# CONFIG_CRYPTO_ECRDSA is not set
# CONFIG_CRYPTO_SM2 is not set
# CONFIG_CRYPTO_CURVE25519 is not set

#
# Authenticated Encryption with Associated Data
#
CONFIG_CRYPTO_CCM=y
CONFIG_CRYPTO_GCM=y
# CONFIG_CRYPTO_CHACHA20POLY1305 is not set
# CONFIG_CRYPTO_AEGIS128 is not set
CONFIG_CRYPTO_SEQIV=y
CONFIG_CRYPTO_ECHAINIV=y

#
# Block modes
#
CONFIG_CRYPTO_CBC=y
# CONFIG_CRYPTO_CFB is not set
CONFIG_CRYPTO_CTR=y
CONFIG_CRYPTO_CTS=y
CONFIG_CRYPTO_ECB=y
# CONFIG_CRYPTO_LRW is not set
# CONFIG_CRYPTO_OFB is not set
# CONFIG_CRYPTO_PCBC is not set
CONFIG_CRYPTO_XTS=y
# CONFIG_CRYPTO_KEYWRAP is not set
# CONFIG_CRYPTO_ADIANTUM is not set
CONFIG_CRYPTO_ESSIV=y

#
# Hash modes
#
CONFIG_CRYPTO_CMAC=y
CONFIG_CRYPTO_HMAC=y
CONFIG_CRYPTO_XCBC=m
# CONFIG_CRYPTO_VMAC is not set

#
# Digest
#
CONFIG_CRYPTO_CRC32C=y
# CONFIG_CRYPTO_CRC32 is not set
CONFIG_CRYPTO_XXHASH=y
CONFIG_CRYPTO_BLAKE2B=y
# CONFIG_CRYPTO_BLAKE2S is not set
# CONFIG_CRYPTO_CRCT10DIF is not set
CONFIG_CRYPTO_GHASH=y
# CONFIG_CRYPTO_POLY1305 is not set
CONFIG_CRYPTO_MD4=y
CONFIG_CRYPTO_MD5=y
CONFIG_CRYPTO_MICHAEL_MIC=m
# CONFIG_CRYPTO_RMD160 is not set
CONFIG_CRYPTO_SHA1=y
CONFIG_CRYPTO_SHA256=y
CONFIG_CRYPTO_SHA512=y
# CONFIG_CRYPTO_SHA3 is not set
# CONFIG_CRYPTO_SM3 is not set
# CONFIG_CRYPTO_STREEBOG is not set
CONFIG_CRYPTO_WP512=m

#
# Ciphers
#
CONFIG_CRYPTO_AES=y
# CONFIG_CRYPTO_AES_TI is not set
CONFIG_CRYPTO_BLOWFISH=m
CONFIG_CRYPTO_BLOWFISH_COMMON=m
CONFIG_CRYPTO_CAMELLIA=m
CONFIG_CRYPTO_CAST_COMMON=m
CONFIG_CRYPTO_CAST5=m
CONFIG_CRYPTO_CAST6=m
CONFIG_CRYPTO_DES=y
# CONFIG_CRYPTO_FCRYPT is not set
# CONFIG_CRYPTO_CHACHA20 is not set
CONFIG_CRYPTO_SERPENT=m
# CONFIG_CRYPTO_SM4 is not set
CONFIG_CRYPTO_TWOFISH=m
CONFIG_CRYPTO_TWOFISH_COMMON=m

#
# Compression
#
CONFIG_CRYPTO_DEFLATE=y
# CONFIG_CRYPTO_LZO is not set
# CONFIG_CRYPTO_842 is not set
# CONFIG_CRYPTO_LZ4 is not set
# CONFIG_CRYPTO_LZ4HC is not set
# CONFIG_CRYPTO_ZSTD is not set

#
# Random Number Generation
#
# CONFIG_CRYPTO_ANSI_CPRNG is not set
CONFIG_CRYPTO_DRBG_MENU=y
CONFIG_CRYPTO_DRBG_HMAC=y
# CONFIG_CRYPTO_DRBG_HASH is not set
# CONFIG_CRYPTO_DRBG_CTR is not set
CONFIG_CRYPTO_DRBG=y
CONFIG_CRYPTO_JITTERENTROPY=y
# CONFIG_CRYPTO_USER_API_HASH is not set
# CONFIG_CRYPTO_USER_API_SKCIPHER is not set
# CONFIG_CRYPTO_USER_API_RNG is not set
# CONFIG_CRYPTO_USER_API_AEAD is not set

#
# Crypto library routines
#
CONFIG_CRYPTO_LIB_AES=y
CONFIG_CRYPTO_LIB_ARC4=y
# CONFIG_CRYPTO_LIB_BLAKE2S is not set
# CONFIG_CRYPTO_LIB_CHACHA is not set
# CONFIG_CRYPTO_LIB_CURVE25519 is not set
CONFIG_CRYPTO_LIB_DES=y
CONFIG_CRYPTO_LIB_POLY1305_RSIZE=9
# CONFIG_CRYPTO_LIB_POLY1305 is not set
# CONFIG_CRYPTO_LIB_CHACHA20POLY1305 is not set
CONFIG_CRYPTO_LIB_SHA256=y
CONFIG_CRYPTO_HW=y
# CONFIG_CRYPTO_DEV_ATMEL_ECC is not set
# CONFIG_CRYPTO_DEV_ATMEL_SHA204A is not set
# CONFIG_CRYPTO_DEV_CCP is not set
# CONFIG_CRYPTO_DEV_NITROX_CNN55XX is not set
# CONFIG_CRYPTO_DEV_CAVIUM_ZIP is not set
CONFIG_CRYPTO_DEV_VIRTIO=y
# CONFIG_CRYPTO_DEV_SAFEXCEL is not set
# CONFIG_CRYPTO_DEV_CCREE is not set
# CONFIG_CRYPTO_DEV_HISI_SEC is not set
# CONFIG_CRYPTO_DEV_AMLOGIC_GXL is not set
# CONFIG_ASYMMETRIC_KEY_TYPE is not set

#
# Certificates for signature checking
#
# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set
# end of Certificates for signature checking

CONFIG_BINARY_PRINTF=y

#
# Library routines
#
CONFIG_RAID6_PQ=y
CONFIG_RAID6_PQ_BENCHMARK=y
# CONFIG_PACKING is not set
CONFIG_BITREVERSE=y
CONFIG_HAVE_ARCH_BITREVERSE=y
CONFIG_GENERIC_STRNCPY_FROM_USER=y
CONFIG_GENERIC_STRNLEN_USER=y
CONFIG_GENERIC_NET_UTILS=y
CONFIG_GENERIC_FIND_FIRST_BIT=y
# CONFIG_CORDIC is not set
# CONFIG_PRIME_NUMBERS is not set
CONFIG_RATIONAL=y
CONFIG_GENERIC_PCI_IOMAP=y
CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y
CONFIG_ARCH_HAS_FAST_MULTIPLIER=y
CONFIG_ARCH_USE_SYM_ANNOTATIONS=y
# CONFIG_INDIRECT_PIO is not set
CONFIG_CRC_CCITT=m
CONFIG_CRC16=y
# CONFIG_CRC_T10DIF is not set
# CONFIG_CRC_ITU_T is not set
CONFIG_CRC32=y
# CONFIG_CRC32_SELFTEST is not set
CONFIG_CRC32_SLICEBY8=y
# CONFIG_CRC32_SLICEBY4 is not set
# CONFIG_CRC32_SARWATE is not set
# CONFIG_CRC32_BIT is not set
# CONFIG_CRC64 is not set
# CONFIG_CRC4 is not set
# CONFIG_CRC7 is not set
CONFIG_LIBCRC32C=y
# CONFIG_CRC8 is not set
CONFIG_XXHASH=y
CONFIG_AUDIT_ARCH_COMPAT_GENERIC=y
# CONFIG_RANDOM32_SELFTEST is not set
CONFIG_ZLIB_INFLATE=y
CONFIG_ZLIB_DEFLATE=y
CONFIG_LZO_COMPRESS=y
CONFIG_LZO_DECOMPRESS=y
CONFIG_LZ4_DECOMPRESS=y
CONFIG_ZSTD_COMPRESS=y
CONFIG_ZSTD_DECOMPRESS=y
CONFIG_XZ_DEC=y
CONFIG_XZ_DEC_X86=y
CONFIG_XZ_DEC_POWERPC=y
CONFIG_XZ_DEC_IA64=y
CONFIG_XZ_DEC_ARM=y
CONFIG_XZ_DEC_ARMTHUMB=y
CONFIG_XZ_DEC_SPARC=y
CONFIG_XZ_DEC_BCJ=y
# CONFIG_XZ_DEC_TEST is not set
CONFIG_DECOMPRESS_GZIP=y
CONFIG_DECOMPRESS_BZIP2=y
CONFIG_DECOMPRESS_LZMA=y
CONFIG_DECOMPRESS_XZ=y
CONFIG_DECOMPRESS_LZO=y
CONFIG_DECOMPRESS_LZ4=y
CONFIG_DECOMPRESS_ZSTD=y
CONFIG_GENERIC_ALLOCATOR=y
CONFIG_TEXTSEARCH=y
CONFIG_TEXTSEARCH_KMP=m
CONFIG_TEXTSEARCH_BM=m
CONFIG_TEXTSEARCH_FSM=m
CONFIG_ASSOCIATIVE_ARRAY=y
CONFIG_HAS_IOMEM=y
CONFIG_HAS_IOPORT_MAP=y
CONFIG_HAS_DMA=y
CONFIG_DMA_OPS=y
CONFIG_NEED_SG_DMA_LENGTH=y
CONFIG_NEED_DMA_MAP_STATE=y
CONFIG_ARCH_DMA_ADDR_T_64BIT=y
CONFIG_DMA_DECLARE_COHERENT=y
CONFIG_ARCH_HAS_SETUP_DMA_OPS=y
CONFIG_ARCH_HAS_TEARDOWN_DMA_OPS=y
CONFIG_ARCH_HAS_SYNC_DMA_FOR_DEVICE=y
CONFIG_ARCH_HAS_SYNC_DMA_FOR_CPU=y
CONFIG_ARCH_HAS_DMA_PREP_COHERENT=y
CONFIG_SWIOTLB=y
CONFIG_DMA_NONCOHERENT_MMAP=y
CONFIG_DMA_COHERENT_POOL=y
CONFIG_DMA_REMAP=y
CONFIG_DMA_DIRECT_REMAP=y
# CONFIG_DMA_API_DEBUG is not set
# CONFIG_DMA_MAP_BENCHMARK is not set
CONFIG_SGL_ALLOC=y
CONFIG_CPU_RMAP=y
CONFIG_DQL=y
CONFIG_GLOB=y
# CONFIG_GLOB_SELFTEST is not set
CONFIG_NLATTR=y
# CONFIG_IRQ_POLL is not set
CONFIG_LIBFDT=y
CONFIG_OID_REGISTRY=y
CONFIG_UCS2_STRING=y
CONFIG_HAVE_GENERIC_VDSO=y
CONFIG_GENERIC_GETTIMEOFDAY=y
CONFIG_GENERIC_VDSO_TIME_NS=y
CONFIG_FONT_SUPPORT=y
# CONFIG_FONTS is not set
CONFIG_FONT_8x8=y
CONFIG_FONT_8x16=y
CONFIG_ARCH_STACKWALK=y
CONFIG_SBITMAP=y
# CONFIG_STRING_SELFTEST is not set
# end of Library routines

CONFIG_GENERIC_LIB_DEVMEM_IS_ALLOWED=y

#
# Kernel hacking
#

#
# printk and dmesg options
#
CONFIG_PRINTK_TIME=y
# CONFIG_PRINTK_CALLER is not set
CONFIG_CONSOLE_LOGLEVEL_DEFAULT=7
CONFIG_CONSOLE_LOGLEVEL_QUIET=4
CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4
# CONFIG_DYNAMIC_DEBUG is not set
# CONFIG_DYNAMIC_DEBUG_CORE is not set
CONFIG_SYMBOLIC_ERRNAME=y
CONFIG_DEBUG_BUGVERBOSE=y
# end of printk and dmesg options

#
# Compile-time checks and compiler options
#
CONFIG_FRAME_WARN=2048
# CONFIG_STRIP_ASM_SYMS is not set
# CONFIG_HEADERS_INSTALL is not set
# CONFIG_DEBUG_SECTION_MISMATCH is not set
CONFIG_SECTION_MISMATCH_WARN_ONLY=y
CONFIG_ARCH_WANT_FRAME_POINTERS=y
CONFIG_FRAME_POINTER=y
# end of Compile-time checks and compiler options

#
# Generic Kernel Debugging Instruments
#
CONFIG_MAGIC_SYSRQ=y
CONFIG_MAGIC_SYSRQ_DEFAULT_ENABLE=0x1
CONFIG_MAGIC_SYSRQ_SERIAL=y
CONFIG_MAGIC_SYSRQ_SERIAL_SEQUENCE=""
CONFIG_DEBUG_FS=y
CONFIG_DEBUG_FS_ALLOW_ALL=y
# CONFIG_DEBUG_FS_DISALLOW_MOUNT is not set
# CONFIG_DEBUG_FS_ALLOW_NONE is not set
CONFIG_HAVE_ARCH_KGDB=y
CONFIG_ARCH_HAS_UBSAN_SANITIZE_ALL=y
# CONFIG_UBSAN is not set
CONFIG_HAVE_KCSAN_COMPILER=y
# end of Generic Kernel Debugging Instruments

# CONFIG_DEBUG_KERNEL is not set

#
# Memory Debugging
#
# CONFIG_PAGE_EXTENSION is not set
# CONFIG_PAGE_POISONING is not set
# CONFIG_DEBUG_RODATA_TEST is not set
CONFIG_ARCH_HAS_DEBUG_WX=y
# CONFIG_DEBUG_WX is not set
CONFIG_GENERIC_PTDUMP=y
# CONFIG_SLUB_DEBUG_ON is not set
# CONFIG_SLUB_STATS is not set
CONFIG_HAVE_DEBUG_KMEMLEAK=y
CONFIG_ARCH_HAS_DEBUG_VM_PGTABLE=y
# CONFIG_DEBUG_VM_PGTABLE is not set
CONFIG_ARCH_HAS_DEBUG_VIRTUAL=y
CONFIG_DEBUG_MEMORY_INIT=y
CONFIG_HAVE_ARCH_KASAN=y
CONFIG_HAVE_ARCH_KASAN_SW_TAGS=y
CONFIG_HAVE_ARCH_KASAN_HW_TAGS=y
CONFIG_HAVE_ARCH_KASAN_VMALLOC=y
CONFIG_CC_HAS_KASAN_GENERIC=y
CONFIG_CC_HAS_KASAN_SW_TAGS=y
CONFIG_CC_HAS_WORKING_NOSANITIZE_ADDRESS=y
# CONFIG_KASAN is not set
CONFIG_HAVE_ARCH_KFENCE=y
CONFIG_KFENCE=y
CONFIG_KFENCE_SAMPLE_INTERVAL=100
CONFIG_KFENCE_NUM_OBJECTS=255
CONFIG_KFENCE_STRESS_TEST_FAULTS=0
# end of Memory Debugging

#
# Debug Oops, Lockups and Hangs
#
# CONFIG_PANIC_ON_OOPS is not set
CONFIG_PANIC_ON_OOPS_VALUE=0
CONFIG_PANIC_TIMEOUT=0
# CONFIG_TEST_LOCKUP is not set
# end of Debug Oops, Lockups and Hangs

#
# Scheduler Debugging
#
CONFIG_SCHED_INFO=y
# end of Scheduler Debugging

# CONFIG_DEBUG_TIMEKEEPING is not set

#
# Lock Debugging (spinlocks, mutexes, etc...)
#
CONFIG_LOCK_DEBUGGING_SUPPORT=y
# CONFIG_WW_MUTEX_SELFTEST is not set
# end of Lock Debugging (spinlocks, mutexes, etc...)

# CONFIG_DEBUG_IRQFLAGS is not set
CONFIG_STACKTRACE=y
# CONFIG_WARN_ALL_UNSEEDED_RANDOM is not set

#
# Debug kernel data structures
#
# CONFIG_BUG_ON_DATA_CORRUPTION is not set
# end of Debug kernel data structures

#
# RCU Debugging
#
CONFIG_RCU_CPU_STALL_TIMEOUT=21
# end of RCU Debugging

CONFIG_NOP_TRACER=y
CONFIG_HAVE_FUNCTION_TRACER=y
CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y
CONFIG_HAVE_DYNAMIC_FTRACE=y
CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y
CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y
CONFIG_HAVE_SYSCALL_TRACEPOINTS=y
CONFIG_HAVE_C_RECORDMCOUNT=y
CONFIG_TRACE_CLOCK=y
CONFIG_RING_BUFFER=y
CONFIG_EVENT_TRACING=y
CONFIG_CONTEXT_SWITCH_TRACER=y
CONFIG_TRACING=y
CONFIG_GENERIC_TRACER=y
CONFIG_TRACING_SUPPORT=y
CONFIG_FTRACE=y
# CONFIG_BOOTTIME_TRACING is not set
CONFIG_FUNCTION_TRACER=y
CONFIG_FUNCTION_GRAPH_TRACER=y
CONFIG_DYNAMIC_FTRACE=y
CONFIG_DYNAMIC_FTRACE_WITH_REGS=y
# CONFIG_FUNCTION_PROFILER is not set
# CONFIG_STACK_TRACER is not set
# CONFIG_IRQSOFF_TRACER is not set
# CONFIG_PREEMPT_TRACER is not set
# CONFIG_SCHED_TRACER is not set
# CONFIG_HWLAT_TRACER is not set
CONFIG_FTRACE_SYSCALLS=y
# CONFIG_TRACER_SNAPSHOT is not set
CONFIG_BRANCH_PROFILE_NONE=y
# CONFIG_PROFILE_ANNOTATED_BRANCHES is not set
# CONFIG_PROFILE_ALL_BRANCHES is not set
CONFIG_BLK_DEV_IO_TRACE=y
CONFIG_KPROBE_EVENTS=y
# CONFIG_KPROBE_EVENTS_ON_NOTRACE is not set
CONFIG_UPROBE_EVENTS=y
CONFIG_BPF_EVENTS=y
CONFIG_DYNAMIC_EVENTS=y
CONFIG_PROBE_EVENTS=y
# CONFIG_BPF_KPROBE_OVERRIDE is not set
CONFIG_FTRACE_MCOUNT_RECORD=y
CONFIG_FTRACE_MCOUNT_USE_PATCHABLE_FUNCTION_ENTRY=y
# CONFIG_SYNTH_EVENTS is not set
# CONFIG_HIST_TRIGGERS is not set
# CONFIG_TRACE_EVENT_INJECT is not set
# CONFIG_TRACEPOINT_BENCHMARK is not set
# CONFIG_RING_BUFFER_BENCHMARK is not set
# CONFIG_TRACE_EVAL_MAP_FILE is not set
# CONFIG_FTRACE_RECORD_RECURSION is not set
# CONFIG_FTRACE_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_STARTUP_TEST is not set
# CONFIG_RING_BUFFER_VALIDATE_TIME_DELTAS is not set
# CONFIG_PREEMPTIRQ_DELAY_TEST is not set
# CONFIG_KPROBE_EVENT_GEN_TEST is not set
CONFIG_SAMPLES=y
# CONFIG_SAMPLE_AUXDISPLAY is not set
CONFIG_SAMPLE_TRACE_EVENTS=m
CONFIG_SAMPLE_TRACE_PRINTK=m
# CONFIG_SAMPLE_TRACE_ARRAY is not set
CONFIG_SAMPLE_KOBJECT=m
CONFIG_SAMPLE_KPROBES=m
CONFIG_SAMPLE_KRETPROBES=m
CONFIG_SAMPLE_HW_BREAKPOINT=m
CONFIG_SAMPLE_KFIFO=m
CONFIG_SAMPLE_CONFIGFS=m
# CONFIG_SAMPLE_VFIO_MDEV_MDPY_FB is not set
# CONFIG_SAMPLE_WATCHDOG is not set
CONFIG_STRICT_DEVMEM=y
# CONFIG_IO_STRICT_DEVMEM is not set

#
# arm64 Debugging
#
# CONFIG_PID_IN_CONTEXTIDR is not set
# CONFIG_ARM64_RELOC_TEST is not set
# CONFIG_CORESIGHT is not set
# end of arm64 Debugging

#
# Kernel Testing and Coverage
#
# CONFIG_KUNIT is not set
CONFIG_FUNCTION_ERROR_INJECTION=y
CONFIG_ARCH_HAS_KCOV=y
CONFIG_CC_HAS_SANCOV_TRACE_PC=y
# CONFIG_KCOV is not set
CONFIG_RUNTIME_TESTING_MENU=y
# CONFIG_LKDTM is not set
# CONFIG_TEST_LIST_SORT is not set
# CONFIG_TEST_MIN_HEAP is not set
# CONFIG_TEST_SORT is not set
# CONFIG_TEST_DIV64 is not set
# CONFIG_REED_SOLOMON_TEST is not set
# CONFIG_ATOMIC64_SELFTEST is not set
# CONFIG_ASYNC_RAID6_TEST is not set
# CONFIG_TEST_HEXDUMP is not set
# CONFIG_TEST_STRING_HELPERS is not set
# CONFIG_TEST_STRSCPY is not set
# CONFIG_TEST_KSTRTOX is not set
# CONFIG_TEST_PRINTF is not set
# CONFIG_TEST_BITMAP is not set
# CONFIG_TEST_UUID is not set
# CONFIG_TEST_XARRAY is not set
# CONFIG_TEST_OVERFLOW is not set
# CONFIG_TEST_RHASHTABLE is not set
# CONFIG_TEST_HASH is not set
# CONFIG_TEST_IDA is not set
# CONFIG_TEST_LKM is not set
# CONFIG_TEST_BITOPS is not set
# CONFIG_TEST_VMALLOC is not set
# CONFIG_TEST_USER_COPY is not set
# CONFIG_TEST_BPF is not set
# CONFIG_TEST_BLACKHOLE_DEV is not set
# CONFIG_FIND_BIT_BENCHMARK is not set
# CONFIG_TEST_FIRMWARE is not set
# CONFIG_TEST_SYSCTL is not set
# CONFIG_TEST_UDELAY is not set
# CONFIG_TEST_STATIC_KEYS is not set
# CONFIG_TEST_KMOD is not set
# CONFIG_TEST_MEMCAT_P is not set
# CONFIG_TEST_STACKINIT is not set
# CONFIG_TEST_MEMINIT is not set
# CONFIG_TEST_FREE_PAGES is not set
CONFIG_ARCH_USE_MEMTEST=y
# CONFIG_MEMTEST is not set
# end of Kernel Testing and Coverage
# end of Kernel hacking

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v2] timers: Recalculate next timer interrupt only when necessary
  2021-07-08  6:43 ` [PATCH v2] " He Zhe
@ 2021-07-08 11:35   ` Frederic Weisbecker
  2021-07-08 15:36   ` Frederic Weisbecker
  1 sibling, 0 replies; 16+ messages in thread
From: Frederic Weisbecker @ 2021-07-08 11:35 UTC (permalink / raw)
  To: He Zhe; +Cc: anna-maria, linux-kernel, tglx

On Thu, Jul 08, 2021 at 02:43:01PM +0800, He Zhe wrote:
> Hi,
> 
> Ever since this commit merged in, when nohz_full enabled, the counts of arch_timer interrupt on arm64 arches keep increasing on cores that have been isolated. This can be reproduced on several arm64 boards. After reverting the commit, the counts would stop increasing after boot. my .config is attached.
> 
> root@qemuarm64:~# uname -a
> Linux qemuarm64 5.13.0 #1 SMP PREEMPT Mon Jul 5 07:11:27 UTC 2021 aarch64 aarch64 aarch64 GNU/Linux
> root@qemuarm64:~# cat /proc/cmdline
> root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0  earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5
> root@qemuarm64:~# cat /proc/interrupts
> CPU0     CPU1    CPU2    CPU3     CPU4    CPU5
> 12396    326     325     323      320    321    GIC-0� 27 Level���� arch_timer

Strange, I'm not observing that on a raspberry 3b+ (arm64 defconfig):

# cat /proc/cmdline 
console=tty0 console=ttyS1,115200 root=/dev/sda2 rw fsck.repair=yes net.ifnames=0 cma=64M rootwait isolcpus=1-3 nohz_full=1-3

# uname -a
Linux rpi3 5.13.0 #3 SMP PREEMPT Thu Jul 8 13:08:39 CEST 2021 aarch64 GNU/Linux

# cat /proc/interrupts 
           CPU0       CPU1       CPU2       CPU3
108:     165376         25         25         25  bcm2836-timer   1 Edge  arch_timer


But let's see if I can successfully boot your own config...

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v2] timers: Recalculate next timer interrupt only when necessary
  2021-07-08  6:43 ` [PATCH v2] " He Zhe
  2021-07-08 11:35   ` Frederic Weisbecker
@ 2021-07-08 15:36   ` Frederic Weisbecker
  2021-07-09  5:37     ` He Zhe
  1 sibling, 1 reply; 16+ messages in thread
From: Frederic Weisbecker @ 2021-07-08 15:36 UTC (permalink / raw)
  To: He Zhe; +Cc: anna-maria, linux-kernel, tglx

On Thu, Jul 08, 2021 at 02:43:01PM +0800, He Zhe wrote:
> Hi,
> 
> Ever since this commit merged in, when nohz_full enabled, the counts of arch_timer interrupt on arm64 arches keep increasing on cores that have been isolated. This can be reproduced on several arm64 boards. After reverting the commit, the counts would stop increasing after boot. my .config is attached.
> 
> root@qemuarm64:~# uname -a
> Linux qemuarm64 5.13.0 #1 SMP PREEMPT Mon Jul 5 07:11:27 UTC 2021 aarch64 aarch64 aarch64 GNU/Linux
> root@qemuarm64:~# cat /proc/cmdline
> root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0  earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5
> root@qemuarm64:~# cat /proc/interrupts

And I'm not observing that on default aarch64 on qemu either.
Are you emulating a specific machine?

Can you enable the following trace events and send me the output from
one of the isolated CPU trace, say CPU 3 for example:


DIR=/sys/kernel/debug/tracing

echo 1 > $DIR/events/irq/enable
echo 1 > $DIR/events/sched/sched_switch/enable
echo 1 > $DIR/events/irq_vectors/enable
echo 1 > $DIR/events/workqueue/workqueue_execute_start/enable
echo 1 > $DIR/events/timer/hrtimer_expire_entry/enable
echo 1 > $DIR/events/timer/timer_expire_entry/enable
echo 1 > $DIR/events/timer/tick_stop/enable
sleep 10
cat $DIR/per_cpu/cpu0/trace > ~/output_to_send

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v2] timers: Recalculate next timer interrupt only when necessary
  2021-07-08 15:36   ` Frederic Weisbecker
@ 2021-07-09  5:37     ` He Zhe
  2021-07-09  8:43       ` Frederic Weisbecker
  0 siblings, 1 reply; 16+ messages in thread
From: He Zhe @ 2021-07-09  5:37 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: anna-maria, linux-kernel, tglx

[-- Attachment #1: Type: text/plain, Size: 2442 bytes --]



On 7/8/21 11:36 PM, Frederic Weisbecker wrote:
> On Thu, Jul 08, 2021 at 02:43:01PM +0800, He Zhe wrote:
>> Hi,
>>
>> Ever since this commit merged in, when nohz_full enabled, the counts of arch_timer interrupt on arm64 arches keep increasing on cores that have been isolated. This can be reproduced on several arm64 boards. After reverting the commit, the counts would stop increasing after boot. my .config is attached.
>>
>> root@qemuarm64:~# uname -a
>> Linux qemuarm64 5.13.0 #1 SMP PREEMPT Mon Jul 5 07:11:27 UTC 2021 aarch64 aarch64 aarch64 GNU/Linux
>> root@qemuarm64:~# cat /proc/cmdline
>> root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0  earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5
>> root@qemuarm64:~# cat /proc/interrupts
> And I'm not observing that on default aarch64 on qemu either.
> Are you emulating a specific machine?

Here is my qemu configuration.

qemu-system-aarch64 --version
QEMU emulator version 6.0.0
Copyright (c) 2003-2021 Fabrice Bellard and the QEMU Project developers

qemu-system-aarch64 -device virtio-net-device,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/qemuarm64 -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 -drive id=disk0,file=/qemuarm64/qemuarm64.rootfs.ext4,if=none,format=raw -device virtio-blk-device,drive=disk0 -device qemu-xhci -device usb-tablet -device usb-kbd  -machine virt -cpu cortex-a57 -smp 4 -m 2048  -smp 6 -m 2048 -serial mon:stdio -serial null -nographic -device VGA,edid=on -kernel /qemuarm64/Image.bin -append 'root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0 earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5'

>
> Can you enable the following trace events and send me the output from
> one of the isolated CPU trace, say CPU 3 for example:

output_to_send is attached.
I can confirm that during the sleep the count of arch_timer increases one on each isolated core.

Thanks,
Zhe

>
>
> DIR=/sys/kernel/debug/tracing
>
> echo 1 > $DIR/events/irq/enable
> echo 1 > $DIR/events/sched/sched_switch/enable
> echo 1 > $DIR/events/irq_vectors/enable
> echo 1 > $DIR/events/workqueue/workqueue_execute_start/enable
> echo 1 > $DIR/events/timer/hrtimer_expire_entry/enable
> echo 1 > $DIR/events/timer/timer_expire_entry/enable
> echo 1 > $DIR/events/timer/tick_stop/enable
> sleep 10
> cat $DIR/per_cpu/cpu0/trace > ~/output_to_send




[-- Attachment #2: output_to_send --]
[-- Type: text/plain, Size: 2194756 bytes --]

# tracer: nop
#
# entries-in-buffer/entries-written: 19335/19335   #P:6
#
#                                _-----=> irqs-off
#                               / _----=> need-resched
#                              | / _---=> hardirq/softirq
#                              || / _--=> preempt-depth
#                              ||| /     delay
#           TASK-PID     CPU#  ||||   TIMESTAMP  FUNCTION
#              | |         |   ||||      |         |
           <...>-507     [000] d.h.  5153.775106: irq_handler_entry: irq=11 name=arch_timer
           <...>-507     [000] d.h.  5153.775129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153732097360
           <...>-507     [000] d.h.  5153.775147: softirq_raise: vec=1 [action=TIMER]
           <...>-507     [000] d.h.  5153.775154: softirq_raise: vec=9 [action=RCU]
           <...>-507     [000] d.h.  5153.775187: irq_handler_exit: irq=11 ret=handled
           <...>-507     [000] ..s.  5153.775198: softirq_entry: vec=1 [action=TIMER]
           <...>-507     [000] d.s.  5153.775205: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180730 baseclk=4296180730
           <...>-507     [000] .Ns.  5153.775233: softirq_exit: vec=1 [action=TIMER]
           <...>-507     [000] .Ns.  5153.775235: softirq_entry: vec=9 [action=RCU]
           <...>-507     [000] .Ns.  5153.775251: softirq_exit: vec=9 [action=RCU]
           <...>-507     [000] d..2  5153.775270: sched_switch: prev_comm=sh prev_pid=507 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.775290: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5153.775329: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5153.775351: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=sh next_pid=507 next_prio=120
           <...>-507     [000] d..2  5153.777304: sched_switch: prev_comm=sh prev_pid=507 prev_prio=120 prev_state=S ==> next_comm=sh next_pid=509 next_prio=120
           <...>-509     [000] d.h.  5153.779114: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5153.779140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153736105088
           <...>-509     [000] d.h.  5153.779173: softirq_raise: vec=9 [action=RCU]
           <...>-509     [000] d.h.  5153.779216: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] ..s.  5153.779239: softirq_entry: vec=9 [action=RCU]
           <...>-509     [000] ..s.  5153.779255: softirq_exit: vec=9 [action=RCU]
           <...>-509     [000] d.h.  5153.783115: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5153.783142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153740105616
           <...>-509     [000] d.h.  5153.783168: softirq_raise: vec=1 [action=TIMER]
           <...>-509     [000] d.h.  5153.783216: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] ..s.  5153.783253: softirq_entry: vec=1 [action=TIMER]
           <...>-509     [000] ..s.  5153.783263: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296180732 baseclk=4296180732
           <...>-509     [000] .Ns.  5153.783289: softirq_exit: vec=1 [action=TIMER]
           <...>-509     [000] d..2  5153.783311: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5153.783376: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=sleep next_pid=509 next_prio=120
           <...>-509     [000] d.h.  5153.787112: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5153.787129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153744097120
           <...>-509     [000] d.h.  5153.787145: softirq_raise: vec=1 [action=TIMER]
           <...>-509     [000] d.h.  5153.787149: softirq_raise: vec=9 [action=RCU]
           <...>-509     [000] d.h.  5153.787178: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] ..s.  5153.787185: softirq_entry: vec=1 [action=TIMER]
           <...>-509     [000] ..s.  5153.787202: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296180733 baseclk=4296180733
           <...>-509     [000] .Ns.  5153.787236: softirq_exit: vec=1 [action=TIMER]
           <...>-509     [000] .Ns.  5153.787239: softirq_entry: vec=9 [action=RCU]
           <...>-509     [000] .Ns.  5153.787290: softirq_exit: vec=9 [action=RCU]
           <...>-509     [000] d..2  5153.787306: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.787327: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5153.787386: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5153.787442: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=sleep next_pid=509 next_prio=120
           <...>-509     [000] d.h.  5153.791097: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5153.791117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153748083920
           <...>-509     [000] d.h.  5153.791134: softirq_raise: vec=1 [action=TIMER]
           <...>-509     [000] d.h.  5153.791167: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] ..s.  5153.791174: softirq_entry: vec=1 [action=TIMER]
           <...>-509     [000] ..s.  5153.791205: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296180734 baseclk=4296180734
           <...>-509     [000] .Ns.  5153.791226: softirq_exit: vec=1 [action=TIMER]
           <...>-509     [000] d..2  5153.791243: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5153.791286: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=sleep next_pid=509 next_prio=120
           <...>-509     [000] d.h.  5153.795120: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5153.795138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153752105520
           <...>-509     [000] d.h.  5153.795159: softirq_raise: vec=9 [action=RCU]
           <...>-509     [000] d.h.  5153.795189: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] ..s.  5153.795200: softirq_entry: vec=9 [action=RCU]
           <...>-509     [000] ..s.  5153.795259: softirq_exit: vec=9 [action=RCU]
           <...>-509     [000] d.h.  5153.799093: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5153.799110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153756077984
           <...>-509     [000] d.h.  5153.799127: softirq_raise: vec=1 [action=TIMER]
           <...>-509     [000] d.h.  5153.799160: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] ..s.  5153.799168: softirq_entry: vec=1 [action=TIMER]
           <...>-509     [000] d.s.  5153.799185: timer_expire_entry: timer=00000000a4b76f72 function=delayed_work_timer_fn now=4296180736 baseclk=4296180736
           <...>-509     [000] .Ns.  5153.799210: softirq_exit: vec=1 [action=TIMER]
           <...>-509     [000] d..2  5153.799229: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.799246: workqueue_execute_start: work struct 00000000267d8804: function do_cache_clean
     kworker/0:2-112     [000] d..2  5153.799281: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=sleep next_pid=509 next_prio=120
           <...>-509     [000] d.h.  5153.803107: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5153.803124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153760092016
           <...>-509     [000] d.h.  5153.803145: softirq_raise: vec=9 [action=RCU]
           <...>-509     [000] d.h.  5153.803174: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] ..s.  5153.803197: softirq_entry: vec=9 [action=RCU]
           <...>-509     [000] .Ns.  5153.803224: softirq_exit: vec=9 [action=RCU]
           <...>-509     [000] d..2  5153.803245: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5153.803282: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=sleep next_pid=509 next_prio=120
           <...>-509     [000] d..2  5153.806747: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.807098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.807113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153764081520
          <idle>-0       [000] d.h1  5153.807129: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5153.807152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.807159: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] ..s1  5153.807175: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5153.811091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.811098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153768069952
          <idle>-0       [000] d.h1  5153.811106: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5153.811120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.811136: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5153.811143: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296180739 baseclk=4296180739
          <idle>-0       [000] .Ns1  5153.811158: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5153.811176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5153.811217: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.815102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.815111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153772081600
          <idle>-0       [000] d.h1  5153.815120: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5153.815134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.815149: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] ..s1  5153.815169: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5153.819087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.819094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153776066032
          <idle>-0       [000] d.h1  5153.819112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.823086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.823093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153780065216
          <idle>-0       [000] d.h1  5153.823109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.827085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.827091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153784063856
          <idle>-0       [000] d.h1  5153.827106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.831083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.831090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153788062048
          <idle>-0       [000] d.h1  5153.831095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5153.831107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.831112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5153.831117: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296180744 baseclk=4296180744
          <idle>-0       [000] .Ns1  5153.831142: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5153.831156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5153.831194: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.835092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.835101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153792071968
          <idle>-0       [000] d.h1  5153.835109: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5153.835124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.835129: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5153.835133: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180745 baseclk=4296180745
          <idle>-0       [000] .Ns1  5153.835156: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5153.835169: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.835178: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5153.835199: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.839097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.839106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153796076864
          <idle>-0       [000] d.h1  5153.839127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.843089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.843096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153800068544
          <idle>-0       [000] d.h1  5153.843113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.847085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.847091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153804063936
          <idle>-0       [000] d.h1  5153.847107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.851085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.851092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153808064160
          <idle>-0       [000] d.h1  5153.851109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.855093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.855099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153812071456
          <idle>-0       [000] d.h1  5153.855113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.859063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.859071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153816042640
          <idle>-0       [000] d.h1  5153.859090: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.863058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.863065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153820037264
          <idle>-0       [000] d.h1  5153.863071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5153.863083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.863098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5153.863105: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296180752 baseclk=4296180752
          <idle>-0       [000] dNs1  5153.863122: timer_expire_entry: timer=000000001a0627f8 function=delayed_work_timer_fn now=4296180752 baseclk=4296180752
          <idle>-0       [000] .Ns1  5153.863128: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5153.863143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.863155: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] ....  5153.863184: workqueue_execute_start: work struct 000000006fcdae5f: function vmstat_update
     kworker/0:2-112     [000] d..2  5153.863220: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.867066: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.867076: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153824046400
          <idle>-0       [000] d.h1  5153.867098: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.871059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.871066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153828038384
          <idle>-0       [000] d.h1  5153.871083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.875059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.875065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153832037744
          <idle>-0       [000] d.h1  5153.875080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.879058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.879065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153836037328
          <idle>-0       [000] d.h1  5153.879079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.883084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.883091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153840063296
          <idle>-0       [000] d.h1  5153.883106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.887084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.887090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153844062800
          <idle>-0       [000] d.h1  5153.887105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.891083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.891089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153848061664
          <idle>-0       [000] d.h1  5153.891103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.895083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.895090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153852062496
          <idle>-0       [000] d.h1  5153.895105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.899102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.899108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153856080880
          <idle>-0       [000] d.h1  5153.899123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.903099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.903106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153860078128
          <idle>-0       [000] d.h1  5153.903111: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5153.903123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.903128: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5153.903133: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180762 baseclk=4296180762
          <idle>-0       [000] .Ns1  5153.903159: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5153.903172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.903180: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5153.903213: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.907093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.907102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153864072752
          <idle>-0       [000] d.h1  5153.907122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.911094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.911101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153868073296
          <idle>-0       [000] d.h1  5153.911117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.915093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.915099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153872071648
          <idle>-0       [000] d.h1  5153.915114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.919092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.919099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153876070864
          <idle>-0       [000] d.h1  5153.919112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.923084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.923091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153880063104
          <idle>-0       [000] d.h1  5153.923106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.927083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.927089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153884061712
          <idle>-0       [000] d.h1  5153.927104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.931083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.931090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153888062320
          <idle>-0       [000] d.h1  5153.931104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.935085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.935091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153892063344
          <idle>-0       [000] d.h1  5153.935105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.939084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.939091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153896063216
          <idle>-0       [000] d.h1  5153.939097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5153.939108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.939113: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5153.939117: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180771 baseclk=4296180771
          <idle>-0       [000] .Ns1  5153.939143: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5153.939155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.939163: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5153.939181: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.943093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.943101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153900072368
          <idle>-0       [000] d.h1  5153.943122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.947089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.947096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153904068048
          <idle>-0       [000] d.h1  5153.947111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.951084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.951091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153908063360
          <idle>-0       [000] d.h1  5153.951106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.955085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.955092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153912063936
          <idle>-0       [000] d.h1  5153.955110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.956104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.956110: hrtimer_expire_entry: hrtimer=0000000056a168fb function=it_real_fn now=5153913082768
          <idle>-0       [000] dNh1  5153.956237: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5153.956261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rdisc next_pid=252 next_prio=120
           rdisc-252     [000] d..2  5153.956574: sched_switch: prev_comm=rdisc prev_pid=252 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.959082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.959098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153916065200
          <idle>-0       [000] d.h1  5153.959141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.963060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.963068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153920039616
          <idle>-0       [000] d.h1  5153.963086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.967059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.967066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153924038576
          <idle>-0       [000] d.h1  5153.967082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.971058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.971064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153928036752
          <idle>-0       [000] d.h1  5153.971079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.975062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.975068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153932040976
          <idle>-0       [000] d.h1  5153.975083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.979058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.979064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153936036784
          <idle>-0       [000] d.h1  5153.979078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.983058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.983064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153940036768
          <idle>-0       [000] d.h1  5153.983078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.987058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.987064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153944036928
          <idle>-0       [000] d.h1  5153.987079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.991058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.991064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153948036736
          <idle>-0       [000] d.h1  5153.991071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5153.991083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5153.991097: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5153.991106: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296180784 baseclk=4296180784
          <idle>-0       [000] .Ns1  5153.991137: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5153.991154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5153.991169: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5153.991223: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5153.991278: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5153.995091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.995101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153952071248
          <idle>-0       [000] d.h1  5153.995124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5153.999089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5153.999096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153956067824
          <idle>-0       [000] d.h1  5153.999113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.003083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.003090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153960062128
          <idle>-0       [000] d.h1  5154.003105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.007084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.007091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153964063184
          <idle>-0       [000] d.h1  5154.007105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.011085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.011091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153968063488
          <idle>-0       [000] d.h1  5154.011105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.015084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.015090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153972062832
          <idle>-0       [000] d.h1  5154.015105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.019084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.019090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153976062688
          <idle>-0       [000] d.h1  5154.019105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.023084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.023090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153980062976
          <idle>-0       [000] d.h1  5154.023105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.027084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.027090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153984062544
          <idle>-0       [000] d.h1  5154.027104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.031093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.031099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153988071728
          <idle>-0       [000] d.h1  5154.031105: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.031117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.031132: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.031140: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180794 baseclk=4296180794
          <idle>-0       [000] .Ns1  5154.031155: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.031168: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.031177: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.031211: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.035098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.035107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153992077616
          <idle>-0       [000] d.h1  5154.035128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.039089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.039095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5153996067712
          <idle>-0       [000] d.h1  5154.039112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.043085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.043091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154000063664
          <idle>-0       [000] d.h1  5154.043097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.043110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.043114: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.043119: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180797 baseclk=4296180797
          <idle>-0       [000] .Ns1  5154.043144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.043157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.043165: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.043184: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.047093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.047102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154004072976
          <idle>-0       [000] d.h1  5154.047123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.051090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.051097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154008069136
          <idle>-0       [000] d.h1  5154.051113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.055085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.055091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154012063680
          <idle>-0       [000] d.h1  5154.055106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.059084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.059091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154016063152
          <idle>-0       [000] d.h1  5154.059105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.063088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.063096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154020068080
          <idle>-0       [000] d.h1  5154.063117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.067086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.067092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154024064800
          <idle>-0       [000] d.h1  5154.067108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.071085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.071091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154028063712
          <idle>-0       [000] d.h1  5154.071106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.075085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.075091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154032063392
          <idle>-0       [000] d.h1  5154.075105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.079097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.079103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154036075824
          <idle>-0       [000] d.h1  5154.079117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.083085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.083092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154040064432
          <idle>-0       [000] d.h1  5154.083107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.087085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.087092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154044064240
          <idle>-0       [000] d.h1  5154.087106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.091084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.091091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154048063152
          <idle>-0       [000] d.h1  5154.091105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.095084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.095090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154052063008
          <idle>-0       [000] d.h1  5154.095105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.099094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.099100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154056072384
          <idle>-0       [000] d.h1  5154.099113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.103085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.103091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154060063456
          <idle>-0       [000] d.h1  5154.103106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.107084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.107090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154064062560
          <idle>-0       [000] d.h1  5154.107104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.111084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.111090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154068062656
          <idle>-0       [000] d.h1  5154.111105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.115085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.115092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154072064112
          <idle>-0       [000] d.h1  5154.115106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.119094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.119100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154076072832
          <idle>-0       [000] d.h1  5154.119114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.123089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.123096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154080068304
          <idle>-0       [000] d.h1  5154.123110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.127093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.127099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154084071920
          <idle>-0       [000] d.h1  5154.127113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.131085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.131092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154088064064
          <idle>-0       [000] d.h1  5154.131106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.135097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.135103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154092075232
          <idle>-0       [000] d.h1  5154.135116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.139084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.139091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154096063536
          <idle>-0       [000] d.h1  5154.139106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.143085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.143091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154100063952
          <idle>-0       [000] d.h1  5154.143106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.147084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.147090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154104062320
          <idle>-0       [000] d.h1  5154.147095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.147106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.147123: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.147129: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180823 baseclk=4296180823
          <idle>-0       [000] .Ns1  5154.147145: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.147160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.147171: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.147194: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.151091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.151100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154108070912
          <idle>-0       [000] d.h1  5154.151120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.155088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.155095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154112067440
          <idle>-0       [000] d.h1  5154.155111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.159084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.159091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154116063424
          <idle>-0       [000] d.h1  5154.159097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.159109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.159114: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.159118: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180826 baseclk=4296180826
          <idle>-0       [000] .Ns1  5154.159144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.159156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.159165: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.159194: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.163093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.163101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154120072400
          <idle>-0       [000] d.h1  5154.163122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.167086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.167093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154124065488
          <idle>-0       [000] d.h1  5154.167109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.171086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.171092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154128064656
          <idle>-0       [000] d.h1  5154.171107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.175086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.175092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154132064480
          <idle>-0       [000] d.h1  5154.175107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.179085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.179091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154136063568
          <idle>-0       [000] d.h1  5154.179106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.183084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.183091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154140063264
          <idle>-0       [000] d.h1  5154.183105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.187084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.187090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154144062768
          <idle>-0       [000] d.h1  5154.187104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.191084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.191090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154148062576
          <idle>-0       [000] d.h1  5154.191104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.195085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.195091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154152063760
          <idle>-0       [000] d.h1  5154.195097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.195108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.195113: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5154.195116: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296180835 baseclk=4296180835
          <idle>-0       [000] .Ns1  5154.195145: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.195158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.195166: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5154.195191: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5154.195220: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.199069: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.199078: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154156048416
          <idle>-0       [000] d.h1  5154.199102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.203087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.203094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154160065856
          <idle>-0       [000] d.h1  5154.203110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.207085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.207091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154164063616
          <idle>-0       [000] d.h1  5154.207107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.211085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.211092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154168064144
          <idle>-0       [000] d.h1  5154.211106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.215084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.215091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154172063088
          <idle>-0       [000] d.h1  5154.215104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.219085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.219092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154176064080
          <idle>-0       [000] d.h1  5154.219105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.223086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.223093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154180065184
          <idle>-0       [000] d.h1  5154.223107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.227085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.227091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154184063312
          <idle>-0       [000] d.h1  5154.227105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.231085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.231091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154188063424
          <idle>-0       [000] d.h1  5154.231105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.235085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.235092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154192064064
          <idle>-0       [000] d.h1  5154.235106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.239085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.239091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154196063360
          <idle>-0       [000] d.h1  5154.239105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.243082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.243089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154200061168
          <idle>-0       [000] d.h1  5154.243102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.247084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.247090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154204062784
          <idle>-0       [000] d.h1  5154.247105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.251088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.251094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154208066320
          <idle>-0       [000] d.h1  5154.251100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.251111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.251116: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.251120: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180849 baseclk=4296180849
          <idle>-0       [000] .Ns1  5154.251146: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.251158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.251167: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.251185: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.255103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.255115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154212084768
          <idle>-0       [000] d.h1  5154.255141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.259089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.259100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154216068736
          <idle>-0       [000] d.h1  5154.259117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.263101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.263108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154220080240
          <idle>-0       [000] d.h1  5154.263123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.267086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.267094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154224066000
          <idle>-0       [000] d.h1  5154.267114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.271089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.271095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154228067744
          <idle>-0       [000] d.h1  5154.271111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.275088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.275094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154232066544
          <idle>-0       [000] d.h1  5154.275109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.279088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.279094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154236066576
          <idle>-0       [000] d.h1  5154.279100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.279112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.279117: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.279138: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296180856 baseclk=4296180856
          <idle>-0       [000] dNs1  5154.279161: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296180856 baseclk=4296180856
          <idle>-0       [000] dNs1  5154.279166: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296180856 baseclk=4296180856
          <idle>-0       [000] dNs1  5154.279170: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296180856 baseclk=4296180856
          <idle>-0       [000] dNs1  5154.279172: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296180856 baseclk=4296180856
          <idle>-0       [000] .Ns1  5154.279176: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.279193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5154.279218: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5154.279233: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5154.279242: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5154.279249: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5154.279256: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5154.279274: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5154.279295: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.283098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.283108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154240078144
          <idle>-0       [000] d.h1  5154.283130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.287093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.287100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154244072256
          <idle>-0       [000] d.h1  5154.287107: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.287120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.287125: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.287129: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180858 baseclk=4296180858
          <idle>-0       [000] .Ns1  5154.287154: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.287167: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.287176: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.287206: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.291106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.291115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154248085520
          <idle>-0       [000] d.h1  5154.291134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.295086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.295093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154252064752
          <idle>-0       [000] d.h1  5154.295109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.299088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.299094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154256066800
          <idle>-0       [000] d.h1  5154.299110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.303058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.303065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154260037104
          <idle>-0       [000] d.h1  5154.303079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.307061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.307067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154264039872
          <idle>-0       [000] d.h1  5154.307081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.311058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.311064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154268036912
          <idle>-0       [000] d.h1  5154.311079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.315058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.315065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154272037024
          <idle>-0       [000] d.h1  5154.315079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.319058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.319064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154276036704
          <idle>-0       [000] d.h1  5154.319078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.323058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.323064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154280036688
          <idle>-0       [000] d.h1  5154.323078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.327058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.327064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154284036400
          <idle>-0       [000] d.h1  5154.327078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.331058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.331065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154288037232
          <idle>-0       [000] d.h1  5154.331078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.335058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.335065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154292037168
          <idle>-0       [000] d.h1  5154.335078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.339058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.339065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154296037104
          <idle>-0       [000] d.h1  5154.339078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.343058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.343064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154300036864
          <idle>-0       [000] d.h1  5154.343070: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.343081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.343096: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5154.343103: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296180872 baseclk=4296180872
          <idle>-0       [000] .Ns1  5154.343117: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.343130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5154.343166: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.347063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.347071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154304042432
          <idle>-0       [000] d.h1  5154.347091: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.351059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.351066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154308038352
          <idle>-0       [000] d.h1  5154.351081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.355058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.355065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154312037296
          <idle>-0       [000] d.h1  5154.355071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.355082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.355096: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.355102: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180875 baseclk=4296180875
          <idle>-0       [000] .Ns1  5154.355115: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.355127: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.355136: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.355154: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.359062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.359071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154316041936
          <idle>-0       [000] d.h1  5154.359090: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.363070: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.363077: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154320048736
          <idle>-0       [000] d.h1  5154.363093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.367067: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.367074: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154324046160
          <idle>-0       [000] d.h1  5154.367088: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.371088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.371095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154328067104
          <idle>-0       [000] d.h1  5154.371109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.375103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.375110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154332082288
          <idle>-0       [000] d.h1  5154.375124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.379058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.379064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154336036304
          <idle>-0       [000] d.h1  5154.379078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.383065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.383075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154340043664
          <idle>-0       [000] d.h1  5154.383090: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.387057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.387063: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154344035952
          <idle>-0       [000] d.h1  5154.387078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.391057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.391063: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154348035280
          <idle>-0       [000] d.h1  5154.391077: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.395057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.395063: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154352035824
          <idle>-0       [000] d.h1  5154.395077: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.399057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.399064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154356035952
          <idle>-0       [000] d.h1  5154.399069: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.399081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.399095: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5154.399101: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296180886 baseclk=4296180886
          <idle>-0       [000] .Ns1  5154.399118: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.399131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.399140: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5154.399167: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5154.399199: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.403064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.403074: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154360044128
          <idle>-0       [000] d.h1  5154.403096: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.407060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.407067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154364038864
          <idle>-0       [000] d.h1  5154.407083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.411059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.411065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154368037632
          <idle>-0       [000] d.h1  5154.411081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.415058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.415065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154372037408
          <idle>-0       [000] d.h1  5154.415071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.415083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.415098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.415104: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180890 baseclk=4296180890
          <idle>-0       [000] .Ns1  5154.415119: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.415132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.415141: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.415172: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.419064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.419073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154376043488
          <idle>-0       [000] d.h1  5154.419092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.423059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.423066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154380038208
          <idle>-0       [000] d.h1  5154.423082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.427058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.427065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154384037184
          <idle>-0       [000] d.h1  5154.427079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.431058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.431064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154388036656
          <idle>-0       [000] d.h1  5154.431078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.435058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.435065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154392037152
          <idle>-0       [000] d.h1  5154.435079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.439057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.439063: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154396035840
          <idle>-0       [000] d.h1  5154.439077: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.443058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.443064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154400036944
          <idle>-0       [000] d.h1  5154.443079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.447058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.447064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154404036544
          <idle>-0       [000] d.h1  5154.447078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.451058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.451064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154408036384
          <idle>-0       [000] d.h1  5154.451078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.455058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.455064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154412036752
          <idle>-0       [000] d.h1  5154.455079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.459058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.459065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154416037088
          <idle>-0       [000] d.h1  5154.459070: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.459082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.459098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.459104: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180901 baseclk=4296180901
          <idle>-0       [000] .Ns1  5154.459117: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.459129: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.459137: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.459155: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.463063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.463071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154420042272
          <idle>-0       [000] d.h1  5154.463090: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.467085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.467091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154424063776
          <idle>-0       [000] d.h1  5154.467108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.471087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.471095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154428067024
          <idle>-0       [000] d.h1  5154.471115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.475088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.475094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154432066672
          <idle>-0       [000] d.h1  5154.475109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.479083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.479089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154436061472
          <idle>-0       [000] d.h1  5154.479103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.483090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.483097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154440069152
          <idle>-0       [000] d.h1  5154.483110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.487084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.487090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154444062496
          <idle>-0       [000] d.h1  5154.487104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.491083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.491089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154448061600
          <idle>-0       [000] d.h1  5154.491103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.495083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.495090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154452062000
          <idle>-0       [000] d.h1  5154.495104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.499084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.499090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154456062432
          <idle>-0       [000] d.h1  5154.499104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.503100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.503106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154460078256
          <idle>-0       [000] d.h1  5154.503120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.507101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.507107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154464079856
          <idle>-0       [000] d.h1  5154.507122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.511083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.511089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154468061392
          <idle>-0       [000] d.h1  5154.511103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.515084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.515090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154472062352
          <idle>-0       [000] d.h1  5154.515104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.519088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.519095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154476067104
          <idle>-0       [000] d.h1  5154.519109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.523094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.523100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154480072656
          <idle>-0       [000] d.h1  5154.523124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.527084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.527090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154484062432
          <idle>-0       [000] d.h1  5154.527104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.531088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.531098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154488067184
          <idle>-0       [000] d.h1  5154.531113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.535084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.535090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154492062816
          <idle>-0       [000] d.h1  5154.535104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.539082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.539088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154496060976
          <idle>-0       [000] d.h1  5154.539102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.543085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.543091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154500063216
          <idle>-0       [000] d.h1  5154.543096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.543108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.543114: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.543118: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180922 baseclk=4296180922
          <idle>-0       [000] .Ns1  5154.543148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.543163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.543174: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.543208: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.547095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.547104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154504074656
          <idle>-0       [000] d.h1  5154.547124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.551089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.551096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154508067888
          <idle>-0       [000] d.h1  5154.551121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.555085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.555091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154512063616
          <idle>-0       [000] d.h1  5154.555114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.559085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.559091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154516063584
          <idle>-0       [000] d.h1  5154.559106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.563088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.563094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154520066848
          <idle>-0       [000] d.h1  5154.563100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.563116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.563130: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.563136: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180927 baseclk=4296180927
          <idle>-0       [000] .Ns1  5154.563150: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.563162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.563170: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.563189: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.567094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.567103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154524073952
          <idle>-0       [000] d.h1  5154.567123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.571100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.571107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154528079072
          <idle>-0       [000] d.h1  5154.571122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.575090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.575096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154532068336
          <idle>-0       [000] d.h1  5154.575111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.579088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.579094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154536066880
          <idle>-0       [000] d.h1  5154.579112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.583089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.583095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154540067456
          <idle>-0       [000] d.h1  5154.583110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.587086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.587092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154544065024
          <idle>-0       [000] d.h1  5154.587106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.591090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.591096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154548068400
          <idle>-0       [000] d.h1  5154.591111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.595088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.595094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154552066624
          <idle>-0       [000] d.h1  5154.595109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.599088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.599094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154556066416
          <idle>-0       [000] d.h1  5154.599109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.603086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.603092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154560064544
          <idle>-0       [000] d.h1  5154.603098: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.603110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.603115: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5154.603118: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296180937 baseclk=4296180937
          <idle>-0       [000] .Ns1  5154.603150: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.603162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.603171: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5154.603194: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5154.603223: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.607094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.607104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154564074400
          <idle>-0       [000] d.h1  5154.607127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.611105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.611112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154568084064
          <idle>-0       [000] d.h1  5154.611128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.615089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.615095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154572067536
          <idle>-0       [000] d.h1  5154.615110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.619088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.619094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154576067008
          <idle>-0       [000] d.h1  5154.619109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.623089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.623095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154580067472
          <idle>-0       [000] d.h1  5154.623110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.627085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.627091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154584063584
          <idle>-0       [000] d.h1  5154.627105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.631086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.631092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154588064592
          <idle>-0       [000] d.h1  5154.631107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.635095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.635101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154592073808
          <idle>-0       [000] d.h1  5154.635116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.639085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.639091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154596063280
          <idle>-0       [000] d.h1  5154.639105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.643089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.643096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154600068384
          <idle>-0       [000] d.h1  5154.643110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.647086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.647092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154604064560
          <idle>-0       [000] d.h1  5154.647106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.651093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.651099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154608071776
          <idle>-0       [000] d.h1  5154.651113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.655093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.655099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154612071872
          <idle>-0       [000] d.h1  5154.655113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.659093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.659099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154616071840
          <idle>-0       [000] d.h1  5154.659113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.663084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.663090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154620062976
          <idle>-0       [000] d.h1  5154.663105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.667084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.667091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154624063200
          <idle>-0       [000] d.h1  5154.667096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.667108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.667113: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.667116: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180953 baseclk=4296180953
          <idle>-0       [000] .Ns1  5154.667148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.667161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.667170: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.667193: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.671095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.671103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154628074320
          <idle>-0       [000] d.h1  5154.671111: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.671126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.671141: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.671147: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180954 baseclk=4296180954
          <idle>-0       [000] .Ns1  5154.671160: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.671173: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.671180: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.671208: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.675094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.675105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154632075344
          <idle>-0       [000] d.h1  5154.675132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.679090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.679097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154636069568
          <idle>-0       [000] d.h1  5154.679114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.683089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.683096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154640067984
          <idle>-0       [000] d.h1  5154.683111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.687086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.687092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154644064560
          <idle>-0       [000] d.h1  5154.687106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.691084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.691091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154648063008
          <idle>-0       [000] d.h1  5154.691105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.695085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.695091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154652063312
          <idle>-0       [000] d.h1  5154.695105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.699085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.699091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154656063520
          <idle>-0       [000] d.h1  5154.699105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.703095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.703102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154660074064
          <idle>-0       [000] d.h1  5154.703115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.707084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.707091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154664063024
          <idle>-0       [000] d.h1  5154.707105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.711085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.711092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154668064112
          <idle>-0       [000] d.h1  5154.711106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.715086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.715092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154672064240
          <idle>-0       [000] d.h1  5154.715106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.719084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.719090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154676062752
          <idle>-0       [000] d.h1  5154.719104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.723084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.723090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154680062864
          <idle>-0       [000] d.h1  5154.723104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.727085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.727091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154684063472
          <idle>-0       [000] d.h1  5154.727105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.731093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.731099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154688071536
          <idle>-0       [000] d.h1  5154.731112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.735084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.735090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154692063008
          <idle>-0       [000] d.h1  5154.735104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.739085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.739091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154696063408
          <idle>-0       [000] d.h1  5154.739105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.743096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.743102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154700074656
          <idle>-0       [000] d.h1  5154.743115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.747085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.747091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154704063616
          <idle>-0       [000] d.h1  5154.747105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.751084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.751090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154708063008
          <idle>-0       [000] d.h1  5154.751104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.755085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.755091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154712063232
          <idle>-0       [000] d.h1  5154.755104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.759084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.759091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154716063152
          <idle>-0       [000] d.h1  5154.759104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.763084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.763090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154720062976
          <idle>-0       [000] d.h1  5154.763104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.767086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.767092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154724064240
          <idle>-0       [000] d.h1  5154.767106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.771084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.771090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154728062768
          <idle>-0       [000] d.h1  5154.771096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.771107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.771112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.771116: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296180979 baseclk=4296180979
          <idle>-0       [000] .Ns1  5154.771148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.771163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.771174: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.771196: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.775068: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.775076: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154732047280
          <idle>-0       [000] d.h1  5154.775095: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.779066: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.779072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154736044832
          <idle>-0       [000] d.h1  5154.779088: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.783122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.783129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154740101488
          <idle>-0       [000] d.h1  5154.783144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.787078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.787085: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154744057008
          <idle>-0       [000] d.h1  5154.787100: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.791065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.791071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154748043376
          <idle>-0       [000] d.h1  5154.791085: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.795061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.795067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154752039728
          <idle>-0       [000] d.h1  5154.795081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.799060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.799066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154756038512
          <idle>-0       [000] d.h1  5154.799072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.799083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.799099: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.799105: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296180986 baseclk=4296180986
          <idle>-0       [000] .Ns1  5154.799119: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.799132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.799141: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.799172: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.803064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.803073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154760044000
          <idle>-0       [000] d.h1  5154.803093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.807062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.807068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154764040576
          <idle>-0       [000] d.h1  5154.807074: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.807086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.807103: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5154.807109: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296180988 baseclk=4296180988
          <idle>-0       [000] .Ns1  5154.807125: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.807138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.807149: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5154.807172: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5154.807200: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.811065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.811075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154768044912
          <idle>-0       [000] d.h1  5154.811097: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.815061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.815068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154772040608
          <idle>-0       [000] d.h1  5154.815085: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.819061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.819067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154776039840
          <idle>-0       [000] d.h1  5154.819082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.823060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.823066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154780038624
          <idle>-0       [000] d.h1  5154.823080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.827059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.827066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154784038432
          <idle>-0       [000] d.h1  5154.827080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.831063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.831070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154788042288
          <idle>-0       [000] d.h1  5154.831084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.835066: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.835073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154792045056
          <idle>-0       [000] d.h1  5154.835087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.839084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.839091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154796063136
          <idle>-0       [000] d.h1  5154.839105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.844805: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.844826: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154801794224
          <idle>-0       [000] d.h1  5154.844864: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.847102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.847110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154804082096
          <idle>-0       [000] d.h1  5154.847129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.851090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.851098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154808069824
          <idle>-0       [000] d.h1  5154.851113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.855083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.855090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154812062240
          <idle>-0       [000] d.h1  5154.855096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.855109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.855114: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5154.855119: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181000 baseclk=4296181000
          <idle>-0       [000] .Ns1  5154.855141: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.855159: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5154.855203: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.859092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.859102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154816072400
          <idle>-0       [000] d.h1  5154.859123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.863094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.863101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154820073024
          <idle>-0       [000] d.h1  5154.863117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.867088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.867094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154824066448
          <idle>-0       [000] d.h1  5154.867109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.871088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.871094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154828066912
          <idle>-0       [000] d.h1  5154.871109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.875088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.875094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154832066928
          <idle>-0       [000] d.h1  5154.875100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.875112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.875117: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.875120: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181005 baseclk=4296181005
          <idle>-0       [000] .Ns1  5154.875151: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.875164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.875174: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.875196: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.879095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.879104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154836075056
          <idle>-0       [000] d.h1  5154.879124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.883093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.883100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154840072352
          <idle>-0       [000] d.h1  5154.883116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.887101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.887108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154844080128
          <idle>-0       [000] d.h1  5154.887113: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.887125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.887130: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.887136: timer_expire_entry: timer=000000001a0627f8 function=delayed_work_timer_fn now=4296181008 baseclk=4296181008
          <idle>-0       [000] dNs1  5154.887158: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296181008 baseclk=4296181008
          <idle>-0       [000] .Ns1  5154.887163: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.887175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.887183: workqueue_execute_start: work struct 000000006fcdae5f: function vmstat_update
     kworker/0:2-112     [000] ....  5154.887201: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5154.887242: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.891107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.891115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154848086288
          <idle>-0       [000] d.h1  5154.891137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.895089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.895096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154852068224
          <idle>-0       [000] d.h1  5154.895113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.899101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.899107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154856079584
          <idle>-0       [000] d.h1  5154.899122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.903087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.903094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154860066208
          <idle>-0       [000] d.h1  5154.903109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.907059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.907065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154864037872
          <idle>-0       [000] d.h1  5154.907079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.911060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.911066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154868038784
          <idle>-0       [000] d.h1  5154.911080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.915058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.915065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154872037360
          <idle>-0       [000] d.h1  5154.915079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.919059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.919065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154876037824
          <idle>-0       [000] d.h1  5154.919079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.923058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.923065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154880037152
          <idle>-0       [000] d.h1  5154.923079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.927059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.927065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154884037632
          <idle>-0       [000] d.h1  5154.927071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.927082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.927097: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.927103: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181018 baseclk=4296181018
          <idle>-0       [000] .Ns1  5154.927117: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.927130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.927139: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5154.927170: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.931063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.931072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154888043056
          <idle>-0       [000] d.h1  5154.931092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.935067: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.935074: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154892046560
          <idle>-0       [000] d.h1  5154.935090: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.939059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.939066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154896038144
          <idle>-0       [000] d.h1  5154.939084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.943060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.943066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154900038592
          <idle>-0       [000] d.h1  5154.943080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.947068: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.947075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154904047360
          <idle>-0       [000] d.h1  5154.947089: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.951059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.951065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154908037472
          <idle>-0       [000] d.h1  5154.951079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.955059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.955065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154912037552
          <idle>-0       [000] d.h1  5154.955078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.959073: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.959079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154916051808
          <idle>-0       [000] d.h1  5154.959094: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.963071: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.963078: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154920050304
          <idle>-0       [000] d.h1  5154.963091: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.967059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.967065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154924037296
          <idle>-0       [000] d.h1  5154.967078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.971064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.971070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154928042864
          <idle>-0       [000] d.h1  5154.971084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.975067: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.975074: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154932046048
          <idle>-0       [000] d.h1  5154.975087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.979069: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.979075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154936047920
          <idle>-0       [000] d.h1  5154.979081: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5154.979092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5154.979108: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5154.979114: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181031 baseclk=4296181031
          <idle>-0       [000] .Ns1  5154.979129: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5154.979142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5154.979150: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5154.979169: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5154.983074: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.983083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154940053760
          <idle>-0       [000] d.h1  5154.983102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.987082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.987098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154944067296
          <idle>-0       [000] d.h1  5154.987131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.991071: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.991079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154948051296
          <idle>-0       [000] d.h1  5154.991099: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.995073: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.995082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154952053392
          <idle>-0       [000] d.h1  5154.995103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5154.999080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5154.999089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154956061152
          <idle>-0       [000] d.h1  5154.999109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.003072: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.003081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154960052480
          <idle>-0       [000] d.h1  5155.003100: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.007071: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.007082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154964053072
          <idle>-0       [000] d.h1  5155.007106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.011071: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.011080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154968051248
          <idle>-0       [000] d.h1  5155.011089: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.011103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.011119: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.011128: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181039 baseclk=4296181039
          <idle>-0       [000] .Ns1  5155.011171: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.011197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.011219: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5155.011262: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5155.011316: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.015076: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.015091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154972059120
          <idle>-0       [000] d.h1  5155.015122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.019088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.019112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154976079408
          <idle>-0       [000] d.h1  5155.019161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.023073: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.023083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154980054336
          <idle>-0       [000] d.h1  5155.023103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.027076: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.027085: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154984056912
          <idle>-0       [000] d.h1  5155.027101: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.031070: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.031079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154988051088
          <idle>-0       [000] d.h1  5155.031098: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.035083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.035104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154992072736
          <idle>-0       [000] d.h1  5155.035144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.039082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.039102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5154996071328
          <idle>-0       [000] d.h1  5155.039142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.043099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.043119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155000088000
          <idle>-0       [000] d.h1  5155.043158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.047081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.047102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155004070480
          <idle>-0       [000] d.h1  5155.047142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.051084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.051104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155008072640
          <idle>-0       [000] d.h1  5155.051142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.055087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.055093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155012065360
          <idle>-0       [000] d.h1  5155.055099: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.055111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.055134: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.055144: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181050 baseclk=4296181050
          <idle>-0       [000] .Ns1  5155.055171: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.055189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.055202: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.055244: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.059105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.059115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155016085392
          <idle>-0       [000] d.h1  5155.059136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.063086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.063114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155020085696
          <idle>-0       [000] d.h1  5155.063130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.067081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.067102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155024070496
          <idle>-0       [000] d.h1  5155.067142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.071084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.071104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155028072944
          <idle>-0       [000] d.h1  5155.071143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.075090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.075110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155032079104
          <idle>-0       [000] d.h1  5155.075148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.079086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.079093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155036065120
          <idle>-0       [000] d.h1  5155.079106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.083064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.083070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155040042704
          <idle>-0       [000] d.h1  5155.083076: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.083087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.083103: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.083109: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181057 baseclk=4296181057
          <idle>-0       [000] .Ns1  5155.083124: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.083142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.083151: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.083172: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.087097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.087106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155044076832
          <idle>-0       [000] d.h1  5155.087125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.091085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.091106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155048074208
          <idle>-0       [000] d.h1  5155.091148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.095085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.095111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155052083696
          <idle>-0       [000] d.h1  5155.095125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.099081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.099100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155056069216
          <idle>-0       [000] d.h1  5155.099139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.103086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.103106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155060074816
          <idle>-0       [000] d.h1  5155.103145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.107108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.107114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155064086688
          <idle>-0       [000] d.h1  5155.107128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.111082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.111101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155068069968
          <idle>-0       [000] d.h1  5155.111139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.115085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.115105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155072073712
          <idle>-0       [000] d.h1  5155.115145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.119082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.119102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155076070768
          <idle>-0       [000] d.h1  5155.119139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.123086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.123105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155080074432
          <idle>-0       [000] d.h1  5155.123142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.127083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.127102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155084070976
          <idle>-0       [000] d.h1  5155.127139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.131079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.131098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155088066976
          <idle>-0       [000] d.h1  5155.131130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.135060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.135066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155092038832
          <idle>-0       [000] d.h1  5155.135080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.139080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.139099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155096068528
          <idle>-0       [000] d.h1  5155.139136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.143083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.143102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155100070960
          <idle>-0       [000] d.h1  5155.143139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.147083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.147103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155104071712
          <idle>-0       [000] d.h1  5155.147141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.151082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.151101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155108070128
          <idle>-0       [000] d.h1  5155.151138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.155082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.155101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155112070176
          <idle>-0       [000] d.h1  5155.155162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.159080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.159100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155116068816
          <idle>-0       [000] d.h1  5155.159137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.163083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.163102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155120071632
          <idle>-0       [000] d.h1  5155.163139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.167084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.167103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155124072176
          <idle>-0       [000] d.h1  5155.167140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.171082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.171101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155128070256
          <idle>-0       [000] d.h1  5155.171139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.175081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.175100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155132069536
          <idle>-0       [000] d.h1  5155.175138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.179081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.179100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155136069776
          <idle>-0       [000] d.h1  5155.179138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.183083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.183111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155140083856
          <idle>-0       [000] d.h1  5155.183117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.183128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.183133: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.183145: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181082 baseclk=4296181082
          <idle>-0       [000] .Ns1  5155.183160: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.183174: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.183184: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.183215: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.187100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.187127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155144090848
          <idle>-0       [000] d.h1  5155.187149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.187201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.187219: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.187229: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181083 baseclk=4296181083
          <idle>-0       [000] .Ns1  5155.187260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.187300: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.187324: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.187372: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.191098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.191124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155148088464
          <idle>-0       [000] d.h1  5155.191191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.195088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.195095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155152066960
          <idle>-0       [000] d.h1  5155.195110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.199082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.199101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155156070448
          <idle>-0       [000] d.h1  5155.199141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.203090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.203097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155160069072
          <idle>-0       [000] d.h1  5155.203111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.207081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.207100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155164069552
          <idle>-0       [000] d.h1  5155.207139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.211085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.211104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155168072976
          <idle>-0       [000] d.h1  5155.211142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.215089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.215095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155172067312
          <idle>-0       [000] d.h1  5155.215100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.215112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.215127: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.215132: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181090 baseclk=4296181090
          <idle>-0       [000] .Ns1  5155.215149: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.215162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.215170: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5155.215201: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5155.215234: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.219098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.219127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155176089312
          <idle>-0       [000] d.h1  5155.219182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.223085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.223106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155180074480
          <idle>-0       [000] d.h1  5155.223150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.227082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.227111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155184071008
          <idle>-0       [000] d.h1  5155.227153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.231087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.231107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155188075760
          <idle>-0       [000] d.h1  5155.231146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.235059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.235066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155192038208
          <idle>-0       [000] d.h1  5155.235080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.239069: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.239077: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155196048896
          <idle>-0       [000] d.h1  5155.239096: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.243072: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.243080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155200051920
          <idle>-0       [000] d.h1  5155.243097: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.247060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.247068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155204039456
          <idle>-0       [000] d.h1  5155.247086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.251088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.251108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155208076848
          <idle>-0       [000] d.h1  5155.251146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.255082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.255101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155212069968
          <idle>-0       [000] d.h1  5155.255138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.259084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.259091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155216063120
          <idle>-0       [000] d.h1  5155.259104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.263079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.263098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155220067056
          <idle>-0       [000] d.h1  5155.263136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.267090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.267096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155224068704
          <idle>-0       [000] d.h1  5155.267110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.271077: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.271096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155228065360
          <idle>-0       [000] d.h1  5155.271134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.275083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.275102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155232070848
          <idle>-0       [000] d.h1  5155.275139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.279080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.279099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155236068320
          <idle>-0       [000] d.h1  5155.279138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.283087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.283093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155240065168
          <idle>-0       [000] d.h1  5155.283106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.287058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.287064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155244036720
          <idle>-0       [000] d.h1  5155.287078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.291078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.291097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155248065856
          <idle>-0       [000] d.h1  5155.291114: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.291143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.291176: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.291188: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181109 baseclk=4296181109
          <idle>-0       [000] .Ns1  5155.291234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.291276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.291305: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.291370: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.295099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.295127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155252091904
          <idle>-0       [000] d.h1  5155.295177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.299094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.299101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155256073056
          <idle>-0       [000] d.h1  5155.299117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.303081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.303101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155260070208
          <idle>-0       [000] d.h1  5155.303119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.303150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.303182: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.303194: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296181112 baseclk=4296181112
          <idle>-0       [000] dNs1  5155.303233: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296181112 baseclk=4296181112
          <idle>-0       [000] dNs1  5155.303245: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296181112 baseclk=4296181112
          <idle>-0       [000] dNs1  5155.303254: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296181112 baseclk=4296181112
          <idle>-0       [000] dNs1  5155.303263: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296181112 baseclk=4296181112
          <idle>-0       [000] .Ns1  5155.303272: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.303309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5155.303365: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5155.303397: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5155.303414: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5155.303427: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5155.303440: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5155.303483: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5155.303533: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.307110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.307120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155264090608
          <idle>-0       [000] d.h1  5155.307141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.311085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.311107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155268074688
          <idle>-0       [000] d.h1  5155.311127: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.311160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.311192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.311214: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181114 baseclk=4296181114
          <idle>-0       [000] .Ns1  5155.311227: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.311239: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.311248: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.311279: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.315098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.315136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155272089696
          <idle>-0       [000] d.h1  5155.315155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.319085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.319107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155276074624
          <idle>-0       [000] d.h1  5155.319150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.323086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.323106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155280074944
          <idle>-0       [000] d.h1  5155.323146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.327086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.327105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155284074336
          <idle>-0       [000] d.h1  5155.327151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.331080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.331100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155288068704
          <idle>-0       [000] d.h1  5155.331138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.335083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.335102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155292070992
          <idle>-0       [000] d.h1  5155.335119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.335149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.335181: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.335195: timer_expire_entry: timer=00000000af26d0f5 function=writeout_period now=4296181120 baseclk=4296181120
          <idle>-0       [000] ..s1  5155.335231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.339087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.339107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155296075328
          <idle>-0       [000] d.h1  5155.339150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.343085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.343104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155300072928
          <idle>-0       [000] d.h1  5155.343143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.347085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.347104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155304073120
          <idle>-0       [000] d.h1  5155.347144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.351085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.351104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155308073648
          <idle>-0       [000] d.h1  5155.351143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.355083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.355103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155312071856
          <idle>-0       [000] d.h1  5155.355150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.359080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.359099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155316067712
          <idle>-0       [000] d.h1  5155.359138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.363082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.363101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155320069952
          <idle>-0       [000] d.h1  5155.363139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.367082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.367111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155324083552
          <idle>-0       [000] d.h1  5155.367117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.367128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.367144: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.367149: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181128 baseclk=4296181128
          <idle>-0       [000] .Ns1  5155.367163: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.367177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5155.367217: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.371096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.371122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155328085936
          <idle>-0       [000] d.h1  5155.371173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.375083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.375104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155332072608
          <idle>-0       [000] d.h1  5155.375146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.379081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.379101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155336069728
          <idle>-0       [000] d.h1  5155.379140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.383086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.383092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155340064160
          <idle>-0       [000] d.h1  5155.383105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.387080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.387100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155344068624
          <idle>-0       [000] d.h1  5155.387138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.391083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.391102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155348071248
          <idle>-0       [000] d.h1  5155.391140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.395083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.395102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155352071200
          <idle>-0       [000] d.h1  5155.395119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.395148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.395179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.395190: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181135 baseclk=4296181135
          <idle>-0       [000] .Ns1  5155.395229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.395265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.395298: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.395317: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.399097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.399123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155356087792
          <idle>-0       [000] d.h1  5155.399174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.403092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.403099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155360070592
          <idle>-0       [000] d.h1  5155.403115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.407082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.407101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155364070224
          <idle>-0       [000] d.h1  5155.407142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.411084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.411104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155368072752
          <idle>-0       [000] d.h1  5155.411143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.415082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.415102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155372070672
          <idle>-0       [000] d.h1  5155.415141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.419084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.419103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155376071904
          <idle>-0       [000] d.h1  5155.419121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.419151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.419180: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.419191: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181141 baseclk=4296181141
          <idle>-0       [000] .Ns1  5155.419237: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.419273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.419282: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5155.419313: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5155.419346: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.423100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.423128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155380090912
          <idle>-0       [000] d.h1  5155.423180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.427086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.427093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155384065408
          <idle>-0       [000] d.h1  5155.427110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.431082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.431103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155388071200
          <idle>-0       [000] d.h1  5155.431144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.435081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.435100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155392069360
          <idle>-0       [000] d.h1  5155.435140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.439083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.439102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155396070832
          <idle>-0       [000] d.h1  5155.439124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.439136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.439151: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.439158: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181146 baseclk=4296181146
          <idle>-0       [000] .Ns1  5155.439173: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.439186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.439195: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.439226: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.443097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.443123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155400087520
          <idle>-0       [000] d.h1  5155.443175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.447087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.447109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155404076480
          <idle>-0       [000] d.h1  5155.447152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.451089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.451096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155408068144
          <idle>-0       [000] d.h1  5155.451111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.455088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.455108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155412076192
          <idle>-0       [000] d.h1  5155.455147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.459087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.459106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155416074912
          <idle>-0       [000] d.h1  5155.459145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.463078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.463084: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155420056432
          <idle>-0       [000] d.h1  5155.463098: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.467080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.467099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155424067920
          <idle>-0       [000] d.h1  5155.467139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.471086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.471092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155428064544
          <idle>-0       [000] d.h1  5155.471106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.475082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.475090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155432061968
          <idle>-0       [000] d.h1  5155.475109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.479080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.479100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155436068880
          <idle>-0       [000] d.h1  5155.479140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.483082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.483102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155440070720
          <idle>-0       [000] d.h1  5155.483141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.487082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.487102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155444070944
          <idle>-0       [000] d.h1  5155.487140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.491065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.491072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155448043968
          <idle>-0       [000] d.h1  5155.491085: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.495079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.495110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155452067600
          <idle>-0       [000] d.h1  5155.495149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.499080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.499099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155456068352
          <idle>-0       [000] d.h1  5155.499130: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.499141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.499155: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.499162: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181161 baseclk=4296181161
          <idle>-0       [000] .Ns1  5155.499179: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.499195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.499207: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.499231: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.503098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.503125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155460088864
          <idle>-0       [000] d.h1  5155.503193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.507087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.507094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155464065808
          <idle>-0       [000] d.h1  5155.507109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.511080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.511100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155468068608
          <idle>-0       [000] d.h1  5155.511140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.515099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.515105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155472077856
          <idle>-0       [000] d.h1  5155.515120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.519080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.519100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155476068432
          <idle>-0       [000] d.h1  5155.519138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.523083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.523102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155480070768
          <idle>-0       [000] d.h1  5155.523140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.527094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.527101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155484073088
          <idle>-0       [000] d.h1  5155.527115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.531082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.531100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155488069664
          <idle>-0       [000] d.h1  5155.531138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.535090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.535096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155492068608
          <idle>-0       [000] d.h1  5155.535110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.539080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.539099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155496068304
          <idle>-0       [000] d.h1  5155.539136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.543081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.543100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155500069120
          <idle>-0       [000] d.h1  5155.543137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.547083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.547103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155504071680
          <idle>-0       [000] d.h1  5155.547143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.551080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.551099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155508068576
          <idle>-0       [000] d.h1  5155.551137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.555086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.555092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155512065024
          <idle>-0       [000] d.h1  5155.555106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.559084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.559090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155516062176
          <idle>-0       [000] d.h1  5155.559103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.563085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.563091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155520063280
          <idle>-0       [000] d.h1  5155.563104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.567082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.567101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155524070080
          <idle>-0       [000] d.h1  5155.567118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.567147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.567178: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.567192: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181178 baseclk=4296181178
          <idle>-0       [000] .Ns1  5155.567229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.567267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.567293: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.567381: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.571100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.571126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155528090656
          <idle>-0       [000] d.h1  5155.571177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.575090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.575111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155532079344
          <idle>-0       [000] d.h1  5155.575147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.579081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.579101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155536069776
          <idle>-0       [000] d.h1  5155.579141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.583081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.583100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155540069024
          <idle>-0       [000] d.h1  5155.583139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.587106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.587125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155544094320
          <idle>-0       [000] d.h1  5155.587164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.591108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.591128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155548096704
          <idle>-0       [000] d.h1  5155.591166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.595111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.595130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155552099264
          <idle>-0       [000] d.h1  5155.595168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.599107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.599127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155556095904
          <idle>-0       [000] d.h1  5155.599165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.603109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.603129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155560097616
          <idle>-0       [000] d.h1  5155.603146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.603189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.603194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.603210: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181187 baseclk=4296181187
          <idle>-0       [000] .Ns1  5155.603225: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.603238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.603246: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.603265: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.607125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.607150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155564115840
          <idle>-0       [000] d.h1  5155.607202: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.611114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.611135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155568103680
          <idle>-0       [000] d.h1  5155.611178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.615113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.615134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155572102672
          <idle>-0       [000] d.h1  5155.615177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.619113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.619133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155576101792
          <idle>-0       [000] d.h1  5155.619173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.623112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.623131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155580100176
          <idle>-0       [000] d.h1  5155.623149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.623179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.623198: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.623210: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181192 baseclk=4296181192
          <idle>-0       [000] .Ns1  5155.623255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.623301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.623309: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5155.623335: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5155.623366: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.627092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.627101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155584071536
          <idle>-0       [000] d.h1  5155.627123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.631110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.631132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155588100016
          <idle>-0       [000] d.h1  5155.631217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.635110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.635131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155592099312
          <idle>-0       [000] d.h1  5155.635171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.639109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.639129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155596097888
          <idle>-0       [000] d.h1  5155.639168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.643097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.643116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155600085376
          <idle>-0       [000] d.h1  5155.643155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.647106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.647126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155604094912
          <idle>-0       [000] d.h1  5155.647166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.651109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.651128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155608097424
          <idle>-0       [000] d.h1  5155.651168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.655111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.655130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155612099136
          <idle>-0       [000] d.h1  5155.655168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.659113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.659132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155616101088
          <idle>-0       [000] d.h1  5155.659171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.663110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.663129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155620098384
          <idle>-0       [000] d.h1  5155.663167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.667108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.667127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155624096240
          <idle>-0       [000] d.h1  5155.667166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.671111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.671130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155628098880
          <idle>-0       [000] d.h1  5155.671168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.675112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.675132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155632100656
          <idle>-0       [000] d.h1  5155.675171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.679112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.679131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155636100240
          <idle>-0       [000] d.h1  5155.679169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.683112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.683131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155640100064
          <idle>-0       [000] d.h1  5155.683167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.687106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.687125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155644094720
          <idle>-0       [000] d.h1  5155.687163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.691104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.691110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155648082976
          <idle>-0       [000] d.h1  5155.691124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.695084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.695090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155652062688
          <idle>-0       [000] d.h1  5155.695096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.695107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.695111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.695116: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181210 baseclk=4296181210
          <idle>-0       [000] .Ns1  5155.695131: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.695144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.695153: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.695184: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.699110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.699136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155656101168
          <idle>-0       [000] d.h1  5155.699189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.703113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.703134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155660101872
          <idle>-0       [000] d.h1  5155.703177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.707113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.707133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155664101568
          <idle>-0       [000] d.h1  5155.707152: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.707183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.707201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.707215: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181213 baseclk=4296181213
          <idle>-0       [000] .Ns1  5155.707253: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.707289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.707313: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.707366: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.711112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.711120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155668091168
          <idle>-0       [000] d.h1  5155.711140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.715113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.715134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155672102192
          <idle>-0       [000] d.h1  5155.715178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.719112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.719132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155676101168
          <idle>-0       [000] d.h1  5155.719174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.723113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.723132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155680101488
          <idle>-0       [000] d.h1  5155.723176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.727107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.727127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155684096016
          <idle>-0       [000] d.h1  5155.727164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.731118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.731137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155688106080
          <idle>-0       [000] d.h1  5155.731176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.735095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.735115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155692083808
          <idle>-0       [000] d.h1  5155.735152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.739108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.739127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155696096272
          <idle>-0       [000] d.h1  5155.739164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.743108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.743127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155700096288
          <idle>-0       [000] d.h1  5155.743166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.747108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.747127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155704096176
          <idle>-0       [000] d.h1  5155.747171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.751106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.751125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155708094400
          <idle>-0       [000] d.h1  5155.751165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.755108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.755127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155712096320
          <idle>-0       [000] d.h1  5155.755165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.759108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.759127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155716095920
          <idle>-0       [000] d.h1  5155.759165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.763098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.763117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155720086480
          <idle>-0       [000] d.h1  5155.763149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.767104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.767123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155724092432
          <idle>-0       [000] d.h1  5155.767159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.771108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.771127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155728096080
          <idle>-0       [000] d.h1  5155.771164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.775108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.775127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155732096320
          <idle>-0       [000] d.h1  5155.775165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.779098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.779117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155736085824
          <idle>-0       [000] d.h1  5155.779154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.783119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.783138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155740106912
          <idle>-0       [000] d.h1  5155.783175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.787118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.787124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155744096336
          <idle>-0       [000] d.h1  5155.787138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.791102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.791121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155748090224
          <idle>-0       [000] d.h1  5155.791159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.795110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.795116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155752088512
          <idle>-0       [000] d.h1  5155.795130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.799105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.799124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155756093392
          <idle>-0       [000] d.h1  5155.799162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.803096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.803102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155760074880
          <idle>-0       [000] d.h1  5155.803118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.807106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.807125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155764094176
          <idle>-0       [000] d.h1  5155.807163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.811109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.811128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155768097472
          <idle>-0       [000] d.h1  5155.811146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.811175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.811195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.811207: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181239 baseclk=4296181239
          <idle>-0       [000] .Ns1  5155.811243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.811273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.811282: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.811300: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.815117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.815141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155772112160
          <idle>-0       [000] d.h1  5155.815160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.819082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.819102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155776070832
          <idle>-0       [000] d.h1  5155.819150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.823124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.823144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155780112688
          <idle>-0       [000] d.h1  5155.823161: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.823191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.823196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.823200: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181242 baseclk=4296181242
          <idle>-0       [000] .Ns1  5155.823227: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.823238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.823247: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.823276: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.827126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.827151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155784115808
          <idle>-0       [000] d.h1  5155.827172: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.827210: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.827230: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.827257: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181243 baseclk=4296181243
          <idle>-0       [000] .Ns1  5155.827298: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.827337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.827360: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5155.827426: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5155.827453: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.831103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.831132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155788094416
          <idle>-0       [000] d.h1  5155.831187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.835108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.835130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155792097728
          <idle>-0       [000] d.h1  5155.835174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.839072: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.839079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155796051168
          <idle>-0       [000] d.h1  5155.839094: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.843108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.843128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155800096704
          <idle>-0       [000] d.h1  5155.843167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.847107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.847114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155804086160
          <idle>-0       [000] d.h1  5155.847129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.851119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.851138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155808107168
          <idle>-0       [000] d.h1  5155.851177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.855114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.855133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155812101712
          <idle>-0       [000] d.h1  5155.855172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.859111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.859130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155816098656
          <idle>-0       [000] d.h1  5155.859169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.863107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.863113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155820085200
          <idle>-0       [000] d.h1  5155.863127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.867115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.867121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155824094032
          <idle>-0       [000] d.h1  5155.867136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.871095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.871115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155828083840
          <idle>-0       [000] d.h1  5155.871152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.875107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.875126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155832095424
          <idle>-0       [000] d.h1  5155.875164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.879110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.879116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155836088912
          <idle>-0       [000] d.h1  5155.879122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.879134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.879138: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5155.879142: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181256 baseclk=4296181256
          <idle>-0       [000] dNs1  5155.879183: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296181256 baseclk=4296181256
          <idle>-0       [000] .Ns1  5155.879193: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.879206: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5155.879239: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.879245: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5155.879278: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.883147: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.883176: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155840138880
          <idle>-0       [000] d.h1  5155.883252: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.887108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.887130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155844098416
          <idle>-0       [000] d.h1  5155.887175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.891112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.891132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155848101104
          <idle>-0       [000] d.h1  5155.891172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.895107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.895126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155852095184
          <idle>-0       [000] d.h1  5155.895166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.899088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.899094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155856066864
          <idle>-0       [000] d.h1  5155.899109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.903106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.903126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155860094528
          <idle>-0       [000] d.h1  5155.903166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.907095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.907114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155864082720
          <idle>-0       [000] d.h1  5155.907152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.911115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.911135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155868103904
          <idle>-0       [000] d.h1  5155.911173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.915105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.915125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155872094128
          <idle>-0       [000] d.h1  5155.915143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.915172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.915202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.915205: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181265 baseclk=4296181265
          <idle>-0       [000] .Ns1  5155.915234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.915247: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.915256: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5155.915277: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.919113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.919139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155876104080
          <idle>-0       [000] d.h1  5155.919194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.923100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.923121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155880089104
          <idle>-0       [000] d.h1  5155.923163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.927105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.927112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155884084304
          <idle>-0       [000] d.h1  5155.927126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.931103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.931123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155888092144
          <idle>-0       [000] d.h1  5155.931166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.935101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.935108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155892080128
          <idle>-0       [000] d.h1  5155.935122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.939102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.939121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155896090352
          <idle>-0       [000] d.h1  5155.939169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.943110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.943129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155900098320
          <idle>-0       [000] d.h1  5155.943167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.947088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.947095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155904067120
          <idle>-0       [000] d.h1  5155.947110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.951104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.951111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155908082976
          <idle>-0       [000] d.h1  5155.951116: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5155.951128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5155.951133: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5155.951137: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181274 baseclk=4296181274
          <idle>-0       [000] .Ns1  5155.951165: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5155.951177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5155.951186: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5155.951217: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5155.955135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.955161: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155912126080
          <idle>-0       [000] d.h1  5155.955227: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.959113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.959134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155916102592
          <idle>-0       [000] d.h1  5155.959175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.963089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.963109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155920077712
          <idle>-0       [000] d.h1  5155.963147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.967083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.967103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155924072064
          <idle>-0       [000] d.h1  5155.967142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.971085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.971112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155928084416
          <idle>-0       [000] d.h1  5155.971126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.975086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.975092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155932064464
          <idle>-0       [000] d.h1  5155.975106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.979081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.979100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155936069600
          <idle>-0       [000] d.h1  5155.979137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.983084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.983110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155940082320
          <idle>-0       [000] d.h1  5155.983124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.987082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.987101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155944070208
          <idle>-0       [000] d.h1  5155.987139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.991084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.991103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155948072672
          <idle>-0       [000] d.h1  5155.991141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.995086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.995105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155952074160
          <idle>-0       [000] d.h1  5155.995142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5155.999111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5155.999130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155956099472
          <idle>-0       [000] d.h1  5155.999167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.003111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.003131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155960099584
          <idle>-0       [000] d.h1  5156.003171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.007110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.007130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155964098880
          <idle>-0       [000] d.h1  5156.007168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.011110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.011129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155968098208
          <idle>-0       [000] d.h1  5156.011174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.015096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.015115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155972083824
          <idle>-0       [000] d.h1  5156.015155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.019108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.019127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155976095920
          <idle>-0       [000] d.h1  5156.019147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.019176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.019194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.019219: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181291 baseclk=4296181291
          <idle>-0       [000] .Ns1  5156.019260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.019302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.019311: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.019330: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.023116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.023141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155980106336
          <idle>-0       [000] d.h1  5156.023192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.027112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.027133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155984101296
          <idle>-0       [000] d.h1  5156.027176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.031096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.031116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155988084688
          <idle>-0       [000] d.h1  5156.031134: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.031164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.031183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5156.031196: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181294 baseclk=4296181294
          <idle>-0       [000] .Ns1  5156.031251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.031263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.031271: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5156.031293: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5156.031322: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.035118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.035128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155992097904
          <idle>-0       [000] d.h1  5156.035149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.039102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.039123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5155996091808
          <idle>-0       [000] d.h1  5156.039167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.043116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.043137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156000105200
          <idle>-0       [000] d.h1  5156.043176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.047126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.047146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156004114480
          <idle>-0       [000] d.h1  5156.047183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.051080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.051099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156008068352
          <idle>-0       [000] d.h1  5156.051138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.055101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.055120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156012089360
          <idle>-0       [000] d.h1  5156.055160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.059123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.059143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156016111376
          <idle>-0       [000] d.h1  5156.059180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.063108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.063136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156020096112
          <idle>-0       [000] d.h1  5156.063178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.067115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.067134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156024102944
          <idle>-0       [000] d.h1  5156.067174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.071112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.071131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156028100288
          <idle>-0       [000] d.h1  5156.071169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.075107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.075126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156032094864
          <idle>-0       [000] d.h1  5156.075164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.079109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.079128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156036096752
          <idle>-0       [000] d.h1  5156.079145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.079174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.079193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.079207: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181306 baseclk=4296181306
          <idle>-0       [000] .Ns1  5156.079258: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.079271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.079279: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5156.079309: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.083106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.083115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156040085760
          <idle>-0       [000] d.h1  5156.083134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.087100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.087121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156044089168
          <idle>-0       [000] d.h1  5156.087163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.091114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.091134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156048102880
          <idle>-0       [000] d.h1  5156.091173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.095111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.095117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156052089488
          <idle>-0       [000] d.h1  5156.095131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.099094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.099113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156056082512
          <idle>-0       [000] d.h1  5156.099151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.103088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.103095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156060067280
          <idle>-0       [000] d.h1  5156.103101: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.103113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.103118: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.103123: timer_expire_entry: timer=000000000ed5fb1a function=delayed_work_timer_fn now=4296181312 baseclk=4296181312
          <idle>-0       [000] .Ns1  5156.103150: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.103162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.103171: workqueue_execute_start: work struct 0000000094882d62: function ovs_dp_masks_rebalance [openvswitch]
     kworker/0:2-112     [000] d..2  5156.103193: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.107123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.107148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156064113600
          <idle>-0       [000] d.h1  5156.107215: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.111109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.111130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156068098512
          <idle>-0       [000] d.h1  5156.111171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.115103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.115123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156072091856
          <idle>-0       [000] d.h1  5156.115164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.119111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.119131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156076099616
          <idle>-0       [000] d.h1  5156.119171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.123108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.123114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156080086688
          <idle>-0       [000] d.h1  5156.123120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.123132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.123136: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.123140: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181317 baseclk=4296181317
          <idle>-0       [000] .Ns1  5156.123167: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.123179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.123187: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.123205: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.127115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.127140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156084104832
          <idle>-0       [000] d.h1  5156.127191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.131124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.131145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156088113664
          <idle>-0       [000] d.h1  5156.131187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.135098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.135117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156092086560
          <idle>-0       [000] d.h1  5156.135157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.139115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.139121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156096093824
          <idle>-0       [000] d.h1  5156.139136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.143110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.143129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156100098256
          <idle>-0       [000] d.h1  5156.143168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.147113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.147132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156104101200
          <idle>-0       [000] d.h1  5156.147173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.151113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.151132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156108101520
          <idle>-0       [000] d.h1  5156.151171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.155117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.155137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156112105728
          <idle>-0       [000] d.h1  5156.155168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.159107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.159126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156116095200
          <idle>-0       [000] d.h1  5156.159165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.163112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.163131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156120100448
          <idle>-0       [000] d.h1  5156.163171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.167112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.167131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156124100000
          <idle>-0       [000] d.h1  5156.167169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.171113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.171132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156128101040
          <idle>-0       [000] d.h1  5156.171172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.175079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.175098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156132067616
          <idle>-0       [000] d.h1  5156.175136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.179108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.179127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156136096144
          <idle>-0       [000] d.h1  5156.179165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.183110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.183129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156140098352
          <idle>-0       [000] d.h1  5156.183167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.187101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.187124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156144096672
          <idle>-0       [000] d.h1  5156.187138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.191106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.191125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156148094176
          <idle>-0       [000] d.h1  5156.191162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.195099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.195118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156152087296
          <idle>-0       [000] d.h1  5156.195155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.199110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.199129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156156098272
          <idle>-0       [000] d.h1  5156.199167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.203097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.203116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156160085520
          <idle>-0       [000] d.h1  5156.203155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.207134: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.207140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156164112240
          <idle>-0       [000] d.h1  5156.207146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.207157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.207162: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.207166: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181338 baseclk=4296181338
          <idle>-0       [000] .Ns1  5156.207200: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.207212: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.207221: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5156.207250: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.211116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.211141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156168106128
          <idle>-0       [000] d.h1  5156.211194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.215113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.215135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156172103024
          <idle>-0       [000] d.h1  5156.215178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.219124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.219144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156176112560
          <idle>-0       [000] d.h1  5156.219184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.223100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.223119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156180088176
          <idle>-0       [000] d.h1  5156.223160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.227108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.227127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156184096080
          <idle>-0       [000] d.h1  5156.227145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.227174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.227192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.227217: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181343 baseclk=4296181343
          <idle>-0       [000] .Ns1  5156.227248: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.227260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.227268: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.227286: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.231109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.231117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156188088464
          <idle>-0       [000] d.h1  5156.231136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.235109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.235131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156192098880
          <idle>-0       [000] d.h1  5156.235150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.235181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.235214: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5156.235224: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181345 baseclk=4296181345
          <idle>-0       [000] .Ns1  5156.235267: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.235303: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.235326: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5156.235391: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5156.235438: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.239114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.239142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156196104960
          <idle>-0       [000] d.h1  5156.239198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.243120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.243141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156200109360
          <idle>-0       [000] d.h1  5156.243186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.247085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.247106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156204074240
          <idle>-0       [000] d.h1  5156.247150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.251104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.251124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156208092496
          <idle>-0       [000] d.h1  5156.251165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.255101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.255121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156212089776
          <idle>-0       [000] d.h1  5156.255160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.259109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.259129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156216097808
          <idle>-0       [000] d.h1  5156.259168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.263112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.263131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156220100000
          <idle>-0       [000] d.h1  5156.263169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.267101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.267120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156224089264
          <idle>-0       [000] d.h1  5156.267159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.271110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.271130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156228098544
          <idle>-0       [000] d.h1  5156.271168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.275106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.275112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156232084384
          <idle>-0       [000] d.h1  5156.275126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.279107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.279126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156236094800
          <idle>-0       [000] d.h1  5156.279164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.283106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.283112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156240084304
          <idle>-0       [000] d.h1  5156.283126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.287102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.287121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156244089680
          <idle>-0       [000] d.h1  5156.287158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.291119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.291125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156248097648
          <idle>-0       [000] d.h1  5156.291140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.295104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.295110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156252082112
          <idle>-0       [000] d.h1  5156.295124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.299098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.299104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156256076384
          <idle>-0       [000] d.h1  5156.299118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.303114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.303120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156260092416
          <idle>-0       [000] d.h1  5156.303134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.307083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.307089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156264061504
          <idle>-0       [000] d.h1  5156.307103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.311091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.311097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156268069216
          <idle>-0       [000] d.h1  5156.311111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.315103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.315133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156272105072
          <idle>-0       [000] d.h1  5156.315147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.319095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.319114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156276082944
          <idle>-0       [000] d.h1  5156.319152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.323108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.323127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156280096320
          <idle>-0       [000] d.h1  5156.323165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.327120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.327152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156284107728
          <idle>-0       [000] d.h1  5156.327158: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.327169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.327174: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.327178: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296181368 baseclk=4296181368
          <idle>-0       [000] dNs1  5156.327203: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296181368 baseclk=4296181368
          <idle>-0       [000] dNs1  5156.327208: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296181368 baseclk=4296181368
          <idle>-0       [000] dNs1  5156.327212: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296181368 baseclk=4296181368
          <idle>-0       [000] dNs1  5156.327215: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296181368 baseclk=4296181368
          <idle>-0       [000] .Ns1  5156.327218: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.327233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5156.327253: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5156.327264: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5156.327269: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5156.327274: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5156.327278: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5156.327294: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5156.327312: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.331107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.331116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156288086992
          <idle>-0       [000] d.h1  5156.331124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.331140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.331149: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.331165: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181369 baseclk=4296181369
          <idle>-0       [000] .Ns1  5156.331179: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.331192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.331200: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.331216: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.335116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.335142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156292106816
          <idle>-0       [000] d.h1  5156.335164: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.335202: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.335223: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.335237: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181370 baseclk=4296181370
          <idle>-0       [000] .Ns1  5156.335273: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.335310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.335331: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5156.335415: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.339113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.339139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156296103600
          <idle>-0       [000] d.h1  5156.339191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.343128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.343149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156300117376
          <idle>-0       [000] d.h1  5156.343193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.347102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.347108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156304080480
          <idle>-0       [000] d.h1  5156.347123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.351097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.351117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156308085984
          <idle>-0       [000] d.h1  5156.351158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.355105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.355125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156312093968
          <idle>-0       [000] d.h1  5156.355164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.359109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.359128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156316096944
          <idle>-0       [000] d.h1  5156.359146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.359175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.359195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.359224: timer_expire_entry: timer=0000000032f5e2dd function=delayed_work_timer_fn now=4296181376 baseclk=4296181376
          <idle>-0       [000] .Ns1  5156.359264: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.359298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5156.359324: workqueue_execute_start: work struct 00000000b561f7ea: function wb_workfn
   kworker/u12:0-430     [000] d..2  5156.359552: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.363133: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.363160: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156320124224
          <idle>-0       [000] d.h1  5156.363218: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.367115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.367136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156324104112
          <idle>-0       [000] d.h1  5156.367181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.371108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.371128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156328096912
          <idle>-0       [000] d.h1  5156.371170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.375104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.375123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156332092544
          <idle>-0       [000] d.h1  5156.375171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.379119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.379138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156336107488
          <idle>-0       [000] d.h1  5156.379178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.383108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.383127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156340096368
          <idle>-0       [000] d.h1  5156.383166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.387108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.387115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156344087072
          <idle>-0       [000] d.h1  5156.387129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.391108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.391128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156348096640
          <idle>-0       [000] d.h1  5156.391145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.391175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.391193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5156.391204: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181384 baseclk=4296181384
          <idle>-0       [000] .Ns1  5156.391237: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.391274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5156.391360: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.395102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.395111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156352081840
          <idle>-0       [000] d.h1  5156.395131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.399100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.399121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156356089392
          <idle>-0       [000] d.h1  5156.399164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.403111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.403132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156360100368
          <idle>-0       [000] d.h1  5156.403174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.407108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.407128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156364096736
          <idle>-0       [000] d.h1  5156.407168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.411108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.411127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156368096528
          <idle>-0       [000] d.h1  5156.411167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.415107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.415127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156372095984
          <idle>-0       [000] d.h1  5156.415167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.419106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.419126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156376094944
          <idle>-0       [000] d.h1  5156.419165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.423107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.423127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156380095888
          <idle>-0       [000] d.h1  5156.423166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.427106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.427126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156384094720
          <idle>-0       [000] d.h1  5156.427165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.431107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.431126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156388095152
          <idle>-0       [000] d.h1  5156.431170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.435095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.435113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156392082784
          <idle>-0       [000] d.h1  5156.435131: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.435160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.435179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.435203: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181395 baseclk=4296181395
          <idle>-0       [000] .Ns1  5156.435244: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.435281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.435307: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.435362: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.439116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.439141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156396105712
          <idle>-0       [000] d.h1  5156.439162: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.439213: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.439232: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5156.439241: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181396 baseclk=4296181396
          <idle>-0       [000] .Ns1  5156.439280: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.439316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.439337: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5156.439422: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5156.439451: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.443129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.443164: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156400134000
          <idle>-0       [000] d.h1  5156.443185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.447124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.447145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156404113296
          <idle>-0       [000] d.h1  5156.447189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.451112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.451134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156408102016
          <idle>-0       [000] d.h1  5156.451177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.455101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.455120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156412089360
          <idle>-0       [000] d.h1  5156.455161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.459123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.459129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156416101360
          <idle>-0       [000] d.h1  5156.459143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.463080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.463099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156420067920
          <idle>-0       [000] d.h1  5156.463116: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.463145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.463176: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.463190: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181402 baseclk=4296181402
          <idle>-0       [000] .Ns1  5156.463224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.463237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.463246: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5156.463278: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.467100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.467125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156424090400
          <idle>-0       [000] d.h1  5156.467192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.471085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.471115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156428087472
          <idle>-0       [000] d.h1  5156.471130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.475080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.475101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156432069376
          <idle>-0       [000] d.h1  5156.475140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.479080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.479099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156436068208
          <idle>-0       [000] d.h1  5156.479138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.483082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.483102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156440070800
          <idle>-0       [000] d.h1  5156.483140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.487082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.487102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156444071024
          <idle>-0       [000] d.h1  5156.487139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.491082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.491102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156448071040
          <idle>-0       [000] d.h1  5156.491140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.495080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.495099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156452068464
          <idle>-0       [000] d.h1  5156.495136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.499081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.499100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156456069440
          <idle>-0       [000] d.h1  5156.499137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.503088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.503094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156460066272
          <idle>-0       [000] d.h1  5156.503108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.507080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.507099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156464067936
          <idle>-0       [000] d.h1  5156.507137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.511062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.511068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156468040352
          <idle>-0       [000] d.h1  5156.511081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.515079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.515098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156472067312
          <idle>-0       [000] d.h1  5156.515135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.519080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.519098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156476067856
          <idle>-0       [000] d.h1  5156.519135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.523084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.523103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156480072400
          <idle>-0       [000] d.h1  5156.523140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.527084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.527103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156484072272
          <idle>-0       [000] d.h1  5156.527139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.531087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.531093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156488065472
          <idle>-0       [000] d.h1  5156.531107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.535085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.535091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156492063456
          <idle>-0       [000] d.h1  5156.535105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.539081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.539100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156496068880
          <idle>-0       [000] d.h1  5156.539117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.539145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.539189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.539200: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181421 baseclk=4296181421
          <idle>-0       [000] .Ns1  5156.539236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.539273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.539298: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.539352: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.543115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.543141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156500106080
          <idle>-0       [000] d.h1  5156.543190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.547091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.547111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156504079616
          <idle>-0       [000] d.h1  5156.547154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.551084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.551091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156508063104
          <idle>-0       [000] d.h1  5156.551106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.555080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.555099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156512068224
          <idle>-0       [000] d.h1  5156.555140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.559083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.559102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156516071152
          <idle>-0       [000] d.h1  5156.559141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.563080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.563099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156520068544
          <idle>-0       [000] d.h1  5156.563137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.567087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.567106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156524074720
          <idle>-0       [000] d.h1  5156.567143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.571083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.571102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156528071456
          <idle>-0       [000] d.h1  5156.571140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.575085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.575104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156532073312
          <idle>-0       [000] d.h1  5156.575142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.579082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.579102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156536070832
          <idle>-0       [000] d.h1  5156.579139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.583088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.583094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156540066304
          <idle>-0       [000] d.h1  5156.583108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.587081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.587100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156544068832
          <idle>-0       [000] d.h1  5156.587138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.591083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.591102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156548071056
          <idle>-0       [000] d.h1  5156.591119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.591148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.591188: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.591193: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181434 baseclk=4296181434
          <idle>-0       [000] .Ns1  5156.591205: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.591217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.591226: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5156.591255: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.595098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.595124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156552089056
          <idle>-0       [000] d.h1  5156.595191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.599085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.599113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156556074240
          <idle>-0       [000] d.h1  5156.599157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.603085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.603105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156560073856
          <idle>-0       [000] d.h1  5156.603147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.607085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.607105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156564073680
          <idle>-0       [000] d.h1  5156.607145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.611084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.611104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156568072624
          <idle>-0       [000] d.h1  5156.611142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.615090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.615096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156572068224
          <idle>-0       [000] d.h1  5156.615110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.619125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.619145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156576113744
          <idle>-0       [000] d.h1  5156.619185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.623136: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.623158: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156580130672
          <idle>-0       [000] d.h1  5156.623173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.627107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.627126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156584095408
          <idle>-0       [000] d.h1  5156.627165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.631106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.631125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156588094048
          <idle>-0       [000] d.h1  5156.631164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.635105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.635124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156592093312
          <idle>-0       [000] d.h1  5156.635163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.639114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.639134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156596102800
          <idle>-0       [000] d.h1  5156.639171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.643114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.643141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156600113088
          <idle>-0       [000] d.h1  5156.643146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.643158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.643162: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.643166: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181447 baseclk=4296181447
          <idle>-0       [000] .Ns1  5156.643196: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181447 baseclk=4296181447
          <idle>-0       [000] .Ns1  5156.643204: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.643217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.643226: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] ....  5156.643232: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5156.643253: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5156.643283: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.647128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.647157: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156604119216
          <idle>-0       [000] d.h1  5156.647227: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.651112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.651135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156608102224
          <idle>-0       [000] d.h1  5156.651181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.655109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.655115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156612087664
          <idle>-0       [000] d.h1  5156.655131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.659107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.659114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156616086320
          <idle>-0       [000] d.h1  5156.659129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.663106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.663125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156620094128
          <idle>-0       [000] d.h1  5156.663165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.667110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.667129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156624098192
          <idle>-0       [000] d.h1  5156.667168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.671111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.671130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156628099280
          <idle>-0       [000] d.h1  5156.671169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.675087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.675094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156632066112
          <idle>-0       [000] d.h1  5156.675107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.679081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.679100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156636069504
          <idle>-0       [000] d.h1  5156.679138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.683105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.683124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156640093408
          <idle>-0       [000] d.h1  5156.683163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.687112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.687131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156644100096
          <idle>-0       [000] d.h1  5156.687169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.691112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.691131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156648099760
          <idle>-0       [000] d.h1  5156.691168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.695110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.695130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156652098816
          <idle>-0       [000] d.h1  5156.695168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.699108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.699127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156656096224
          <idle>-0       [000] d.h1  5156.699165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.703105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.703111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156660083840
          <idle>-0       [000] d.h1  5156.703127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.707103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.707122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156664091520
          <idle>-0       [000] d.h1  5156.707160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.711113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.711132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156668100816
          <idle>-0       [000] d.h1  5156.711185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.715091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.715097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156672069696
          <idle>-0       [000] d.h1  5156.715113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.719106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.719125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156676094496
          <idle>-0       [000] d.h1  5156.719143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.719173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.719192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.719204: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181466 baseclk=4296181466
          <idle>-0       [000] .Ns1  5156.719243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.719280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.719305: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5156.719392: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.723118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.723144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156680109200
          <idle>-0       [000] d.h1  5156.723196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.727115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.727137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156684104720
          <idle>-0       [000] d.h1  5156.727181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.731109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.731129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156688098048
          <idle>-0       [000] d.h1  5156.731170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.735110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.735130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156692099200
          <idle>-0       [000] d.h1  5156.735170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.739111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.739131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156696099680
          <idle>-0       [000] d.h1  5156.739170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.743109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.743128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156700097168
          <idle>-0       [000] d.h1  5156.743168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.747108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.747128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156704097056
          <idle>-0       [000] d.h1  5156.747145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.747176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.747194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.747218: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181473 baseclk=4296181473
          <idle>-0       [000] .Ns1  5156.747262: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.747277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.747285: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.747303: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.751115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.751124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156708094816
          <idle>-0       [000] d.h1  5156.751144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.755125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.755146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156712113728
          <idle>-0       [000] d.h1  5156.755188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.759116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.759136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156716104608
          <idle>-0       [000] d.h1  5156.759176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.763110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.763130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156720098832
          <idle>-0       [000] d.h1  5156.763172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.767104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.767137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156724092464
          <idle>-0       [000] d.h1  5156.767152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.771102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.771121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156728090304
          <idle>-0       [000] d.h1  5156.771160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.775107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.775132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156732104240
          <idle>-0       [000] d.h1  5156.775145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.779104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.779124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156736092672
          <idle>-0       [000] d.h1  5156.779162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.783110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.783135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156740107136
          <idle>-0       [000] d.h1  5156.783150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.787100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.787106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156744079056
          <idle>-0       [000] d.h1  5156.787121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.791103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.791122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156748091136
          <idle>-0       [000] d.h1  5156.791160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.795119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.795138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156752107824
          <idle>-0       [000] d.h1  5156.795177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.799110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.799129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156756098496
          <idle>-0       [000] d.h1  5156.799168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.803107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.803126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156760095840
          <idle>-0       [000] d.h1  5156.803167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.807115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.807121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156764094032
          <idle>-0       [000] d.h1  5156.807136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.811107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.811125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156768094880
          <idle>-0       [000] d.h1  5156.811164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.815111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.815142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156772098704
          <idle>-0       [000] d.h1  5156.815156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.819116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.819135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156776104416
          <idle>-0       [000] d.h1  5156.819174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.823114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.823133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156780101872
          <idle>-0       [000] d.h1  5156.823171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.827113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.827132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156784100960
          <idle>-0       [000] d.h1  5156.827171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.831108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.831127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156788096112
          <idle>-0       [000] d.h1  5156.831166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.835104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.835123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156792092432
          <idle>-0       [000] d.h1  5156.835162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.839081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.839100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156796069536
          <idle>-0       [000] d.h1  5156.839138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.843113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.843132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156800101440
          <idle>-0       [000] d.h1  5156.843171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.847109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.847127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156804096736
          <idle>-0       [000] d.h1  5156.847144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.847174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.847193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5156.847215: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181498 baseclk=4296181498
          <idle>-0       [000] dNs1  5156.847232: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181498 baseclk=4296181498
          <idle>-0       [000] .Ns1  5156.847236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.847249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.847257: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5156.847279: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] ....  5156.847296: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5156.847324: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.851125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.851154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156808116224
          <idle>-0       [000] d.h1  5156.851178: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.851220: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.851242: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.851267: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181499 baseclk=4296181499
          <idle>-0       [000] .Ns1  5156.851308: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.851348: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.851372: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.851422: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.855126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.855152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156812116640
          <idle>-0       [000] d.h1  5156.855206: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.859113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.859134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156816102016
          <idle>-0       [000] d.h1  5156.859178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.863110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.863130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156820098656
          <idle>-0       [000] d.h1  5156.863171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.867104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.867123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156824091968
          <idle>-0       [000] d.h1  5156.867163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.871112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.871131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156828100256
          <idle>-0       [000] d.h1  5156.871149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.871180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.871199: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.871225: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296181504 baseclk=4296181504
          <idle>-0       [000] .Ns1  5156.871238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.871249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.871257: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5156.871286: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.875113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.875139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156832103920
          <idle>-0       [000] d.h1  5156.875192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.879115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.879136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156836104288
          <idle>-0       [000] d.h1  5156.879180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.883106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.883127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156840095392
          <idle>-0       [000] d.h1  5156.883167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.887112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.887140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156844100208
          <idle>-0       [000] d.h1  5156.887182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.891111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.891130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156848099520
          <idle>-0       [000] d.h1  5156.891171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.895118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.895138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156852106928
          <idle>-0       [000] d.h1  5156.895177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.899105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.899125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156856093936
          <idle>-0       [000] d.h1  5156.899165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.903108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.903127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156860096544
          <idle>-0       [000] d.h1  5156.903145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.903177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.903196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5156.903209: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181512 baseclk=4296181512
          <idle>-0       [000] .Ns1  5156.903244: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.903281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5156.903367: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.907097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.907123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156864087584
          <idle>-0       [000] d.h1  5156.907187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.911112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.911132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156868100768
          <idle>-0       [000] d.h1  5156.911174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.915121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.915141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156872109632
          <idle>-0       [000] d.h1  5156.915180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.919097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.919103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156876075872
          <idle>-0       [000] d.h1  5156.919118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.923108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.923127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156880096448
          <idle>-0       [000] d.h1  5156.923166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.927106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.927126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156884094816
          <idle>-0       [000] d.h1  5156.927164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.931107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.931113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156888085616
          <idle>-0       [000] d.h1  5156.931127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.935101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.935108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156892080208
          <idle>-0       [000] d.h1  5156.935121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.939105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.939123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156896092752
          <idle>-0       [000] d.h1  5156.939161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.943114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.943133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156900102384
          <idle>-0       [000] d.h1  5156.943165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.947104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.947123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156904092192
          <idle>-0       [000] d.h1  5156.947164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.951106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.951131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156908103120
          <idle>-0       [000] d.h1  5156.951145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.955112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.955131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156912100208
          <idle>-0       [000] d.h1  5156.955148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.955185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.955216: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.955227: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181525 baseclk=4296181525
          <idle>-0       [000] .Ns1  5156.955263: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.955299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.955324: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5156.955377: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.956561: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.956569: hrtimer_expire_entry: hrtimer=0000000056a168fb function=it_real_fn now=5156913540480
          <idle>-0       [000] dNh1  5156.956716: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5156.956733: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rdisc next_pid=252 next_prio=120
           rdisc-252     [000] d..2  5156.956951: sched_switch: prev_comm=rdisc prev_pid=252 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.959134: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.959163: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156916127712
          <idle>-0       [000] d.h1  5156.959245: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.963088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.963110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156920078352
          <idle>-0       [000] d.h1  5156.963177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.967083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.967103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156924071872
          <idle>-0       [000] d.h1  5156.967144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.971085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.971105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156928074320
          <idle>-0       [000] d.h1  5156.971144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.975084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.975103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156932072176
          <idle>-0       [000] d.h1  5156.975121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5156.975151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5156.975189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5156.975195: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181530 baseclk=4296181530
          <idle>-0       [000] .Ns1  5156.975211: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5156.975225: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5156.975235: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5156.975268: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5156.979100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.979126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156936090736
          <idle>-0       [000] d.h1  5156.979192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.983084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.983105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156940073504
          <idle>-0       [000] d.h1  5156.983148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.987081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.987101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156944070048
          <idle>-0       [000] d.h1  5156.987141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.991089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.991095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156948067520
          <idle>-0       [000] d.h1  5156.991109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.995082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.995101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156952070208
          <idle>-0       [000] d.h1  5156.995140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5156.999108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5156.999127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156956096288
          <idle>-0       [000] d.h1  5156.999166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.003120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.003126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156960098944
          <idle>-0       [000] d.h1  5157.003142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.007105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.007124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156964093488
          <idle>-0       [000] d.h1  5157.007162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.011108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.011127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156968096640
          <idle>-0       [000] d.h1  5157.011166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.015111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.015130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156972099184
          <idle>-0       [000] d.h1  5157.015178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.019107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.019126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156976094800
          <idle>-0       [000] d.h1  5157.019168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.023121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.023127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156980099520
          <idle>-0       [000] d.h1  5157.023142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.027103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.027123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156984091472
          <idle>-0       [000] d.h1  5157.027192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.031108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.031127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156988096288
          <idle>-0       [000] d.h1  5157.031166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.035104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.035123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156992092608
          <idle>-0       [000] d.h1  5157.035162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.039101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.039120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5156996089824
          <idle>-0       [000] d.h1  5157.039158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.043108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.043127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157000096752
          <idle>-0       [000] d.h1  5157.043167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.047107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.047126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157004095408
          <idle>-0       [000] d.h1  5157.047165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.051109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.051129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157008097904
          <idle>-0       [000] d.h1  5157.051147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.051188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.051193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5157.051196: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181549 baseclk=4296181549
          <idle>-0       [000] .Ns1  5157.051225: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.051238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.051247: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5157.051274: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5157.051306: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.055126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.055155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157012117616
          <idle>-0       [000] d.h1  5157.055210: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.059109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.059130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157016098512
          <idle>-0       [000] d.h1  5157.059149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.059182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.059202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.059227: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181551 baseclk=4296181551
          <idle>-0       [000] .Ns1  5157.059241: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.059254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.059262: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.059281: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.063130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.063155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157020120096
          <idle>-0       [000] d.h1  5157.063222: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.067108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.067129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157024097200
          <idle>-0       [000] d.h1  5157.067172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.071119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.071140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157028108416
          <idle>-0       [000] d.h1  5157.071180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.075109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.075129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157032097904
          <idle>-0       [000] d.h1  5157.075168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.079111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.079131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157036099840
          <idle>-0       [000] d.h1  5157.079169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.083110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.083117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157040089072
          <idle>-0       [000] d.h1  5157.083131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.087103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.087123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157044091728
          <idle>-0       [000] d.h1  5157.087161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.091107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.091127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157048096096
          <idle>-0       [000] d.h1  5157.091165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.095121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.095140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157052109584
          <idle>-0       [000] d.h1  5157.095178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.099107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.099126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157056095248
          <idle>-0       [000] d.h1  5157.099163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.103106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.103125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157060094416
          <idle>-0       [000] d.h1  5157.103143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.103173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.103192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.103205: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181562 baseclk=4296181562
          <idle>-0       [000] .Ns1  5157.103241: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.103277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.103301: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.103388: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.107115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.107141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157064105392
          <idle>-0       [000] d.h1  5157.107192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.111115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.111136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157068104416
          <idle>-0       [000] d.h1  5157.111179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.115114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.115135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157072103248
          <idle>-0       [000] d.h1  5157.115177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.119106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.119113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157076085008
          <idle>-0       [000] d.h1  5157.119128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.123096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.123102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157080074384
          <idle>-0       [000] d.h1  5157.123117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.127105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.127124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157084093072
          <idle>-0       [000] d.h1  5157.127161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.131107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.131127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157088095840
          <idle>-0       [000] d.h1  5157.131166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.135107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.135126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157092095600
          <idle>-0       [000] d.h1  5157.135169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.139119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.139137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157096107024
          <idle>-0       [000] d.h1  5157.139173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.143109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.143135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157100107472
          <idle>-0       [000] d.h1  5157.143149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.147119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.147138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157104107536
          <idle>-0       [000] d.h1  5157.147177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.151107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.151126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157108095248
          <idle>-0       [000] d.h1  5157.151166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.155114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.155120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157112092336
          <idle>-0       [000] d.h1  5157.155134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.159106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.159125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157116094528
          <idle>-0       [000] d.h1  5157.159162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.163083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.163102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157120071424
          <idle>-0       [000] d.h1  5157.163119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.163149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.163193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.163196: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181577 baseclk=4296181577
          <idle>-0       [000] .Ns1  5157.163209: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.163222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.163230: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.163249: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.167107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.167133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157124098368
          <idle>-0       [000] d.h1  5157.167183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.171084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.171104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157128073200
          <idle>-0       [000] d.h1  5157.171146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.175085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.175105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157132074176
          <idle>-0       [000] d.h1  5157.175144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.179084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.179103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157136072080
          <idle>-0       [000] d.h1  5157.179142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.183086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.183092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157140064608
          <idle>-0       [000] d.h1  5157.183106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.187080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.187099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157144068896
          <idle>-0       [000] d.h1  5157.187138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.191107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.191126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157148095264
          <idle>-0       [000] d.h1  5157.191161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.195113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.195119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157152091616
          <idle>-0       [000] d.h1  5157.195133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.199103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.199122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157156091168
          <idle>-0       [000] d.h1  5157.199161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.203106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.203125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157160094336
          <idle>-0       [000] d.h1  5157.203164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.207126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.207145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157164114768
          <idle>-0       [000] d.h1  5157.207175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.211106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.211125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157168094736
          <idle>-0       [000] d.h1  5157.211162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.215120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.215139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157172107904
          <idle>-0       [000] d.h1  5157.215176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.219094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.219113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157176082016
          <idle>-0       [000] d.h1  5157.219150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.223124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.223143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157180111984
          <idle>-0       [000] d.h1  5157.223184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.227103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.227122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157184091632
          <idle>-0       [000] d.h1  5157.227161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.231108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.231127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157188096208
          <idle>-0       [000] d.h1  5157.231144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.231174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.231193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.231207: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181594 baseclk=4296181594
          <idle>-0       [000] .Ns1  5157.231243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.231273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.231281: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.231310: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.235134: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.235159: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157192124352
          <idle>-0       [000] d.h1  5157.235211: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.239107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.239129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157196097072
          <idle>-0       [000] d.h1  5157.239172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.243111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.243131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157200100208
          <idle>-0       [000] d.h1  5157.243172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.247107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.247127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157204095568
          <idle>-0       [000] d.h1  5157.247167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.251108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.251128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157208097024
          <idle>-0       [000] d.h1  5157.251169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.255108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.255128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157212097312
          <idle>-0       [000] d.h1  5157.255146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.255176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.255181: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5157.255186: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181600 baseclk=4296181600
          <idle>-0       [000] .Ns1  5157.255202: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.255214: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.255223: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5157.255245: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5157.255273: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.259122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.259150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157216112464
          <idle>-0       [000] d.h1  5157.259205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.263113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.263134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157220102016
          <idle>-0       [000] d.h1  5157.263177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.267110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.267130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157224098656
          <idle>-0       [000] d.h1  5157.267151: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.267163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.267168: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.267172: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181603 baseclk=4296181603
          <idle>-0       [000] .Ns1  5157.267201: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.267213: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.267221: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.267239: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.271116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.271141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157228106272
          <idle>-0       [000] d.h1  5157.271193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.275112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.275133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157232101312
          <idle>-0       [000] d.h1  5157.275177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.279114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.279133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157236102400
          <idle>-0       [000] d.h1  5157.279174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.283121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.283141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157240109616
          <idle>-0       [000] d.h1  5157.283180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.287112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.287131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157244100048
          <idle>-0       [000] d.h1  5157.287170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.291108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.291127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157248096320
          <idle>-0       [000] d.h1  5157.291165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.295110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.295129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157252098128
          <idle>-0       [000] d.h1  5157.295167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.299109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.299128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157256097184
          <idle>-0       [000] d.h1  5157.299167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.303108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.303127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157260096208
          <idle>-0       [000] d.h1  5157.303166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.307110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.307129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157264098096
          <idle>-0       [000] d.h1  5157.307169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.311112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.311131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157268100576
          <idle>-0       [000] d.h1  5157.311169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.315113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.315133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157272101776
          <idle>-0       [000] d.h1  5157.315171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.319108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.319127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157276096112
          <idle>-0       [000] d.h1  5157.319165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.323101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.323120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157280089248
          <idle>-0       [000] d.h1  5157.323158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.327088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.327094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157284066944
          <idle>-0       [000] d.h1  5157.327108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.331103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.331122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157288091216
          <idle>-0       [000] d.h1  5157.331160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.335110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.335129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157292097888
          <idle>-0       [000] d.h1  5157.335166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.339107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.339126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157296094944
          <idle>-0       [000] d.h1  5157.339164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.343115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.343133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157300102496
          <idle>-0       [000] d.h1  5157.343171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.347109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.347127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157304096560
          <idle>-0       [000] d.h1  5157.347166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.351106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.351112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157308084512
          <idle>-0       [000] d.h1  5157.351118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.351129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.351134: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.351138: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296181624 baseclk=4296181624
          <idle>-0       [000] dNs1  5157.351176: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296181624 baseclk=4296181624
          <idle>-0       [000] dNs1  5157.351180: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296181624 baseclk=4296181624
          <idle>-0       [000] dNs1  5157.351183: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296181624 baseclk=4296181624
          <idle>-0       [000] dNs1  5157.351186: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296181624 baseclk=4296181624
          <idle>-0       [000] .Ns1  5157.351190: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.351203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5157.351221: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5157.351232: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5157.351239: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5157.351243: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5157.351247: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5157.351262: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5157.351278: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.355126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.355153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157312117008
          <idle>-0       [000] d.h1  5157.355209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.359113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.359134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157316102704
          <idle>-0       [000] d.h1  5157.359154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.359187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.359207: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.359219: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181626 baseclk=4296181626
          <idle>-0       [000] .Ns1  5157.359255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.359292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.359315: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.359388: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.363120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.363146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157320110768
          <idle>-0       [000] d.h1  5157.363182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.367112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.367133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157324101344
          <idle>-0       [000] d.h1  5157.367177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.371113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.371133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157328102144
          <idle>-0       [000] d.h1  5157.371152: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.371183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.371202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.371215: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181629 baseclk=4296181629
          <idle>-0       [000] .Ns1  5157.371253: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.371297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.371305: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.371322: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.375096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.375104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157332075424
          <idle>-0       [000] d.h1  5157.375124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.379090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.379096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157336068624
          <idle>-0       [000] d.h1  5157.379113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.383087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.383093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157340065312
          <idle>-0       [000] d.h1  5157.383108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.387086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.387093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157344065024
          <idle>-0       [000] d.h1  5157.387107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.391083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.391090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157348062032
          <idle>-0       [000] d.h1  5157.391104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.395090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.395096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157352068560
          <idle>-0       [000] d.h1  5157.395110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.399083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.399090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157356062160
          <idle>-0       [000] d.h1  5157.399104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.403084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.403090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157360062800
          <idle>-0       [000] d.h1  5157.403104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.407085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.407091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157364063472
          <idle>-0       [000] d.h1  5157.407106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.411087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.411093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157368066064
          <idle>-0       [000] d.h1  5157.411108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.415084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.415090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157372062320
          <idle>-0       [000] d.h1  5157.415095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.415106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.415122: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5157.415129: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181640 baseclk=4296181640
          <idle>-0       [000] .Ns1  5157.415141: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.415153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5157.415185: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.419087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.419096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157376066992
          <idle>-0       [000] d.h1  5157.419116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.423084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.423091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157380063104
          <idle>-0       [000] d.h1  5157.423114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.427084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.427091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157384063008
          <idle>-0       [000] d.h1  5157.427106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.431083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.431089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157388061744
          <idle>-0       [000] d.h1  5157.431104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.435092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.435098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157392070368
          <idle>-0       [000] d.h1  5157.435112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.439086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.439093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157396065344
          <idle>-0       [000] d.h1  5157.439108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.443092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.443099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157400071072
          <idle>-0       [000] d.h1  5157.443113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.447084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.447091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157404063104
          <idle>-0       [000] d.h1  5157.447105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.451085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.451092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157408064000
          <idle>-0       [000] d.h1  5157.451106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.455083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.455089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157412061888
          <idle>-0       [000] d.h1  5157.455104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.459087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.459093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157416065792
          <idle>-0       [000] d.h1  5157.459099: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.459110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.459115: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5157.459118: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181651 baseclk=4296181651
          <idle>-0       [000] .Ns1  5157.459148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.459161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.459170: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5157.459193: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5157.459223: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.463094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.463103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157420073184
          <idle>-0       [000] d.h1  5157.463124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.467086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.467093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157424064864
          <idle>-0       [000] d.h1  5157.467109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.471101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.471107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157428079488
          <idle>-0       [000] d.h1  5157.471122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.475083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.475089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157432061552
          <idle>-0       [000] d.h1  5157.475095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.475107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.475111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.475115: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181655 baseclk=4296181655
          <idle>-0       [000] .Ns1  5157.475141: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.475154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.475162: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.475181: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.479093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.479101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157436072560
          <idle>-0       [000] d.h1  5157.479120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.483087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.483094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157440066560
          <idle>-0       [000] d.h1  5157.483110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.487084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.487091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157444062992
          <idle>-0       [000] d.h1  5157.487097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.487108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.487123: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.487129: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181658 baseclk=4296181658
          <idle>-0       [000] .Ns1  5157.487142: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.487154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.487162: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.487191: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.491088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.491097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157448067760
          <idle>-0       [000] d.h1  5157.491117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.495094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.495100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157452072800
          <idle>-0       [000] d.h1  5157.495116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.499085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.499091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157456063392
          <idle>-0       [000] d.h1  5157.499105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.503083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.503090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157460062192
          <idle>-0       [000] d.h1  5157.503104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.507086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.507092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157464064528
          <idle>-0       [000] d.h1  5157.507107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.511087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.511094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157468066352
          <idle>-0       [000] d.h1  5157.511108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.515059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.515065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157472037408
          <idle>-0       [000] d.h1  5157.515079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.519080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.519099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157476068432
          <idle>-0       [000] d.h1  5157.519137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.523100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.523119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157480087904
          <idle>-0       [000] d.h1  5157.523157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.527078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.527097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157484066400
          <idle>-0       [000] d.h1  5157.527134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.531062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.531068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157488040624
          <idle>-0       [000] d.h1  5157.531082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.535080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.535099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157492068192
          <idle>-0       [000] d.h1  5157.535131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.539083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.539089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157496061232
          <idle>-0       [000] d.h1  5157.539102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.543089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.543095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157500067504
          <idle>-0       [000] d.h1  5157.543109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.547087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.547093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157504065792
          <idle>-0       [000] d.h1  5157.547108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.551083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.551089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157508061712
          <idle>-0       [000] d.h1  5157.551104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.555092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.555098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157512070272
          <idle>-0       [000] d.h1  5157.555111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.559099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.559105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157516077344
          <idle>-0       [000] d.h1  5157.559118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.563089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.563095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157520067328
          <idle>-0       [000] d.h1  5157.563111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.567086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.567092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157524064992
          <idle>-0       [000] d.h1  5157.567107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.571102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.571108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157528080480
          <idle>-0       [000] d.h1  5157.571122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.575106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.575125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157532093920
          <idle>-0       [000] d.h1  5157.575162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.579110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.579116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157536088992
          <idle>-0       [000] d.h1  5157.579122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.579133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.579148: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.579154: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181681 baseclk=4296181681
          <idle>-0       [000] .Ns1  5157.579173: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.579191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.579202: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.579225: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.583105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.583114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157540084704
          <idle>-0       [000] d.h1  5157.583133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.587106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.587126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157544094704
          <idle>-0       [000] d.h1  5157.587169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.591103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.591110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157548082064
          <idle>-0       [000] d.h1  5157.591124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.595107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.595126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157552095360
          <idle>-0       [000] d.h1  5157.595163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.599105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.599125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157556093408
          <idle>-0       [000] d.h1  5157.599163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.603107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.603126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157560095200
          <idle>-0       [000] d.h1  5157.603174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.607114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.607134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157564102928
          <idle>-0       [000] d.h1  5157.607173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.611106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.611125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157568094096
          <idle>-0       [000] d.h1  5157.611163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.615111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.615130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157572098944
          <idle>-0       [000] d.h1  5157.615148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.615178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.615196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.615209: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181690 baseclk=4296181690
          <idle>-0       [000] .Ns1  5157.615245: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.615276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.615284: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.615315: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.619140: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.619166: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157576130592
          <idle>-0       [000] d.h1  5157.619217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.623099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.623120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157580088336
          <idle>-0       [000] d.h1  5157.623162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.627100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.627119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157584088160
          <idle>-0       [000] d.h1  5157.627158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.631108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.631127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157588096464
          <idle>-0       [000] d.h1  5157.631167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.635111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.635130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157592099264
          <idle>-0       [000] d.h1  5157.635163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.639117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.639124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157596096128
          <idle>-0       [000] d.h1  5157.639138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.643108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.643127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157600096320
          <idle>-0       [000] d.h1  5157.643165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.647109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.647128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157604096880
          <idle>-0       [000] d.h1  5157.647167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.651109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.651128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157608097424
          <idle>-0       [000] d.h1  5157.651169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.655110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.655135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157612108000
          <idle>-0       [000] d.h1  5157.655150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.659107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.659125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157616094912
          <idle>-0       [000] d.h1  5157.659164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.663109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.663128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157620097440
          <idle>-0       [000] d.h1  5157.663145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.663176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.663194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5157.663205: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181702 baseclk=4296181702
          <idle>-0       [000] .Ns1  5157.663249: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.663261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.663269: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5157.663297: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5157.663329: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.667115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.667155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157624105840
          <idle>-0       [000] d.h1  5157.667177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.671109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.671130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157628098160
          <idle>-0       [000] d.h1  5157.671173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.675111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.675131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157632100112
          <idle>-0       [000] d.h1  5157.675172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.679108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.679114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157636086288
          <idle>-0       [000] d.h1  5157.679129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.683103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.683122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157640091888
          <idle>-0       [000] d.h1  5157.683140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.683171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.683190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.683204: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181707 baseclk=4296181707
          <idle>-0       [000] .Ns1  5157.683242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.683278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.683302: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.683354: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.687123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.687149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157644113584
          <idle>-0       [000] d.h1  5157.687214: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.691108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.691129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157648096896
          <idle>-0       [000] d.h1  5157.691171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.695119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.695139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157652107952
          <idle>-0       [000] d.h1  5157.695179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.699109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.699128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157656097616
          <idle>-0       [000] d.h1  5157.699169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.703105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.703124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157660093440
          <idle>-0       [000] d.h1  5157.703163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.707114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.707134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157664102496
          <idle>-0       [000] d.h1  5157.707174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.711111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.711131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157668099920
          <idle>-0       [000] d.h1  5157.711170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.715112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.715131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157672100272
          <idle>-0       [000] d.h1  5157.715170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.719107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.719126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157676095264
          <idle>-0       [000] d.h1  5157.719165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.723118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.723146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157680106128
          <idle>-0       [000] d.h1  5157.723186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.727108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.727128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157684097056
          <idle>-0       [000] d.h1  5157.727167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.731109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.731128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157688097408
          <idle>-0       [000] d.h1  5157.731166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.735089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.735095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157692067904
          <idle>-0       [000] d.h1  5157.735110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.739095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.739114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157696083728
          <idle>-0       [000] d.h1  5157.739151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.743116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.743135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157700104416
          <idle>-0       [000] d.h1  5157.743152: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.743181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.743199: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.743219: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181722 baseclk=4296181722
          <idle>-0       [000] .Ns1  5157.743232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.743244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.743253: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.743281: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.747124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.747150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157704114880
          <idle>-0       [000] d.h1  5157.747201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.751108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.751129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157708097632
          <idle>-0       [000] d.h1  5157.751173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.755112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.755118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157712090560
          <idle>-0       [000] d.h1  5157.755133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.759108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.759127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157716096528
          <idle>-0       [000] d.h1  5157.759167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.763112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.763131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157720100240
          <idle>-0       [000] d.h1  5157.763171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.767112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.767140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157724112976
          <idle>-0       [000] d.h1  5157.767154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.771107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.771128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157728100608
          <idle>-0       [000] d.h1  5157.771142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.775105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.775124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157732093184
          <idle>-0       [000] d.h1  5157.775162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.779108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.779127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157736096224
          <idle>-0       [000] d.h1  5157.779173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.783118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.783137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157740106032
          <idle>-0       [000] d.h1  5157.783175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.787104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.787123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157744092784
          <idle>-0       [000] d.h1  5157.787140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.787169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.787208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.787212: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181733 baseclk=4296181733
          <idle>-0       [000] .Ns1  5157.787224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.787236: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.787245: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.787263: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.791112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.791138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157748109520
          <idle>-0       [000] d.h1  5157.791158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.795110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.795131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157752099776
          <idle>-0       [000] d.h1  5157.795175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.799112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.799132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157756100960
          <idle>-0       [000] d.h1  5157.799182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.803104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.803123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157760092336
          <idle>-0       [000] d.h1  5157.803161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.807109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.807130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157764098400
          <idle>-0       [000] d.h1  5157.807170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.811112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.811132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157768100896
          <idle>-0       [000] d.h1  5157.811170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.815105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.815111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157772083424
          <idle>-0       [000] d.h1  5157.815125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.819082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.819089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157776061232
          <idle>-0       [000] d.h1  5157.819103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.823087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.823093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157780065424
          <idle>-0       [000] d.h1  5157.823107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.827092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.827098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157784070720
          <idle>-0       [000] d.h1  5157.827113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.831086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.831093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157788064944
          <idle>-0       [000] d.h1  5157.831111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.835085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.835092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157792064512
          <idle>-0       [000] d.h1  5157.835111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.839084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.839091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157796063008
          <idle>-0       [000] d.h1  5157.839107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.843091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.843097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157800069824
          <idle>-0       [000] d.h1  5157.843114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.847084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.847090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157804062512
          <idle>-0       [000] d.h1  5157.847105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.851086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.851092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157808064688
          <idle>-0       [000] d.h1  5157.851107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.855112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.855136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157812104080
          <idle>-0       [000] d.h1  5157.855174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.859115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.859121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157816093696
          <idle>-0       [000] d.h1  5157.859136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.863106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.863125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157820094720
          <idle>-0       [000] d.h1  5157.863143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.863171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.863177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.863200: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296181752 baseclk=4296181752
          <idle>-0       [000] .Ns1  5157.863231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.863252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.863268: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5157.863320: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.867122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.867131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157824101232
          <idle>-0       [000] d.h1  5157.867139: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.867154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.867168: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5157.867173: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181753 baseclk=4296181753
          <idle>-0       [000] .Ns1  5157.867197: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.867211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.867220: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5157.867258: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5157.867296: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.871114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.871142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157828104576
          <idle>-0       [000] d.h1  5157.871166: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.871207: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.871254: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.871269: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181754 baseclk=4296181754
          <idle>-0       [000] .Ns1  5157.871305: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.871344: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.871367: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.871444: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.875114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.875141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157832105440
          <idle>-0       [000] d.h1  5157.875193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.879115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.879143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157836115248
          <idle>-0       [000] d.h1  5157.879159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.883107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.883126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157840095280
          <idle>-0       [000] d.h1  5157.883167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.887112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.887132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157844100704
          <idle>-0       [000] d.h1  5157.887172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.891106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.891126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157848095184
          <idle>-0       [000] d.h1  5157.891144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.891173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.891204: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.891215: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181759 baseclk=4296181759
          <idle>-0       [000] .Ns1  5157.891250: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.891262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.891271: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.891288: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.895117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.895125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157852096272
          <idle>-0       [000] d.h1  5157.895133: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.895147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.895152: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.895158: timer_expire_entry: timer=0000000048478dbc function=delayed_work_timer_fn now=4296181760 baseclk=4296181760
          <idle>-0       [000] .Ns1  5157.895179: timer_expire_entry: timer=00000000b31e40f9 function=commit_timeout now=4296181760 baseclk=4296181760
          <idle>-0       [000] .Ns1  5157.895191: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.895204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=jbd2/vda-8 next_pid=119 next_prio=120
      jbd2/vda-8-119     [000] d..2  5157.895960: sched_switch: prev_comm=jbd2/vda-8 prev_pid=119 prev_prio=120 prev_state=D ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.895977: workqueue_execute_start: work struct 00000000ec54f352: function addrconf_verify_work
     kworker/0:2-112     [000] d.h.  5157.896060: irq_handler_entry: irq=43 name=virtio0
     kworker/0:2-112     [000] d.h3  5157.896089: softirq_raise: vec=4 [action=BLOCK]
     kworker/0:2-112     [000] d.h.  5157.896098: irq_handler_exit: irq=43 ret=handled
     kworker/0:2-112     [000] ..s.  5157.896122: softirq_entry: vec=4 [action=BLOCK]
     kworker/0:2-112     [000] .Ns.  5157.896196: softirq_exit: vec=4 [action=BLOCK]
     kworker/0:2-112     [000] d..2  5157.896214: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=R+ ==> next_comm=jbd2/vda-8 next_pid=119 next_prio=120
      jbd2/vda-8-119     [000] d..2  5157.896389: sched_switch: prev_comm=jbd2/vda-8 prev_pid=119 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:1H next_pid=92 next_prio=100
    kworker/0:1H-92      [000] ....  5157.896402: workqueue_execute_start: work struct 00000000f2bca3e1: function blk_mq_requeue_work
    kworker/0:1H-92      [000] d..2  5157.896470: sched_switch: prev_comm=kworker/0:1H prev_pid=92 prev_prio=100 prev_state=I ==> next_comm=jbd2/vda-8 next_pid=119 next_prio=120
      jbd2/vda-8-119     [000] d..2  5157.896494: sched_switch: prev_comm=jbd2/vda-8 prev_pid=119 prev_prio=120 prev_state=D ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] d..2  5157.897048: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.899133: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.899172: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157856130848
          <idle>-0       [000] d.h1  5157.899265: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.903119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.903144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157860110800
          <idle>-0       [000] d.h1  5157.903196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.907114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.907137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157864104448
          <idle>-0       [000] d.h1  5157.907181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.911098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.911118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157868086928
          <idle>-0       [000] d.h1  5157.911159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.915111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.915131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157872100432
          <idle>-0       [000] d.h1  5157.915171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.919106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.919113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157876085024
          <idle>-0       [000] d.h1  5157.919127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.923104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.923126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157880098576
          <idle>-0       [000] d.h1  5157.923140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.927106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.927126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157884094720
          <idle>-0       [000] d.h1  5157.927144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.927173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.927193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5157.927207: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181768 baseclk=4296181768
          <idle>-0       [000] .Ns1  5157.927254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.927299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5157.927394: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.931110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.931137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157888101520
          <idle>-0       [000] d.h1  5157.931188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.935112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.935133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157892101552
          <idle>-0       [000] d.h1  5157.935176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.939089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.939096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157896068000
          <idle>-0       [000] d.h1  5157.939111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.943109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.943129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157900097312
          <idle>-0       [000] d.h1  5157.943168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.947109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.947129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157904098336
          <idle>-0       [000] d.h1  5157.947169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.951109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.951143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157908098048
          <idle>-0       [000] d.h1  5157.951159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.954095: irq_handler_entry: irq=43 name=virtio0
          <idle>-0       [000] d.h4  5157.954159: softirq_raise: vec=4 [action=BLOCK]
          <idle>-0       [000] d.h1  5157.954165: irq_handler_exit: irq=43 ret=handled
          <idle>-0       [000] ..s1  5157.954175: softirq_entry: vec=4 [action=BLOCK]
          <idle>-0       [000] .Ns1  5157.954206: softirq_exit: vec=4 [action=BLOCK]
          <idle>-0       [000] d..2  5157.954221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1H next_pid=92 next_prio=100
    kworker/0:1H-92      [000] ....  5157.954233: workqueue_execute_start: work struct 00000000f2bca3e1: function blk_mq_requeue_work
    kworker/0:1H-92      [000] d..2  5157.956629: sched_switch: prev_comm=kworker/0:1H prev_pid=92 prev_prio=100 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h2  5157.956768: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h2  5157.956827: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157913786576
          <idle>-0       [000] d.h2  5157.957004: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h2  5157.957022: irq_handler_entry: irq=43 name=virtio0
          <idle>-0       [000] d.h5  5157.957052: softirq_raise: vec=4 [action=BLOCK]
          <idle>-0       [000] d.h2  5157.957061: irq_handler_exit: irq=43 ret=handled
          <idle>-0       [000] ..s2  5157.957075: softirq_entry: vec=4 [action=BLOCK]
          <idle>-0       [000] .Ns2  5157.957135: softirq_exit: vec=4 [action=BLOCK]
          <idle>-0       [000] d..2  5157.957153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1H next_pid=92 next_prio=100
    kworker/0:1H-92      [000] ....  5157.957168: workqueue_execute_start: work struct 00000000f2bca3e1: function blk_mq_requeue_work
    kworker/0:1H-92      [000] d..2  5157.957244: sched_switch: prev_comm=kworker/0:1H prev_pid=92 prev_prio=100 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.959151: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.959180: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157916143776
          <idle>-0       [000] d.h1  5157.959247: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.963096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.963118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157920085872
          <idle>-0       [000] d.h1  5157.963153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.967084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.967107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157924078912
          <idle>-0       [000] d.h1  5157.967121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.971087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.971093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157928065440
          <idle>-0       [000] d.h1  5157.971107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.975081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.975100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157932069184
          <idle>-0       [000] d.h1  5157.975132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.979085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.979092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157936064144
          <idle>-0       [000] d.h1  5157.979105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.983081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.983112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157940069216
          <idle>-0       [000] d.h1  5157.983126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.987081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.987106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157944079008
          <idle>-0       [000] d.h1  5157.987120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.991081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.991100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157948069552
          <idle>-0       [000] d.h1  5157.991138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5157.995082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.995106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157952078544
          <idle>-0       [000] d.h1  5157.995112: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.995123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.995138: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.995146: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181785 baseclk=4296181785
          <idle>-0       [000] .Ns1  5157.995170: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.995191: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.995204: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5157.995232: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5157.999120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5157.999146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157956111104
          <idle>-0       [000] d.h1  5157.999169: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5157.999222: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5157.999240: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5157.999251: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181786 baseclk=4296181786
          <idle>-0       [000] .Ns1  5157.999289: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5157.999327: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5157.999350: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5157.999444: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.003111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.003137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157960102240
          <idle>-0       [000] d.h1  5158.003191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.004134: irq_handler_entry: irq=43 name=virtio0
          <idle>-0       [000] d.h4  5158.004152: softirq_raise: vec=4 [action=BLOCK]
          <idle>-0       [000] d.h1  5158.004156: irq_handler_exit: irq=43 ret=handled
          <idle>-0       [000] ..s1  5158.004164: softirq_entry: vec=4 [action=BLOCK]
          <idle>-0       [000] .Ns1  5158.004235: softirq_exit: vec=4 [action=BLOCK]
          <idle>-0       [000] d..2  5158.004253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=jbd2/vda-8 next_pid=119 next_prio=120
      jbd2/vda-8-119     [000] d..2  5158.004604: sched_switch: prev_comm=jbd2/vda-8 prev_pid=119 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.007137: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.007176: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157964133312
          <idle>-0       [000] d.h1  5158.007261: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.011116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.011139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157968106912
          <idle>-0       [000] d.h1  5158.011188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.015114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.015134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157972103088
          <idle>-0       [000] d.h1  5158.015177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.019107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.019128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157976096352
          <idle>-0       [000] d.h1  5158.019171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.023109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.023129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157980097776
          <idle>-0       [000] d.h1  5158.023168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.027109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.027128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157984097040
          <idle>-0       [000] d.h1  5158.027167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.031110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.031129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157988097952
          <idle>-0       [000] d.h1  5158.031164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.035097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.035104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157992075984
          <idle>-0       [000] d.h1  5158.035118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.039102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.039121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5157996090624
          <idle>-0       [000] d.h1  5158.039160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.043129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.043148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158000117296
          <idle>-0       [000] d.h1  5158.043179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.047095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.047114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158004083152
          <idle>-0       [000] d.h1  5158.047152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.051110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.051130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158008098832
          <idle>-0       [000] d.h1  5158.051170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.055108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.055127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158012096608
          <idle>-0       [000] d.h1  5158.055165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.059124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.059157: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158016112576
          <idle>-0       [000] d.h1  5158.059171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.063102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.063121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158020090704
          <idle>-0       [000] d.h1  5158.063159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.067105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.067111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158024084016
          <idle>-0       [000] d.h1  5158.067126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.071103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.071122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158028091312
          <idle>-0       [000] d.h1  5158.071140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.071177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.071196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.071216: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181804 baseclk=4296181804
          <idle>-0       [000] .Ns1  5158.071300: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.071342: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.071378: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5158.071441: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5158.071510: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.075118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.075147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158032109568
          <idle>-0       [000] d.h1  5158.075218: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.079116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.079137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158036105312
          <idle>-0       [000] d.h1  5158.079196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.083111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.083131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158040100128
          <idle>-0       [000] d.h1  5158.083172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.087112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.087132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158044101024
          <idle>-0       [000] d.h1  5158.087172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.091112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.091140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158048100576
          <idle>-0       [000] d.h1  5158.091188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.095104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.095124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158052092880
          <idle>-0       [000] d.h1  5158.095164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.099109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.099129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158056097792
          <idle>-0       [000] d.h1  5158.099147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.099177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.099197: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.099228: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181811 baseclk=4296181811
          <idle>-0       [000] .Ns1  5158.099249: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.099264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.099273: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.099292: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.103112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.103138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158060102480
          <idle>-0       [000] d.h1  5158.103189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.107113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.107134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158064102400
          <idle>-0       [000] d.h1  5158.107178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.111115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.111135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158068103680
          <idle>-0       [000] d.h1  5158.111176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.115112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.115133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158072101360
          <idle>-0       [000] d.h1  5158.115173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.119111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.119131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158076099696
          <idle>-0       [000] d.h1  5158.119170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.123112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.123131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158080099968
          <idle>-0       [000] d.h1  5158.123170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.127111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.127131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158084099792
          <idle>-0       [000] d.h1  5158.127148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.127188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.127193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.127213: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181818 baseclk=4296181818
          <idle>-0       [000] .Ns1  5158.127229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.127242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.127250: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5158.127280: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.131127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.131153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158088117456
          <idle>-0       [000] d.h1  5158.131205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.135110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.135131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158092099648
          <idle>-0       [000] d.h1  5158.135175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.139097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.139117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158096085984
          <idle>-0       [000] d.h1  5158.139157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.143089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.143095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158100067728
          <idle>-0       [000] d.h1  5158.143110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.147102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.147108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158104080368
          <idle>-0       [000] d.h1  5158.147122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.151105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.151126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158108094544
          <idle>-0       [000] d.h1  5158.151144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.151175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.151194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.151222: timer_expire_entry: timer=00000000af26d0f5 function=writeout_period now=4296181824 baseclk=4296181824
          <idle>-0       [000] ..s1  5158.151321: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.155112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.155133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158112101632
          <idle>-0       [000] d.h1  5158.155182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.159114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.159134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158116102736
          <idle>-0       [000] d.h1  5158.159173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.163119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.163138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158120107440
          <idle>-0       [000] d.h1  5158.163177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.167112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.167132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158124100880
          <idle>-0       [000] d.h1  5158.167171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.171110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.171129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158128098464
          <idle>-0       [000] d.h1  5158.171167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.175103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.175122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158132091728
          <idle>-0       [000] d.h1  5158.175163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.179103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.179122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158136091456
          <idle>-0       [000] d.h1  5158.179160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.183117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.183136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158140105200
          <idle>-0       [000] d.h1  5158.183173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.187103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.187123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158144091744
          <idle>-0       [000] d.h1  5158.187160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.191103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.191123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158148091616
          <idle>-0       [000] d.h1  5158.191161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.195110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.195141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158152098048
          <idle>-0       [000] d.h1  5158.195155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.199101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.199108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158156080160
          <idle>-0       [000] d.h1  5158.199122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.203095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.203114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158160083728
          <idle>-0       [000] d.h1  5158.203131: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.203160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.203179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.203203: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181837 baseclk=4296181837
          <idle>-0       [000] .Ns1  5158.203251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.203291: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.203315: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.203372: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.207118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.207145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158164109440
          <idle>-0       [000] d.h1  5158.207197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.211135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.211156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158168123808
          <idle>-0       [000] d.h1  5158.211198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.215088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.215094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158172066976
          <idle>-0       [000] d.h1  5158.215109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.219105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.219124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158176093136
          <idle>-0       [000] d.h1  5158.219162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.223109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.223129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158180097904
          <idle>-0       [000] d.h1  5158.223168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.227109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.227129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158184097600
          <idle>-0       [000] d.h1  5158.227167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.231108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.231128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158188096768
          <idle>-0       [000] d.h1  5158.231166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.235107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.235127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158192095776
          <idle>-0       [000] d.h1  5158.235209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.239129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.239155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158196127280
          <idle>-0       [000] d.h1  5158.239169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.243119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.243139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158200107792
          <idle>-0       [000] d.h1  5158.243177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.247107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.247126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158204095264
          <idle>-0       [000] d.h1  5158.247164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.251106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.251126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158208094704
          <idle>-0       [000] d.h1  5158.251165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.255117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.255137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158212105856
          <idle>-0       [000] d.h1  5158.255154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.255184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.255200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.255206: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181850 baseclk=4296181850
          <idle>-0       [000] .Ns1  5158.255221: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.255234: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.255242: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5158.255272: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.259130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.259157: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158216121856
          <idle>-0       [000] d.h1  5158.259204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.263098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.263119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158220087712
          <idle>-0       [000] d.h1  5158.263162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.267109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.267141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158224097936
          <idle>-0       [000] d.h1  5158.267156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.271096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.271115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158228084000
          <idle>-0       [000] d.h1  5158.271154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.275111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.275130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158232099392
          <idle>-0       [000] d.h1  5158.275148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.275178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.275209: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.275219: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181855 baseclk=4296181855
          <idle>-0       [000] .Ns1  5158.275276: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.275289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.275297: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5158.275321: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5158.275350: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.279121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.279149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158236111760
          <idle>-0       [000] d.h1  5158.279205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.283114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.283135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158240103456
          <idle>-0       [000] d.h1  5158.283179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.287113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.287133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158244101200
          <idle>-0       [000] d.h1  5158.287174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.291112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.291132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158248100640
          <idle>-0       [000] d.h1  5158.291171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.295107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.295126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158252095488
          <idle>-0       [000] d.h1  5158.295164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.299107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.299126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158256095200
          <idle>-0       [000] d.h1  5158.299165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.303112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.303131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158260100528
          <idle>-0       [000] d.h1  5158.303170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.307110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.307129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158264098384
          <idle>-0       [000] d.h1  5158.307147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.307179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.307198: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.307210: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181863 baseclk=4296181863
          <idle>-0       [000] .Ns1  5158.307249: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.307286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.307311: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.307365: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.311125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.311150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158268114768
          <idle>-0       [000] d.h1  5158.311200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.315110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.315117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158272089184
          <idle>-0       [000] d.h1  5158.315133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.319107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.319127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158276095744
          <idle>-0       [000] d.h1  5158.319167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.323112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.323132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158280100528
          <idle>-0       [000] d.h1  5158.323171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.327111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.327131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158284099936
          <idle>-0       [000] d.h1  5158.327170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.331112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.331131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158288099856
          <idle>-0       [000] d.h1  5158.331169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.335110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.335129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158292097920
          <idle>-0       [000] d.h1  5158.335167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.339108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.339128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158296096480
          <idle>-0       [000] d.h1  5158.339165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.343110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.343129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158300097840
          <idle>-0       [000] d.h1  5158.343167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.347083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.347089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158304061552
          <idle>-0       [000] d.h1  5158.347110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.351105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.351125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158308093776
          <idle>-0       [000] d.h1  5158.351164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.355109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.355128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158312096752
          <idle>-0       [000] d.h1  5158.355166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.359110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.359129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158316098032
          <idle>-0       [000] d.h1  5158.359167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.363110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.363136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158320108624
          <idle>-0       [000] d.h1  5158.363150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.367106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.367135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158324107584
          <idle>-0       [000] d.h1  5158.367149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.371106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.371126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158328094832
          <idle>-0       [000] d.h1  5158.371155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.375103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.375126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158332098592
          <idle>-0       [000] d.h1  5158.375132: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.375143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.375148: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.375153: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296181880 baseclk=4296181880
          <idle>-0       [000] dNs1  5158.375180: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296181880 baseclk=4296181880
          <idle>-0       [000] dNs1  5158.375188: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296181880 baseclk=4296181880
          <idle>-0       [000] dNs1  5158.375194: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296181880 baseclk=4296181880
          <idle>-0       [000] dNs1  5158.375198: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296181880 baseclk=4296181880
          <idle>-0       [000] .Ns1  5158.375201: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.375215: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5158.375235: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5158.375250: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5158.375256: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5158.375263: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5158.375268: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5158.375287: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5158.375305: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.379129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.379156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158336120304
          <idle>-0       [000] d.h1  5158.379211: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.383108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.383130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158340097632
          <idle>-0       [000] d.h1  5158.383150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.383183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.383203: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.383230: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181882 baseclk=4296181882
          <idle>-0       [000] .Ns1  5158.383270: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.383306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.383330: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5158.383411: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.387123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.387149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158344113600
          <idle>-0       [000] d.h1  5158.387188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.391109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.391133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158348105424
          <idle>-0       [000] d.h1  5158.391150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.395105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.395124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158352093328
          <idle>-0       [000] d.h1  5158.395164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.399118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.399137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158356106288
          <idle>-0       [000] d.h1  5158.399176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.403083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.403102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158360071232
          <idle>-0       [000] d.h1  5158.403142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.407086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.407093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158364065248
          <idle>-0       [000] d.h1  5158.407099: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.407111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.407116: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.407122: timer_expire_entry: timer=000000004ee22bb9 function=blk_rq_timed_out_timer now=4296181888 baseclk=4296181888
          <idle>-0       [000] .Ns1  5158.407143: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.407157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:1H next_pid=92 next_prio=100
    kworker/0:1H-92      [000] ....  5158.407166: workqueue_execute_start: work struct 000000003cd95993: function blk_mq_timeout_work
    kworker/0:1H-92      [000] d..2  5158.407195: sched_switch: prev_comm=kworker/0:1H prev_pid=92 prev_prio=100 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.411089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.411098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158368068880
          <idle>-0       [000] d.h1  5158.411106: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.411121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.411134: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.411139: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181889 baseclk=4296181889
          <idle>-0       [000] .Ns1  5158.411151: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.411166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.411173: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.411191: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.415099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.415108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158372078720
          <idle>-0       [000] d.h1  5158.415127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.419094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.419101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158376073168
          <idle>-0       [000] d.h1  5158.419117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.423083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.423090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158380062112
          <idle>-0       [000] d.h1  5158.423104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.427087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.427093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158384065680
          <idle>-0       [000] d.h1  5158.427108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.431112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.431142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158388114064
          <idle>-0       [000] d.h1  5158.431156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.435111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.435131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158392099680
          <idle>-0       [000] d.h1  5158.435169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.439104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.439124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158396092640
          <idle>-0       [000] d.h1  5158.439141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.439181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.439186: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.439189: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296181896 baseclk=4296181896
          <idle>-0       [000] .Ns1  5158.439218: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.439230: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5158.439282: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.443123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.443149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158400113488
          <idle>-0       [000] d.h1  5158.443209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.447107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.447127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158404095936
          <idle>-0       [000] d.h1  5158.447170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.451111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.451132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158408100432
          <idle>-0       [000] d.h1  5158.451173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.455108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.455127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158412096096
          <idle>-0       [000] d.h1  5158.455166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.459112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.459132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158416100848
          <idle>-0       [000] d.h1  5158.459169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.463109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.463136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158420108192
          <idle>-0       [000] d.h1  5158.463150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.467103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.467109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158424081872
          <idle>-0       [000] d.h1  5158.467123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.471103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.471122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158428091552
          <idle>-0       [000] d.h1  5158.471160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.475105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.475124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158432093072
          <idle>-0       [000] d.h1  5158.475161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.479108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.479127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158436095888
          <idle>-0       [000] d.h1  5158.479144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.479172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.479196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.479200: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181906 baseclk=4296181906
          <idle>-0       [000] .Ns1  5158.479229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.479244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.479253: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5158.479280: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5158.479311: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.483118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.483162: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158440109264
          <idle>-0       [000] d.h1  5158.483185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.487105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.487112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158444084096
          <idle>-0       [000] d.h1  5158.487129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.491105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.491125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158448094064
          <idle>-0       [000] d.h1  5158.491166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.495108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.495128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158452097104
          <idle>-0       [000] d.h1  5158.495168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.499108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.499128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158456096816
          <idle>-0       [000] d.h1  5158.499167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.503104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.503110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158460082944
          <idle>-0       [000] d.h1  5158.503125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.507111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.507131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158464099968
          <idle>-0       [000] d.h1  5158.507172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.511112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.511131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158468100160
          <idle>-0       [000] d.h1  5158.511149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.511180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.511199: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.511213: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181914 baseclk=4296181914
          <idle>-0       [000] .Ns1  5158.511254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.511292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.511318: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5158.511363: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.515119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.515145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158472109696
          <idle>-0       [000] d.h1  5158.515166: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.515206: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.515243: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.515247: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181915 baseclk=4296181915
          <idle>-0       [000] .Ns1  5158.515259: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.515271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.515279: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.515296: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.519126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.519152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158476116896
          <idle>-0       [000] d.h1  5158.519187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.523124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.523145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158480113168
          <idle>-0       [000] d.h1  5158.523188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.527109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.527130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158484098400
          <idle>-0       [000] d.h1  5158.527170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.531108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.531128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158488096736
          <idle>-0       [000] d.h1  5158.531169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.535108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.535128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158492096528
          <idle>-0       [000] d.h1  5158.535168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.539109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.539129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158496097824
          <idle>-0       [000] d.h1  5158.539169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.543113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.543133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158500101696
          <idle>-0       [000] d.h1  5158.543171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.547106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.547125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158504094208
          <idle>-0       [000] d.h1  5158.547164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.551093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.551100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158508072096
          <idle>-0       [000] d.h1  5158.551115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.555105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.555124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158512093040
          <idle>-0       [000] d.h1  5158.555163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.559118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.559137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158516106144
          <idle>-0       [000] d.h1  5158.559175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.563108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.563115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158520087200
          <idle>-0       [000] d.h1  5158.563129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.567107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.567126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158524094960
          <idle>-0       [000] d.h1  5158.567164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.571112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.571131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158528100400
          <idle>-0       [000] d.h1  5158.571169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.575092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.575098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158532070912
          <idle>-0       [000] d.h1  5158.575113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.579108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.579127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158536095824
          <idle>-0       [000] d.h1  5158.579165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.583111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.583130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158540099440
          <idle>-0       [000] d.h1  5158.583169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.587111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.587130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158544099440
          <idle>-0       [000] d.h1  5158.587169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.591112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.591130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158548099824
          <idle>-0       [000] d.h1  5158.591168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.595111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.595130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158552099616
          <idle>-0       [000] d.h1  5158.595161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.599119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.599138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158556106864
          <idle>-0       [000] d.h1  5158.599172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.603102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.603121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158560090656
          <idle>-0       [000] d.h1  5158.603159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.607109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.607128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158564097072
          <idle>-0       [000] d.h1  5158.607167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.611083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.611116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158568071344
          <idle>-0       [000] d.h1  5158.611130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.615102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.615108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158572080736
          <idle>-0       [000] d.h1  5158.615122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.619105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.619124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158576093120
          <idle>-0       [000] d.h1  5158.619141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.619170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.619190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.619205: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181941 baseclk=4296181941
          <idle>-0       [000] .Ns1  5158.619243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.619280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.619305: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.619358: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.623100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.623126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158580090592
          <idle>-0       [000] d.h1  5158.623166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.627089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.627110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158584078448
          <idle>-0       [000] d.h1  5158.627152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.631080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.631100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158588069088
          <idle>-0       [000] d.h1  5158.631130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.635093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.635113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158592081904
          <idle>-0       [000] d.h1  5158.635152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.639084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.639104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158596072576
          <idle>-0       [000] d.h1  5158.639121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.639151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.639182: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.639194: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181946 baseclk=4296181946
          <idle>-0       [000] .Ns1  5158.639230: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.639273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.639281: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5158.639310: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.643097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.643131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158600102080
          <idle>-0       [000] d.h1  5158.643150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.647082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.647103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158604071296
          <idle>-0       [000] d.h1  5158.647146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.651087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.651107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158608075728
          <idle>-0       [000] d.h1  5158.651148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.655083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.655103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158612071808
          <idle>-0       [000] d.h1  5158.655132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.659079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.659099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158616067760
          <idle>-0       [000] d.h1  5158.659137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.663088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.663094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158620066464
          <idle>-0       [000] d.h1  5158.663108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.667080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.667099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158624068016
          <idle>-0       [000] d.h1  5158.667136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.671081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.671099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158628069024
          <idle>-0       [000] d.h1  5158.671138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.675079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.675098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158632067600
          <idle>-0       [000] d.h1  5158.675138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.679081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.679100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158636069264
          <idle>-0       [000] d.h1  5158.679137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.683083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.683102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158640071264
          <idle>-0       [000] d.h1  5158.683119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.683148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.683177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.683188: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296181957 baseclk=4296181957
          <idle>-0       [000] .Ns1  5158.683247: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.683259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.683267: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5158.683290: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5158.683319: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.687100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.687128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158644091440
          <idle>-0       [000] d.h1  5158.687187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.691087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.691094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158648065792
          <idle>-0       [000] d.h1  5158.691111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.695095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.695102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158652074016
          <idle>-0       [000] d.h1  5158.695117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.699083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.699102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158656071280
          <idle>-0       [000] d.h1  5158.699134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.703079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.703098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158660067232
          <idle>-0       [000] d.h1  5158.703136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.707083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.707103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158664071632
          <idle>-0       [000] d.h1  5158.707148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.711080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.711099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158668068224
          <idle>-0       [000] d.h1  5158.711137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.715083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.715102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158672071168
          <idle>-0       [000] d.h1  5158.715140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.719084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.719103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158676072240
          <idle>-0       [000] d.h1  5158.719141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.723084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.723103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158680071824
          <idle>-0       [000] d.h1  5158.723120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.723150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.723182: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.723193: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181967 baseclk=4296181967
          <idle>-0       [000] .Ns1  5158.723232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.723269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.723294: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.723341: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.727100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.727125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158684090416
          <idle>-0       [000] d.h1  5158.727191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.731084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.731104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158688072896
          <idle>-0       [000] d.h1  5158.731148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.735086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.735092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158692064272
          <idle>-0       [000] d.h1  5158.735106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.739081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.739101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158696069952
          <idle>-0       [000] d.h1  5158.739139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.743085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.743104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158700073024
          <idle>-0       [000] d.h1  5158.743142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.747084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.747103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158704072448
          <idle>-0       [000] d.h1  5158.747141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.751086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.751106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158708075024
          <idle>-0       [000] d.h1  5158.751145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.755062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.755069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158712041104
          <idle>-0       [000] d.h1  5158.755082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.759080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.759099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158716068096
          <idle>-0       [000] d.h1  5158.759137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.763083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.763102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158720071520
          <idle>-0       [000] d.h1  5158.763140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.767084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.767109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158724081504
          <idle>-0       [000] d.h1  5158.767115: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.767126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.767141: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.767147: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296181978 baseclk=4296181978
          <idle>-0       [000] .Ns1  5158.767160: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.767172: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.767180: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5158.767210: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.771096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.771129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158728086272
          <idle>-0       [000] d.h1  5158.771197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.775085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.775106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158732073872
          <idle>-0       [000] d.h1  5158.775148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.779084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.779104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158736072528
          <idle>-0       [000] d.h1  5158.779143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.783117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.783146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158740118592
          <idle>-0       [000] d.h1  5158.783160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.787103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.787122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158744091392
          <idle>-0       [000] d.h1  5158.787160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.791102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.791108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158748080976
          <idle>-0       [000] d.h1  5158.791123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.795106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.795125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158752094288
          <idle>-0       [000] d.h1  5158.795163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.799106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.799125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158756093776
          <idle>-0       [000] d.h1  5158.799163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.803107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.803126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158760095648
          <idle>-0       [000] d.h1  5158.803165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.807099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.807118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158764087328
          <idle>-0       [000] d.h1  5158.807157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.811109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.811115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158768087408
          <idle>-0       [000] d.h1  5158.811129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.815123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.815129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158772101584
          <idle>-0       [000] d.h1  5158.815143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.819111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.819130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158776099184
          <idle>-0       [000] d.h1  5158.819167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.823095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.823114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158780083312
          <idle>-0       [000] d.h1  5158.823151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.827108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.827127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158784096352
          <idle>-0       [000] d.h1  5158.827144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.827175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.827193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.827219: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296181993 baseclk=4296181993
          <idle>-0       [000] .Ns1  5158.827259: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.827288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.827297: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.827316: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.831118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.831143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158788108240
          <idle>-0       [000] d.h1  5158.831194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.835111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.835132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158792100064
          <idle>-0       [000] d.h1  5158.835175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.839109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.839129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158796097952
          <idle>-0       [000] d.h1  5158.839158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.843104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.843123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158800092464
          <idle>-0       [000] d.h1  5158.843162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.847118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.847137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158804106128
          <idle>-0       [000] d.h1  5158.847175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.851115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.851122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158808094096
          <idle>-0       [000] d.h1  5158.851137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.855105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.855123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158812092832
          <idle>-0       [000] d.h1  5158.855162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.859109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.859128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158816097520
          <idle>-0       [000] d.h1  5158.859166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.863108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.863127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158820095936
          <idle>-0       [000] d.h1  5158.863164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.867108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.867127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158824096720
          <idle>-0       [000] d.h1  5158.867166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.871106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.871125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158828094304
          <idle>-0       [000] d.h1  5158.871163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.875109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.875128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158832096992
          <idle>-0       [000] d.h1  5158.875165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.879111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.879130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158836099664
          <idle>-0       [000] d.h1  5158.879168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.883101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.883120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158840089408
          <idle>-0       [000] d.h1  5158.883157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.887107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.887125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158844094640
          <idle>-0       [000] d.h1  5158.887142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.887171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.887190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.887201: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182008 baseclk=4296182008
          <idle>-0       [000] dNs1  5158.887250: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296182008 baseclk=4296182008
          <idle>-0       [000] .Ns1  5158.887255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.887267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.887276: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5158.887298: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] ....  5158.887333: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] ....  5158.887345: workqueue_execute_start: work struct 000000006fcdae5f: function vmstat_update
     kworker/0:2-112     [000] d..2  5158.887389: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.891116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.891144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158848107536
          <idle>-0       [000] d.h1  5158.891204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.895107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.895128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158852096400
          <idle>-0       [000] d.h1  5158.895148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.895182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.895202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.895230: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182010 baseclk=4296182010
          <idle>-0       [000] .Ns1  5158.895276: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.895306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.895315: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5158.895344: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.899128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.899154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158856118560
          <idle>-0       [000] d.h1  5158.899206: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.903112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.903133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158860101472
          <idle>-0       [000] d.h1  5158.903177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.907111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.907132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158864100400
          <idle>-0       [000] d.h1  5158.907175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.911112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.911132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158868101008
          <idle>-0       [000] d.h1  5158.911173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.915111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.915151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158872099632
          <idle>-0       [000] d.h1  5158.915167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.919108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.919127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158876095904
          <idle>-0       [000] d.h1  5158.919165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.923096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.923115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158880084240
          <idle>-0       [000] d.h1  5158.923153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.927124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.927143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158884111872
          <idle>-0       [000] d.h1  5158.927181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.931109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.931128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158888097264
          <idle>-0       [000] d.h1  5158.931145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.931175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.931194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5158.931219: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182019 baseclk=4296182019
          <idle>-0       [000] .Ns1  5158.931258: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.931297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5158.931321: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5158.931375: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.935119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.935144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158892109008
          <idle>-0       [000] d.h1  5158.935195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.939114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.939136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158896103680
          <idle>-0       [000] d.h1  5158.939178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.943107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.943127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158900095632
          <idle>-0       [000] d.h1  5158.943167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.947110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.947129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158904098304
          <idle>-0       [000] d.h1  5158.947169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.951109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.951129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158908097568
          <idle>-0       [000] d.h1  5158.951147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5158.951177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5158.951197: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5158.951211: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182024 baseclk=4296182024
          <idle>-0       [000] .Ns1  5158.951245: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5158.951282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5158.951369: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5158.955125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.955151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158912116112
          <idle>-0       [000] d.h1  5158.955209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.959085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.959092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158916064240
          <idle>-0       [000] d.h1  5158.959108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.963108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.963127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158920096384
          <idle>-0       [000] d.h1  5158.963168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.967088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.967108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158924076848
          <idle>-0       [000] d.h1  5158.967146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.971085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.971104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158928073488
          <idle>-0       [000] d.h1  5158.971143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.975085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.975104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158932073680
          <idle>-0       [000] d.h1  5158.975141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.979082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.979101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158936070048
          <idle>-0       [000] d.h1  5158.979138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.983084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.983103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158940072032
          <idle>-0       [000] d.h1  5158.983140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.987083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.987102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158944071296
          <idle>-0       [000] d.h1  5158.987140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.991080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.991099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158948068672
          <idle>-0       [000] d.h1  5158.991136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.995082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.995110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158952082128
          <idle>-0       [000] d.h1  5158.995123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5158.999080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5158.999100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158956068720
          <idle>-0       [000] d.h1  5158.999136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.003109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.003129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158960097904
          <idle>-0       [000] d.h1  5159.003166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.007112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.007132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158964101120
          <idle>-0       [000] d.h1  5159.007169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.011105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.011125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158968093728
          <idle>-0       [000] d.h1  5159.011169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.015107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.015126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158972095392
          <idle>-0       [000] d.h1  5159.015164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.019126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.019147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158976119888
          <idle>-0       [000] d.h1  5159.019162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.023113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.023132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158980101696
          <idle>-0       [000] d.h1  5159.023150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.023179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.023194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.023207: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182042 baseclk=4296182042
          <idle>-0       [000] .Ns1  5159.023245: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.023282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.023307: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.023395: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.027121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.027147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158984111760
          <idle>-0       [000] d.h1  5159.027214: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.031109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.031130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158988097840
          <idle>-0       [000] d.h1  5159.031172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.035126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.035146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158992115056
          <idle>-0       [000] d.h1  5159.035164: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.035199: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.035204: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.035214: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182045 baseclk=4296182045
          <idle>-0       [000] .Ns1  5159.035228: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.035240: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.035248: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.035266: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.039109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.039135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5158996099856
          <idle>-0       [000] d.h1  5159.039186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.043112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.043133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159000100928
          <idle>-0       [000] d.h1  5159.043176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.047110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.047139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159004111056
          <idle>-0       [000] d.h1  5159.047154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.051121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.051141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159008109584
          <idle>-0       [000] d.h1  5159.051182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.055107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.055135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159012095440
          <idle>-0       [000] d.h1  5159.055185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.059106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.059126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159016094592
          <idle>-0       [000] d.h1  5159.059164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.063108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.063127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159020096464
          <idle>-0       [000] d.h1  5159.063166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.067109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.067128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159024097504
          <idle>-0       [000] d.h1  5159.067167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.071108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.071114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159028086576
          <idle>-0       [000] d.h1  5159.071128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.075105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.075124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159032092768
          <idle>-0       [000] d.h1  5159.075162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.079111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.079130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159036099536
          <idle>-0       [000] d.h1  5159.079169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.083112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.083131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159040099920
          <idle>-0       [000] d.h1  5159.083169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.087111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.087130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159044099152
          <idle>-0       [000] d.h1  5159.087178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.091105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.091111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159048083856
          <idle>-0       [000] d.h1  5159.091117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.091128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.091133: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5159.091137: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182059 baseclk=4296182059
          <idle>-0       [000] .Ns1  5159.091181: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.091193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.091202: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5159.091225: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5159.091254: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.095139: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.095167: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159052130080
          <idle>-0       [000] d.h1  5159.095222: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.099108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.099129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159056097024
          <idle>-0       [000] d.h1  5159.099172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.103111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.103131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159060100208
          <idle>-0       [000] d.h1  5159.103174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.107109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.107130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159064098960
          <idle>-0       [000] d.h1  5159.107173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.111113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.111132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159068100944
          <idle>-0       [000] d.h1  5159.111180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.115123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.115142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159072111120
          <idle>-0       [000] d.h1  5159.115181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.119122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.119141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159076110592
          <idle>-0       [000] d.h1  5159.119181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.123124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.123143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159080112304
          <idle>-0       [000] d.h1  5159.123191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.127120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.127139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159084108032
          <idle>-0       [000] d.h1  5159.127178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.131096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.131115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159088083840
          <idle>-0       [000] d.h1  5159.131153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.135109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.135128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159092097632
          <idle>-0       [000] d.h1  5159.135167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.139110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.139129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159096098496
          <idle>-0       [000] d.h1  5159.139147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.139176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.139209: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.139220: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182071 baseclk=4296182071
          <idle>-0       [000] .Ns1  5159.139260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.139297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.139328: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.139348: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.143117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.143142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159100107392
          <idle>-0       [000] d.h1  5159.143194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.147112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.147133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159104101168
          <idle>-0       [000] d.h1  5159.147175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.151110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.151130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159108098752
          <idle>-0       [000] d.h1  5159.151148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.151181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.151200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.151213: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182074 baseclk=4296182074
          <idle>-0       [000] .Ns1  5159.151248: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.151293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.151301: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.151330: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.155116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.155143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159112107360
          <idle>-0       [000] d.h1  5159.155188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.159110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.159131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159116099440
          <idle>-0       [000] d.h1  5159.159176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.163090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.163096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159120068640
          <idle>-0       [000] d.h1  5159.163112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.167103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.167110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159124082096
          <idle>-0       [000] d.h1  5159.167124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.171132: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.171152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159128120912
          <idle>-0       [000] d.h1  5159.171191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.175109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.175128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159132097312
          <idle>-0       [000] d.h1  5159.175168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.179112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.179131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159136100176
          <idle>-0       [000] d.h1  5159.179170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.183107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.183126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159140095456
          <idle>-0       [000] d.h1  5159.183165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.187112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.187131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159144100448
          <idle>-0       [000] d.h1  5159.187180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.191105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.191124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159148093008
          <idle>-0       [000] d.h1  5159.191163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.195107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.195126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159152094864
          <idle>-0       [000] d.h1  5159.195164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.199108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.199135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159156107776
          <idle>-0       [000] d.h1  5159.199150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.203103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.203132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159160091792
          <idle>-0       [000] d.h1  5159.203174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.207120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.207140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159164108512
          <idle>-0       [000] d.h1  5159.207180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.211093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.211112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159168080736
          <idle>-0       [000] d.h1  5159.211150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.215112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.215131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159172099904
          <idle>-0       [000] d.h1  5159.215168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.219107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.219137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159176109872
          <idle>-0       [000] d.h1  5159.219152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.223104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.223123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159180092784
          <idle>-0       [000] d.h1  5159.223162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.227109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.227128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159184097216
          <idle>-0       [000] d.h1  5159.227167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.231104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.231123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159188092288
          <idle>-0       [000] d.h1  5159.231171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.235104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.235124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159192092864
          <idle>-0       [000] d.h1  5159.235171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.239110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.239116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159196088416
          <idle>-0       [000] d.h1  5159.239130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.243104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.243123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159200092560
          <idle>-0       [000] d.h1  5159.243141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.243170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.243190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.243202: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182097 baseclk=4296182097
          <idle>-0       [000] .Ns1  5159.243240: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.243276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.243300: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.243352: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.247114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.247139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159204104336
          <idle>-0       [000] d.h1  5159.247190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.251110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.251137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159208109264
          <idle>-0       [000] d.h1  5159.251154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.255105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.255126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159212094384
          <idle>-0       [000] d.h1  5159.255165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.259107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.259139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159216095904
          <idle>-0       [000] d.h1  5159.259154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.263104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.263123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159220092112
          <idle>-0       [000] d.h1  5159.263172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.267105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.267124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159224093408
          <idle>-0       [000] d.h1  5159.267161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.271105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.271125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159228093952
          <idle>-0       [000] d.h1  5159.271163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.275108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.275127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159232096416
          <idle>-0       [000] d.h1  5159.275173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.279117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.279137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159236105712
          <idle>-0       [000] d.h1  5159.279154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.279194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.279208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.279215: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182106 baseclk=4296182106
          <idle>-0       [000] .Ns1  5159.279227: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.279239: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.279248: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.279276: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.283113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.283139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159240103296
          <idle>-0       [000] d.h1  5159.283190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.287114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.287135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159244102928
          <idle>-0       [000] d.h1  5159.287179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.291110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.291130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159248098832
          <idle>-0       [000] d.h1  5159.291170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.295109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.295129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159252097552
          <idle>-0       [000] d.h1  5159.295147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.295178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.295198: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5159.295207: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182110 baseclk=4296182110
          <idle>-0       [000] .Ns1  5159.295250: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.295286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.295310: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5159.295388: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5159.295415: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.299123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.299151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159256113552
          <idle>-0       [000] d.h1  5159.299206: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.303100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.303121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159260089888
          <idle>-0       [000] d.h1  5159.303166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.307112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.307142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159264114544
          <idle>-0       [000] d.h1  5159.307158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.311105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.311124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159268093504
          <idle>-0       [000] d.h1  5159.311165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.315109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.315128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159272097264
          <idle>-0       [000] d.h1  5159.315169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.319120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.319139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159276108240
          <idle>-0       [000] d.h1  5159.319178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.323108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.323127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159280096512
          <idle>-0       [000] d.h1  5159.323167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.327111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.327130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159284098880
          <idle>-0       [000] d.h1  5159.327169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.331108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.331128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159288096224
          <idle>-0       [000] d.h1  5159.331173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.335104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.335123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159292092240
          <idle>-0       [000] d.h1  5159.335161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.339096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.339115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159296084368
          <idle>-0       [000] d.h1  5159.339166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.343109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.343128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159300097312
          <idle>-0       [000] d.h1  5159.343166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.347127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.347133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159304105376
          <idle>-0       [000] d.h1  5159.347139: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.347150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.347155: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.347177: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182123 baseclk=4296182123
          <idle>-0       [000] .Ns1  5159.347192: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.347205: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.347214: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.347233: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.351115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.351152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159308113728
          <idle>-0       [000] d.h1  5159.351209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.355112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.355133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159312101520
          <idle>-0       [000] d.h1  5159.355177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.359110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.359130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159316099200
          <idle>-0       [000] d.h1  5159.359170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.363109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.363129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159320097664
          <idle>-0       [000] d.h1  5159.363167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.367108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.367128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159324096720
          <idle>-0       [000] d.h1  5159.367165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.371112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.371131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159328099792
          <idle>-0       [000] d.h1  5159.371170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.375109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.375128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159332097248
          <idle>-0       [000] d.h1  5159.375165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.379109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.379128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159336096912
          <idle>-0       [000] d.h1  5159.379166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.383107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.383126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159340095232
          <idle>-0       [000] d.h1  5159.383164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.387110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.387131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159344103632
          <idle>-0       [000] d.h1  5159.387146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.391113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.391132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159348100896
          <idle>-0       [000] d.h1  5159.391169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.395107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.395127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159352095600
          <idle>-0       [000] d.h1  5159.395165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.399110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.399129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159356097776
          <idle>-0       [000] d.h1  5159.399146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.399175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.399194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.399205: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296182136 baseclk=4296182136
          <idle>-0       [000] dNs1  5159.399245: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296182136 baseclk=4296182136
          <idle>-0       [000] dNs1  5159.399255: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296182136 baseclk=4296182136
          <idle>-0       [000] dNs1  5159.399264: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296182136 baseclk=4296182136
          <idle>-0       [000] dNs1  5159.399272: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296182136 baseclk=4296182136
          <idle>-0       [000] .Ns1  5159.399282: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.399318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5159.399367: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5159.399398: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5159.399414: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5159.399427: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5159.399440: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5159.399485: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5159.399501: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.403128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.403155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159360119424
          <idle>-0       [000] d.h1  5159.403227: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.407112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.407134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159364101520
          <idle>-0       [000] d.h1  5159.407154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.407188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.407221: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.407234: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182138 baseclk=4296182138
          <idle>-0       [000] .Ns1  5159.407271: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.407322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.407330: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.407359: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.411116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.411124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159368095088
          <idle>-0       [000] d.h1  5159.411144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.415114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.415121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159372093232
          <idle>-0       [000] d.h1  5159.415137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.419105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.419124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159376093088
          <idle>-0       [000] d.h1  5159.419165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.423093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.423099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159380071760
          <idle>-0       [000] d.h1  5159.423113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.427112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.427132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159384100880
          <idle>-0       [000] d.h1  5159.427171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.431104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.431131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159388103264
          <idle>-0       [000] d.h1  5159.431145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.435103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.435109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159392081200
          <idle>-0       [000] d.h1  5159.435123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.439104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.439123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159396091776
          <idle>-0       [000] d.h1  5159.439161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.443119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.443138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159400107232
          <idle>-0       [000] d.h1  5159.443176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.447109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.447128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159404097248
          <idle>-0       [000] d.h1  5159.447167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.451106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.451125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159408094192
          <idle>-0       [000] d.h1  5159.451143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.451173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.451191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.451216: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182149 baseclk=4296182149
          <idle>-0       [000] .Ns1  5159.451261: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.451276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.451284: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.451302: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.455126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.455151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159412116464
          <idle>-0       [000] d.h1  5159.455205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.459111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.459131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159416099520
          <idle>-0       [000] d.h1  5159.459173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.463109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.463129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159420097456
          <idle>-0       [000] d.h1  5159.463147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.463177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.463196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5159.463208: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182152 baseclk=4296182152
          <idle>-0       [000] .Ns1  5159.463236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.463247: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5159.463280: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.467107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.467116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159424087168
          <idle>-0       [000] d.h1  5159.467136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.471110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.471131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159428099488
          <idle>-0       [000] d.h1  5159.471174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.475112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.475132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159432100912
          <idle>-0       [000] d.h1  5159.475172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.479125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.479145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159436113872
          <idle>-0       [000] d.h1  5159.479184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.483107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.483127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159440095568
          <idle>-0       [000] d.h1  5159.483167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.487125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.487145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159444113840
          <idle>-0       [000] d.h1  5159.487182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.491119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.491139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159448107824
          <idle>-0       [000] d.h1  5159.491170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.495106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.495125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159452094720
          <idle>-0       [000] d.h1  5159.495164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.499105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.499111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159456083808
          <idle>-0       [000] d.h1  5159.499117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.499129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.499133: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5159.499137: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182161 baseclk=4296182161
          <idle>-0       [000] .Ns1  5159.499164: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.499177: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.499185: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5159.499209: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5159.499237: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.503115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.503144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159460107008
          <idle>-0       [000] d.h1  5159.503215: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.507110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.507131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159464099360
          <idle>-0       [000] d.h1  5159.507178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.511110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.511130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159468098608
          <idle>-0       [000] d.h1  5159.511171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.515107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.515127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159472095888
          <idle>-0       [000] d.h1  5159.515168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.519096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.519116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159476084528
          <idle>-0       [000] d.h1  5159.519156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.523124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.523144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159480112272
          <idle>-0       [000] d.h1  5159.523183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.527112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.527131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159484100208
          <idle>-0       [000] d.h1  5159.527170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.531107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.531113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159488085360
          <idle>-0       [000] d.h1  5159.531127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.535104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.535123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159492091920
          <idle>-0       [000] d.h1  5159.535140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.535171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.535189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.535203: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182170 baseclk=4296182170
          <idle>-0       [000] .Ns1  5159.535242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.535278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.535302: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.535389: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.539114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.539140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159496105136
          <idle>-0       [000] d.h1  5159.539193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.543112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.543133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159500101408
          <idle>-0       [000] d.h1  5159.543176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.547090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.547096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159504068816
          <idle>-0       [000] d.h1  5159.547110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.551084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.551091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159508063104
          <idle>-0       [000] d.h1  5159.551105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.555082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.555105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159512077200
          <idle>-0       [000] d.h1  5159.555110: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.555122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.555137: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.555143: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182175 baseclk=4296182175
          <idle>-0       [000] .Ns1  5159.555156: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.555168: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.555176: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.555195: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.559096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.559121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159516085952
          <idle>-0       [000] d.h1  5159.559171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.563081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.563103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159520070672
          <idle>-0       [000] d.h1  5159.563144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.567082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.567102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159524070640
          <idle>-0       [000] d.h1  5159.567141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.571066: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.571073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159528045088
          <idle>-0       [000] d.h1  5159.571087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.575113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.575132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159532101344
          <idle>-0       [000] d.h1  5159.575170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.579115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.579135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159536103536
          <idle>-0       [000] d.h1  5159.579172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.583111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.583130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159540098880
          <idle>-0       [000] d.h1  5159.583168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.587107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.587126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159544095296
          <idle>-0       [000] d.h1  5159.587165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.591108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.591127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159548095776
          <idle>-0       [000] d.h1  5159.591166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.595103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.595123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159552091584
          <idle>-0       [000] d.h1  5159.595163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.599095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.599114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159556082688
          <idle>-0       [000] d.h1  5159.599150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.603104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.603123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159560092192
          <idle>-0       [000] d.h1  5159.603160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.607108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.607127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159564095808
          <idle>-0       [000] d.h1  5159.607166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.611099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.611127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159568087152
          <idle>-0       [000] d.h1  5159.611166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.615109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.615128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159572097344
          <idle>-0       [000] d.h1  5159.615167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.619099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.619118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159576086880
          <idle>-0       [000] d.h1  5159.619157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.623104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.623123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159580092048
          <idle>-0       [000] d.h1  5159.623160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.627106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.627125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159584094592
          <idle>-0       [000] d.h1  5159.627163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.631114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.631133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159588102352
          <idle>-0       [000] d.h1  5159.631169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.635112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.635130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159592099808
          <idle>-0       [000] d.h1  5159.635176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.639104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.639123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159596091904
          <idle>-0       [000] d.h1  5159.639159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.643132: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.643151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159600119968
          <idle>-0       [000] d.h1  5159.643188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.647103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.647122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159604091472
          <idle>-0       [000] d.h1  5159.647159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.651111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.651130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159608098688
          <idle>-0       [000] d.h1  5159.651167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.655109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.655129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159612097568
          <idle>-0       [000] d.h1  5159.655167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.659108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.659127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159616096272
          <idle>-0       [000] d.h1  5159.659144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.659174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.659192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.659204: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182201 baseclk=4296182201
          <idle>-0       [000] .Ns1  5159.659239: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.659275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.659300: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.659353: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.663114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.663139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159620104000
          <idle>-0       [000] d.h1  5159.663161: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.663197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.663223: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.663227: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182202 baseclk=4296182202
          <idle>-0       [000] .Ns1  5159.663256: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.663269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.663276: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.663305: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.667124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.667150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159624115008
          <idle>-0       [000] d.h1  5159.667215: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.671111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.671132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159628099744
          <idle>-0       [000] d.h1  5159.671176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.675106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.675126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159632094256
          <idle>-0       [000] d.h1  5159.675166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.679111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.679131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159636099728
          <idle>-0       [000] d.h1  5159.679164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.683104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.683123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159640091984
          <idle>-0       [000] d.h1  5159.683163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.687108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.687128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159644096144
          <idle>-0       [000] d.h1  5159.687167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.691109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.691129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159648097824
          <idle>-0       [000] d.h1  5159.691180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.695108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.695128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159652097008
          <idle>-0       [000] d.h1  5159.695168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.699109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.699128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159656096960
          <idle>-0       [000] d.h1  5159.699167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.703095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.703114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159660082544
          <idle>-0       [000] d.h1  5159.703131: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.703160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.703178: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5159.703189: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182212 baseclk=4296182212
          <idle>-0       [000] .Ns1  5159.703231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.703266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.703289: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5159.703351: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5159.703428: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.707128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.707157: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159664119648
          <idle>-0       [000] d.h1  5159.707213: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.711100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.711122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159668089536
          <idle>-0       [000] d.h1  5159.711164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.715110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.715131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159672099392
          <idle>-0       [000] d.h1  5159.715171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.719112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.719132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159676100496
          <idle>-0       [000] d.h1  5159.719171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.723108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.723128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159680096688
          <idle>-0       [000] d.h1  5159.723166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.727109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.727129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159684097744
          <idle>-0       [000] d.h1  5159.727168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.731109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.731129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159688097456
          <idle>-0       [000] d.h1  5159.731167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.735106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.735126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159692094672
          <idle>-0       [000] d.h1  5159.735164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.739104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.739136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159696093168
          <idle>-0       [000] d.h1  5159.739150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.743096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.743115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159700084768
          <idle>-0       [000] d.h1  5159.743154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.747106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.747126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159704094688
          <idle>-0       [000] d.h1  5159.747163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.751110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.751129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159708098368
          <idle>-0       [000] d.h1  5159.751167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.755111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.755131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159712099680
          <idle>-0       [000] d.h1  5159.755171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.759107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.759135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159716095264
          <idle>-0       [000] d.h1  5159.759176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.763108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.763128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159720096624
          <idle>-0       [000] d.h1  5159.763145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.763174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.763192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.763207: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182227 baseclk=4296182227
          <idle>-0       [000] .Ns1  5159.763246: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.763282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.763307: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.763365: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.767128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.767154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159724119200
          <idle>-0       [000] d.h1  5159.767205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.771113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.771134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159728102416
          <idle>-0       [000] d.h1  5159.771176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.775103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.775110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159732082592
          <idle>-0       [000] d.h1  5159.775128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.779108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.779128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159736096704
          <idle>-0       [000] d.h1  5159.779167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.783108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.783127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159740096288
          <idle>-0       [000] d.h1  5159.783167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.787109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.787129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159744097664
          <idle>-0       [000] d.h1  5159.787168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.791108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.791127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159748096160
          <idle>-0       [000] d.h1  5159.791145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.791174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.791194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.791205: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182234 baseclk=4296182234
          <idle>-0       [000] .Ns1  5159.791241: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.791277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.791302: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.791372: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.795127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.795153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159752117632
          <idle>-0       [000] d.h1  5159.795204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.799112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.799134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159756101600
          <idle>-0       [000] d.h1  5159.799177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.803110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.803130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159760098768
          <idle>-0       [000] d.h1  5159.803172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.807124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.807131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159764103056
          <idle>-0       [000] d.h1  5159.807146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.811109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.811116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159768087840
          <idle>-0       [000] d.h1  5159.811130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.815096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.815116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159772084800
          <idle>-0       [000] d.h1  5159.815154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.819107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.819138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159776095616
          <idle>-0       [000] d.h1  5159.819152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.823105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.823125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159780093312
          <idle>-0       [000] d.h1  5159.823164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.827109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.827129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159784097536
          <idle>-0       [000] d.h1  5159.827168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.831125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.831132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159788104112
          <idle>-0       [000] d.h1  5159.831146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.835110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.835130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159792098352
          <idle>-0       [000] d.h1  5159.835168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.839103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.839123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159796091568
          <idle>-0       [000] d.h1  5159.839161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.843109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.843128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159800096976
          <idle>-0       [000] d.h1  5159.843166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.847109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.847140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159804112128
          <idle>-0       [000] d.h1  5159.847154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.851129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.851148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159808117440
          <idle>-0       [000] d.h1  5159.851187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.855082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.855101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159812070080
          <idle>-0       [000] d.h1  5159.855140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.859089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.859117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159816089520
          <idle>-0       [000] d.h1  5159.859135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.863086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.863093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159820065696
          <idle>-0       [000] d.h1  5159.863111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.867084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.867091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159824063232
          <idle>-0       [000] d.h1  5159.867097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.867109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.867114: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.867118: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182253 baseclk=4296182253
          <idle>-0       [000] .Ns1  5159.867148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.867163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.867175: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.867197: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.871124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.871134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159828104608
          <idle>-0       [000] d.h1  5159.871158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.875084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.875105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159832073952
          <idle>-0       [000] d.h1  5159.875159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.879147: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.879167: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159836134864
          <idle>-0       [000] d.h1  5159.879184: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.879216: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.879227: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.879234: timer_expire_entry: timer=000000001a0627f8 function=delayed_work_timer_fn now=4296182256 baseclk=4296182256
          <idle>-0       [000] dNs1  5159.879259: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296182256 baseclk=4296182256
          <idle>-0       [000] .Ns1  5159.879264: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.879289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.879305: workqueue_execute_start: work struct 000000006fcdae5f: function vmstat_update
     kworker/0:2-112     [000] ....  5159.879320: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5159.879364: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.883109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.883140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159840102832
          <idle>-0       [000] d.h1  5159.883223: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.887070: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.887077: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159844049568
          <idle>-0       [000] d.h1  5159.887095: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.891087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.891095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159848067328
          <idle>-0       [000] d.h1  5159.891112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.895095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.895105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159852076144
          <idle>-0       [000] d.h1  5159.895122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.899093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.899101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159856073472
          <idle>-0       [000] d.h1  5159.899119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.903087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.903096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159860067664
          <idle>-0       [000] d.h1  5159.903114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.907090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.907098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159864069696
          <idle>-0       [000] d.h1  5159.907105: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.907118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.907124: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5159.907143: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182263 baseclk=4296182263
          <idle>-0       [000] .Ns1  5159.907170: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.907189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.907203: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5159.907234: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5159.907274: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.911099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.911114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159868082208
          <idle>-0       [000] d.h1  5159.911143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.915094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.915102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159872074048
          <idle>-0       [000] d.h1  5159.915121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.919090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.919098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159876070224
          <idle>-0       [000] d.h1  5159.919104: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.919117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.919122: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.919127: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182266 baseclk=4296182266
          <idle>-0       [000] .Ns1  5159.919154: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.919170: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.919182: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5159.919217: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.923107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.923137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159880100064
          <idle>-0       [000] d.h1  5159.923217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.927101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.927123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159884090960
          <idle>-0       [000] d.h1  5159.927167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.931086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.931093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159888065216
          <idle>-0       [000] d.h1  5159.931108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.935081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.935101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159892069968
          <idle>-0       [000] d.h1  5159.935141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.939082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.939102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159896070544
          <idle>-0       [000] d.h1  5159.939140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.943084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.943104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159900072736
          <idle>-0       [000] d.h1  5159.943143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.947082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.947102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159904070400
          <idle>-0       [000] d.h1  5159.947142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.951089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.951095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159908068032
          <idle>-0       [000] d.h1  5159.951110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.955088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.955094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159912066752
          <idle>-0       [000] d.h1  5159.955113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.956946: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.956952: hrtimer_expire_entry: hrtimer=0000000056a168fb function=it_real_fn now=5159913924816
          <idle>-0       [000] dNh1  5159.957205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5159.957237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rdisc next_pid=252 next_prio=120
           rdisc-252     [000] d..2  5159.957594: sched_switch: prev_comm=rdisc prev_pid=252 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.959094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.959107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159916076048
          <idle>-0       [000] d.h1  5159.959138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.963090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.963097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159920069584
          <idle>-0       [000] d.h1  5159.963115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.967072: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.967079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159924051200
          <idle>-0       [000] d.h1  5159.967094: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.971060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.971067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159928039232
          <idle>-0       [000] d.h1  5159.971073: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.971085: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.971099: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5159.971108: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182279 baseclk=4296182279
          <idle>-0       [000] .Ns1  5159.971129: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.971147: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5159.971158: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5159.971183: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.975098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.975124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159932089472
          <idle>-0       [000] d.h1  5159.975146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5159.975199: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5159.975218: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5159.975232: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182280 baseclk=4296182280
          <idle>-0       [000] .Ns1  5159.975279: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5159.975317: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5159.975405: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5159.979066: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.979075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159936046368
          <idle>-0       [000] d.h1  5159.979094: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.983094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.983101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159940073488
          <idle>-0       [000] d.h1  5159.983117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.987081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.987102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159944070672
          <idle>-0       [000] d.h1  5159.987142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.991086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.991106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159948074816
          <idle>-0       [000] d.h1  5159.991147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.995085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.995104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159952073584
          <idle>-0       [000] d.h1  5159.995143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5159.999082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5159.999101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159956069984
          <idle>-0       [000] d.h1  5159.999138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.003106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.003125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159960094416
          <idle>-0       [000] d.h1  5160.003163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.007096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.007102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159964074800
          <idle>-0       [000] d.h1  5160.007116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.011096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.011115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159968084368
          <idle>-0       [000] d.h1  5160.011152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.015108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.015127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159972096512
          <idle>-0       [000] d.h1  5160.015165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.019109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.019129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159976097712
          <idle>-0       [000] d.h1  5160.019171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.023119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.023153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159980108576
          <idle>-0       [000] d.h1  5160.023168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.027101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.027107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159984079664
          <idle>-0       [000] d.h1  5160.027121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.031104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.031123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159988092544
          <idle>-0       [000] d.h1  5160.031161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.035095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.035115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159992083904
          <idle>-0       [000] d.h1  5160.035153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.039109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.039128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5159996097392
          <idle>-0       [000] d.h1  5160.039165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.043106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.043125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160000094800
          <idle>-0       [000] d.h1  5160.043174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.047106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.047136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160004108704
          <idle>-0       [000] d.h1  5160.047142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.047153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.047158: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.047162: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182298 baseclk=4296182298
          <idle>-0       [000] .Ns1  5160.047187: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.047200: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.047209: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.047241: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.051115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.051142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160008106624
          <idle>-0       [000] d.h1  5160.051196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.055113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.055134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160012101952
          <idle>-0       [000] d.h1  5160.055178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.059124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.059144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160016112960
          <idle>-0       [000] d.h1  5160.059185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.063102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.063109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160020081040
          <idle>-0       [000] d.h1  5160.063123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.067104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.067123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160024092224
          <idle>-0       [000] d.h1  5160.067162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.071123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.071142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160028111312
          <idle>-0       [000] d.h1  5160.071177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.075104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.075123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160032092224
          <idle>-0       [000] d.h1  5160.075140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.075170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.075189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.075201: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182305 baseclk=4296182305
          <idle>-0       [000] .Ns1  5160.075240: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.075276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.075300: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.075352: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.079125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.079151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160036115984
          <idle>-0       [000] d.h1  5160.079200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.083112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.083132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160040100704
          <idle>-0       [000] d.h1  5160.083175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.087111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.087131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160044099920
          <idle>-0       [000] d.h1  5160.087179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.091105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.091126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160048094448
          <idle>-0       [000] d.h1  5160.091164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.095109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.095129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160052098144
          <idle>-0       [000] d.h1  5160.095167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.099109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.099129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160056098032
          <idle>-0       [000] d.h1  5160.099167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.103106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.103125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160060094336
          <idle>-0       [000] d.h1  5160.103163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.107112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.107118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160064090688
          <idle>-0       [000] d.h1  5160.107132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.111104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.111123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160068092512
          <idle>-0       [000] d.h1  5160.111140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.111170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.111189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5160.111214: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182314 baseclk=4296182314
          <idle>-0       [000] .Ns1  5160.111268: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.111280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.111288: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5160.111320: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5160.111354: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.115121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.115150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160072112464
          <idle>-0       [000] d.h1  5160.115213: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.119111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.119136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160076108080
          <idle>-0       [000] d.h1  5160.119152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.123115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.123135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160080104000
          <idle>-0       [000] d.h1  5160.123174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.127106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.127126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160084094912
          <idle>-0       [000] d.h1  5160.127164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.131109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.131128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160088097424
          <idle>-0       [000] d.h1  5160.131167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.135105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.135124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160092093456
          <idle>-0       [000] d.h1  5160.135162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.139108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.139128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160096096864
          <idle>-0       [000] d.h1  5160.139165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.143108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.143128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160100097088
          <idle>-0       [000] d.h1  5160.143165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.147111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.147130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160104099616
          <idle>-0       [000] d.h1  5160.147169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.151108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.151127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160108096576
          <idle>-0       [000] d.h1  5160.151167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.155096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.155115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160112084832
          <idle>-0       [000] d.h1  5160.155153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.159108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.159128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160116097040
          <idle>-0       [000] d.h1  5160.159166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.163109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.163128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160120097760
          <idle>-0       [000] d.h1  5160.163166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.167111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.167131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160124099664
          <idle>-0       [000] d.h1  5160.167168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.171118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.171138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160128107568
          <idle>-0       [000] d.h1  5160.171176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.175111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.175130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160132099456
          <idle>-0       [000] d.h1  5160.175148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.175176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.175196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.175208: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182330 baseclk=4296182330
          <idle>-0       [000] .Ns1  5160.175238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.175251: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.175260: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.175289: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.179115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.179141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160136106064
          <idle>-0       [000] d.h1  5160.179163: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.179201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.179221: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.179247: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182331 baseclk=4296182331
          <idle>-0       [000] .Ns1  5160.179283: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.179321: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.179344: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.179394: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.183095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.183103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160140074464
          <idle>-0       [000] d.h1  5160.183124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.187108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.187129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160144097136
          <idle>-0       [000] d.h1  5160.187171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.191110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.191130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160148099472
          <idle>-0       [000] d.h1  5160.191170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.195110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.195130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160152099056
          <idle>-0       [000] d.h1  5160.195169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.199108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.199128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160156096736
          <idle>-0       [000] d.h1  5160.199145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.199175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.199195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.199220: timer_expire_entry: timer=000000000ed5fb1a function=delayed_work_timer_fn now=4296182336 baseclk=4296182336
          <idle>-0       [000] .Ns1  5160.199256: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.199293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.199316: workqueue_execute_start: work struct 0000000094882d62: function ovs_dp_masks_rebalance [openvswitch]
     kworker/0:2-112     [000] d..2  5160.199380: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.203116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.203141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160160106224
          <idle>-0       [000] d.h1  5160.203191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.207110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.207130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160164098992
          <idle>-0       [000] d.h1  5160.207172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.211115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.211122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160168094048
          <idle>-0       [000] d.h1  5160.211136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.215130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.215149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160172118256
          <idle>-0       [000] d.h1  5160.215188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.219121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.219142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160176110752
          <idle>-0       [000] d.h1  5160.219187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.223108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.223127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160180096480
          <idle>-0       [000] d.h1  5160.223167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.227088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.227095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160184067072
          <idle>-0       [000] d.h1  5160.227116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.231084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.231091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160188063168
          <idle>-0       [000] d.h1  5160.231105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.235087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.235095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160192066624
          <idle>-0       [000] d.h1  5160.235112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.239090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.239099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160196070128
          <idle>-0       [000] d.h1  5160.239124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.243095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.243104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160200075376
          <idle>-0       [000] d.h1  5160.243131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.247093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.247100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160204072512
          <idle>-0       [000] d.h1  5160.247121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.251088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.251097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160208067824
          <idle>-0       [000] d.h1  5160.251119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.255089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.255096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160212068080
          <idle>-0       [000] d.h1  5160.255114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.259084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.259091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160216063344
          <idle>-0       [000] d.h1  5160.259106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.263105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.263123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160220092832
          <idle>-0       [000] d.h1  5160.263155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.267100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.267106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160224078848
          <idle>-0       [000] d.h1  5160.267120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.271102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.271120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160228089936
          <idle>-0       [000] d.h1  5160.271158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.275108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.275128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160232096976
          <idle>-0       [000] d.h1  5160.275165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.279111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.279136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160236108560
          <idle>-0       [000] d.h1  5160.279150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.283107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.283126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160240094976
          <idle>-0       [000] d.h1  5160.283144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.283174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.283199: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.283219: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182357 baseclk=4296182357
          <idle>-0       [000] .Ns1  5160.283255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.283277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.283293: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.283331: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.287117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.287143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160244107456
          <idle>-0       [000] d.h1  5160.287205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.291111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.291131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160248099984
          <idle>-0       [000] d.h1  5160.291172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.295120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.295140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160252108464
          <idle>-0       [000] d.h1  5160.295178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.299108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.299127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160256096448
          <idle>-0       [000] d.h1  5160.299168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.303104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.303124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160260093072
          <idle>-0       [000] d.h1  5160.303142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.303170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.303189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.303212: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182362 baseclk=4296182362
          <idle>-0       [000] .Ns1  5160.303248: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.303287: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.303295: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.303326: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.307124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.307150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160264114720
          <idle>-0       [000] d.h1  5160.307214: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.311107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.311129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160268096800
          <idle>-0       [000] d.h1  5160.311172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.315110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.315131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160272099584
          <idle>-0       [000] d.h1  5160.315149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.315180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.315198: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5160.315224: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182365 baseclk=4296182365
          <idle>-0       [000] .Ns1  5160.315241: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.315253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.315261: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5160.315301: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5160.315339: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.319108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.319119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160276088352
          <idle>-0       [000] d.h1  5160.319144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.323110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.323131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160280099776
          <idle>-0       [000] d.h1  5160.323176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.327110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.327140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160284112592
          <idle>-0       [000] d.h1  5160.327156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.331103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.331109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160288081664
          <idle>-0       [000] d.h1  5160.331124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.335103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.335123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160292092064
          <idle>-0       [000] d.h1  5160.335163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.339085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.339105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160296073936
          <idle>-0       [000] d.h1  5160.339144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.343108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.343128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160300096960
          <idle>-0       [000] d.h1  5160.343167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.347108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.347128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160304096720
          <idle>-0       [000] d.h1  5160.347167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.351107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.351127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160308095824
          <idle>-0       [000] d.h1  5160.351165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.355106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.355126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160312094960
          <idle>-0       [000] d.h1  5160.355165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.359108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.359128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160316096848
          <idle>-0       [000] d.h1  5160.359165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.363107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.363127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160320096048
          <idle>-0       [000] d.h1  5160.363165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.367121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.367141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160324110256
          <idle>-0       [000] d.h1  5160.367179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.371108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.371128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160328096816
          <idle>-0       [000] d.h1  5160.371166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.375106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.375126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160332094608
          <idle>-0       [000] d.h1  5160.375163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.379108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.379127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160336096480
          <idle>-0       [000] d.h1  5160.379166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.383111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.383130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160340099456
          <idle>-0       [000] d.h1  5160.383168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.387088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.387094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160344066720
          <idle>-0       [000] d.h1  5160.387100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.387112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.387117: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.387121: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182383 baseclk=4296182383
          <idle>-0       [000] .Ns1  5160.387151: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.387164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.387174: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.387195: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.391116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.391142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160348106528
          <idle>-0       [000] d.h1  5160.391193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.395119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.395140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160352108384
          <idle>-0       [000] d.h1  5160.395183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.399118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.399138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160356106832
          <idle>-0       [000] d.h1  5160.399177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.403122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.403128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160360100704
          <idle>-0       [000] d.h1  5160.403142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.407079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.407100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160364068592
          <idle>-0       [000] d.h1  5160.407138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.411089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.411109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160368077600
          <idle>-0       [000] d.h1  5160.411147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.415079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.415098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160372067056
          <idle>-0       [000] d.h1  5160.415136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.419081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.419111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160376083232
          <idle>-0       [000] d.h1  5160.419124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.423103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.423123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160380091808
          <idle>-0       [000] d.h1  5160.423140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.423176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.423181: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.423187: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296182392 baseclk=4296182392
          <idle>-0       [000] dNs1  5160.423214: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296182392 baseclk=4296182392
          <idle>-0       [000] dNs1  5160.423218: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296182392 baseclk=4296182392
          <idle>-0       [000] dNs1  5160.423222: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296182392 baseclk=4296182392
          <idle>-0       [000] dNs1  5160.423225: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296182392 baseclk=4296182392
          <idle>-0       [000] .Ns1  5160.423228: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.423241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5160.423261: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5160.423272: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5160.423278: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5160.423283: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5160.423288: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5160.423312: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5160.423330: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.427113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.427126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160384093312
          <idle>-0       [000] d.h1  5160.427147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.431107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.431128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160388096272
          <idle>-0       [000] d.h1  5160.431147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.431181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.431201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.431213: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182394 baseclk=4296182394
          <idle>-0       [000] .Ns1  5160.431250: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.431287: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.431312: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.431387: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.435132: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.435141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160392111584
          <idle>-0       [000] d.h1  5160.435160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.439105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.439113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160396084720
          <idle>-0       [000] d.h1  5160.439129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.443121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.443141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160400109728
          <idle>-0       [000] d.h1  5160.443182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.447111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.447131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160404099808
          <idle>-0       [000] d.h1  5160.447171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.451108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.451128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160408097152
          <idle>-0       [000] d.h1  5160.451168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.455117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.455138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160412106352
          <idle>-0       [000] d.h1  5160.455177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.459108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.459127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160416096448
          <idle>-0       [000] d.h1  5160.459168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.463106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.463126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160420094640
          <idle>-0       [000] d.h1  5160.463165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.467109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.467128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160424097456
          <idle>-0       [000] d.h1  5160.467168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.471109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.471129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160428097472
          <idle>-0       [000] d.h1  5160.471168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.475108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.475137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160432109392
          <idle>-0       [000] d.h1  5160.475151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.479116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.479135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160436104096
          <idle>-0       [000] d.h1  5160.479173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.483110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.483130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160440098656
          <idle>-0       [000] d.h1  5160.483177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.487105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.487124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160444093312
          <idle>-0       [000] d.h1  5160.487141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.487171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.487190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5160.487202: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182408 baseclk=4296182408
          <idle>-0       [000] .Ns1  5160.487236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.487248: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5160.487285: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.491121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.491131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160448101136
          <idle>-0       [000] d.h1  5160.491138: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.491153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.491158: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.491161: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182409 baseclk=4296182409
          <idle>-0       [000] .Ns1  5160.491189: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.491202: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.491210: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.491227: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.495114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.495140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160452105184
          <idle>-0       [000] d.h1  5160.495192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.499111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.499133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160456101392
          <idle>-0       [000] d.h1  5160.499176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.503111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.503131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160460099680
          <idle>-0       [000] d.h1  5160.503171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.507109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.507129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160464098000
          <idle>-0       [000] d.h1  5160.507169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.511108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.511128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160468096944
          <idle>-0       [000] d.h1  5160.511168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.515122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.515129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160472101056
          <idle>-0       [000] d.h1  5160.515143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.519105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.519125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160476093728
          <idle>-0       [000] d.h1  5160.519142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.519172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.519191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5160.519222: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182416 baseclk=4296182416
          <idle>-0       [000] .Ns1  5160.519270: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.519307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.519332: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5160.519389: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5160.519421: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.523128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.523158: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160480120704
          <idle>-0       [000] d.h1  5160.523219: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.527114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.527135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160484103296
          <idle>-0       [000] d.h1  5160.527186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.531121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.531142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160488110032
          <idle>-0       [000] d.h1  5160.531183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.535110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.535130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160492099344
          <idle>-0       [000] d.h1  5160.535170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.539108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.539129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160496097440
          <idle>-0       [000] d.h1  5160.539166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.543103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.543123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160500092544
          <idle>-0       [000] d.h1  5160.543162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.547105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.547125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160504093616
          <idle>-0       [000] d.h1  5160.547163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.551126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.551145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160508114384
          <idle>-0       [000] d.h1  5160.551184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.555110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.555129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160512098400
          <idle>-0       [000] d.h1  5160.555167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.559112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.559132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160516100880
          <idle>-0       [000] d.h1  5160.559150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.559194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.559217: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.559224: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182426 baseclk=4296182426
          <idle>-0       [000] .Ns1  5160.559239: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.559255: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.559265: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.559297: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.563115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.563142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160520106112
          <idle>-0       [000] d.h1  5160.563194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.567122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.567146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160524118608
          <idle>-0       [000] d.h1  5160.567162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.571104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.571125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160528093824
          <idle>-0       [000] d.h1  5160.571165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.575110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.575130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160532098976
          <idle>-0       [000] d.h1  5160.575169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.579121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.579141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160536109984
          <idle>-0       [000] d.h1  5160.579179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.583104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.583124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160540092880
          <idle>-0       [000] d.h1  5160.583162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.587125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.587145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160544114016
          <idle>-0       [000] d.h1  5160.587182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.591088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.591094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160548066960
          <idle>-0       [000] d.h1  5160.591109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.595104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.595124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160552092880
          <idle>-0       [000] d.h1  5160.595141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.595170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.595189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.595202: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182435 baseclk=4296182435
          <idle>-0       [000] .Ns1  5160.595230: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.595242: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.595250: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.595269: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.599114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.599139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160556104320
          <idle>-0       [000] d.h1  5160.599190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.603109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.603130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160560098160
          <idle>-0       [000] d.h1  5160.603172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.607111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.607131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160564099904
          <idle>-0       [000] d.h1  5160.607169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.611107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.611127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160568095776
          <idle>-0       [000] d.h1  5160.611165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.615108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.615128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160572097120
          <idle>-0       [000] d.h1  5160.615166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.619105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.619111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160576083696
          <idle>-0       [000] d.h1  5160.619125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.623104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.623124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160580092528
          <idle>-0       [000] d.h1  5160.623161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.627111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.627131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160584099472
          <idle>-0       [000] d.h1  5160.627169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.631107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.631127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160588095744
          <idle>-0       [000] d.h1  5160.631165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.635107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.635127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160592095424
          <idle>-0       [000] d.h1  5160.635166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.639107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.639127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160596095744
          <idle>-0       [000] d.h1  5160.639165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.643109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.643133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160600105056
          <idle>-0       [000] d.h1  5160.643146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.647117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.647124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160604096096
          <idle>-0       [000] d.h1  5160.647137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.651103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.651123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160608091712
          <idle>-0       [000] d.h1  5160.651160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.655108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.655128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160612097184
          <idle>-0       [000] d.h1  5160.655175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.659096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.659115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160616084224
          <idle>-0       [000] d.h1  5160.659151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.663102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.663121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160620090192
          <idle>-0       [000] d.h1  5160.663158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.667107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.667126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160624095136
          <idle>-0       [000] d.h1  5160.667163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.671107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.671126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160628095248
          <idle>-0       [000] d.h1  5160.671164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.675105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.675124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160632093216
          <idle>-0       [000] d.h1  5160.675162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.679110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.679130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160636098704
          <idle>-0       [000] d.h1  5160.679167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.683082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.683101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160640070448
          <idle>-0       [000] d.h1  5160.683138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.687079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.687086: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160644058048
          <idle>-0       [000] d.h1  5160.687091: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.687102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.687123: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.687128: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182458 baseclk=4296182458
          <idle>-0       [000] .Ns1  5160.687140: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.687152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.687160: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.687189: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.691098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.691107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160648077504
          <idle>-0       [000] d.h1  5160.691127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.695084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.695106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160652073968
          <idle>-0       [000] d.h1  5160.695148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.699085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.699105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160656073936
          <idle>-0       [000] d.h1  5160.699123: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.699152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.699184: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.699207: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182461 baseclk=4296182461
          <idle>-0       [000] .Ns1  5160.699219: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.699231: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.699239: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.699257: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.703099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.703125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160660089472
          <idle>-0       [000] d.h1  5160.703181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.707084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.707091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160664063440
          <idle>-0       [000] d.h1  5160.707107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.711104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.711125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160668093936
          <idle>-0       [000] d.h1  5160.711167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.715096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.715115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160672084208
          <idle>-0       [000] d.h1  5160.715156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.719105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.719111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160676083568
          <idle>-0       [000] d.h1  5160.719126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.723103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.723123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160680091856
          <idle>-0       [000] d.h1  5160.723140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.723170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.723189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5160.723214: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182467 baseclk=4296182467
          <idle>-0       [000] .Ns1  5160.723261: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.723296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.723320: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5160.723379: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5160.723410: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.727123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.727132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160684102528
          <idle>-0       [000] d.h1  5160.727154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.731109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.731130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160688098720
          <idle>-0       [000] d.h1  5160.731174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.735111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.735132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160692100576
          <idle>-0       [000] d.h1  5160.735172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.739100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.739120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160696089168
          <idle>-0       [000] d.h1  5160.739150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.743116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.743136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160700105248
          <idle>-0       [000] d.h1  5160.743175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.747105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.747125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160704093696
          <idle>-0       [000] d.h1  5160.747163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.751109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.751129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160708097744
          <idle>-0       [000] d.h1  5160.751168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.755108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.755128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160712097088
          <idle>-0       [000] d.h1  5160.755166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.759117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.759136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160716105456
          <idle>-0       [000] d.h1  5160.759175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.763083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.763103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160720071920
          <idle>-0       [000] d.h1  5160.763141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.767108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.767128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160724096864
          <idle>-0       [000] d.h1  5160.767158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.771113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.771133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160728102128
          <idle>-0       [000] d.h1  5160.771170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.775107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.775126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160732095824
          <idle>-0       [000] d.h1  5160.775165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.779125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.779144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160736113696
          <idle>-0       [000] d.h1  5160.779182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.783086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.783093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160740065424
          <idle>-0       [000] d.h1  5160.783108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.787090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.787096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160744068864
          <idle>-0       [000] d.h1  5160.787111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.791084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.791091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160748063200
          <idle>-0       [000] d.h1  5160.791105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.795084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.795090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160752062688
          <idle>-0       [000] d.h1  5160.795104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.799083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.799089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160756062064
          <idle>-0       [000] d.h1  5160.799104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.803083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.803089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160760061456
          <idle>-0       [000] d.h1  5160.803094: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.803106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.803111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.803115: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182487 baseclk=4296182487
          <idle>-0       [000] .Ns1  5160.803144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.803157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.803166: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.803186: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.807101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.807110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160764080816
          <idle>-0       [000] d.h1  5160.807128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.811085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.811091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160768063712
          <idle>-0       [000] d.h1  5160.811107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.815083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.815090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160772062096
          <idle>-0       [000] d.h1  5160.815095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.815107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.815112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.815115: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182490 baseclk=4296182490
          <idle>-0       [000] .Ns1  5160.815144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.815156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.815163: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.815192: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.819094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.819103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160776074096
          <idle>-0       [000] d.h1  5160.819124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.823088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.823095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160780067568
          <idle>-0       [000] d.h1  5160.823111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.827083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.827090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160784062080
          <idle>-0       [000] d.h1  5160.827105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.831083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.831089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160788061664
          <idle>-0       [000] d.h1  5160.831103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.835084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.835090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160792062576
          <idle>-0       [000] d.h1  5160.835105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.839083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.839090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160796061968
          <idle>-0       [000] d.h1  5160.839104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.843083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.843089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160800061600
          <idle>-0       [000] d.h1  5160.843103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.847082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.847089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160804061072
          <idle>-0       [000] d.h1  5160.847103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.851083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.851090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160808062128
          <idle>-0       [000] d.h1  5160.851104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.855105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.855112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160812084752
          <idle>-0       [000] d.h1  5160.855127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.859089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.859096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160816068080
          <idle>-0       [000] d.h1  5160.859110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.863087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.863094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160820066048
          <idle>-0       [000] d.h1  5160.863108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.867084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.867091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160824063008
          <idle>-0       [000] d.h1  5160.867105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.871082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.871088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160828060816
          <idle>-0       [000] d.h1  5160.871094: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.871105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.871121: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.871128: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296182504 baseclk=4296182504
          <idle>-0       [000] .Ns1  5160.871146: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.871162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.871173: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5160.871213: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.875098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.875106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160832077120
          <idle>-0       [000] d.h1  5160.875125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.879089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.879096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160836067952
          <idle>-0       [000] d.h1  5160.879112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.883087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.883094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160840066096
          <idle>-0       [000] d.h1  5160.883108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.887086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.887093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160844065024
          <idle>-0       [000] d.h1  5160.887107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.891099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.891105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160848077648
          <idle>-0       [000] d.h1  5160.891119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.895083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.895089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160852061440
          <idle>-0       [000] d.h1  5160.895103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.899082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.899089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160856061216
          <idle>-0       [000] d.h1  5160.899103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.903082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.903089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160860061200
          <idle>-0       [000] d.h1  5160.903103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.907084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.907090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160864062352
          <idle>-0       [000] d.h1  5160.907096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.907107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.907122: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.907128: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182513 baseclk=4296182513
          <idle>-0       [000] .Ns1  5160.907144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.907156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.907165: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5160.907183: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.911063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.911071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160868042224
          <idle>-0       [000] d.h1  5160.911089: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.915060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.915066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160872038464
          <idle>-0       [000] d.h1  5160.915081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.919084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.919091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160876063040
          <idle>-0       [000] d.h1  5160.919105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.923084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.923090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160880062480
          <idle>-0       [000] d.h1  5160.923105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.927083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.927089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160884061552
          <idle>-0       [000] d.h1  5160.927095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.927106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.927111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5160.927116: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182518 baseclk=4296182518
          <idle>-0       [000] .Ns1  5160.927144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.927156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.927165: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5160.927200: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5160.927235: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.931092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.931102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160888072160
          <idle>-0       [000] d.h1  5160.931124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.935083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.935104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160892072896
          <idle>-0       [000] d.h1  5160.935142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.939081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.939101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160896069760
          <idle>-0       [000] d.h1  5160.939133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.943081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.943101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160900069888
          <idle>-0       [000] d.h1  5160.943124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.943136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.943150: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5160.943156: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182522 baseclk=4296182522
          <idle>-0       [000] .Ns1  5160.943170: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.943182: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5160.943190: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5160.943222: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5160.947120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.947147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160904111344
          <idle>-0       [000] d.h1  5160.947213: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.951110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.951132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160908099744
          <idle>-0       [000] d.h1  5160.951175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.955113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.955133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160912101968
          <idle>-0       [000] d.h1  5160.955173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.959111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.959131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160916099760
          <idle>-0       [000] d.h1  5160.959183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.963109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.963129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160920097568
          <idle>-0       [000] d.h1  5160.963168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.967112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.967132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160924101296
          <idle>-0       [000] d.h1  5160.967171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.971088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.971108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160928076592
          <idle>-0       [000] d.h1  5160.971146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.975085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.975104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160932072960
          <idle>-0       [000] d.h1  5160.975142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.979085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.979104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160936073184
          <idle>-0       [000] d.h1  5160.979141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.983084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.983103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160940072208
          <idle>-0       [000] d.h1  5160.983140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.987080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.987100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160944068656
          <idle>-0       [000] d.h1  5160.987137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.991082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.991111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160948070416
          <idle>-0       [000] d.h1  5160.991150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.995082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.995101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160952070288
          <idle>-0       [000] d.h1  5160.995138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5160.999065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5160.999071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160956043984
          <idle>-0       [000] d.h1  5160.999077: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5160.999088: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5160.999105: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5160.999110: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182536 baseclk=4296182536
          <idle>-0       [000] .Ns1  5160.999123: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5160.999135: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5160.999174: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.003117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.003146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160960109504
          <idle>-0       [000] d.h1  5161.003205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.007107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.007128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160964096688
          <idle>-0       [000] d.h1  5161.007170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.011113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.011133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160968102272
          <idle>-0       [000] d.h1  5161.011151: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.011182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.011200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.011213: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182539 baseclk=4296182539
          <idle>-0       [000] .Ns1  5161.011262: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.011275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.011283: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.011301: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.015124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.015149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160972114416
          <idle>-0       [000] d.h1  5161.015200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.019107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.019128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160976096272
          <idle>-0       [000] d.h1  5161.019173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.023106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.023126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160980095088
          <idle>-0       [000] d.h1  5161.023167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.027106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.027113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160984085072
          <idle>-0       [000] d.h1  5161.027127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.031106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.031126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160988094736
          <idle>-0       [000] d.h1  5161.031165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.035111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.035131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160992099648
          <idle>-0       [000] d.h1  5161.035170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.039118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.039125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5160996097248
          <idle>-0       [000] d.h1  5161.039139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.043103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.043123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161000091792
          <idle>-0       [000] d.h1  5161.043161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.047111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.047131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161004099840
          <idle>-0       [000] d.h1  5161.047170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.051112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.051132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161008101232
          <idle>-0       [000] d.h1  5161.051164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.055096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.055115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161012084496
          <idle>-0       [000] d.h1  5161.055154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.059112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.059118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161016091024
          <idle>-0       [000] d.h1  5161.059133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.063106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.063125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161020094720
          <idle>-0       [000] d.h1  5161.063163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.067108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.067128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161024097216
          <idle>-0       [000] d.h1  5161.067166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.071111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.071130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161028099104
          <idle>-0       [000] d.h1  5161.071147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.071175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.071207: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.071218: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182554 baseclk=4296182554
          <idle>-0       [000] .Ns1  5161.071255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.071289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.071313: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.071398: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.075115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.075141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161032105632
          <idle>-0       [000] d.h1  5161.075193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.079115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.079138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161036110016
          <idle>-0       [000] d.h1  5161.079154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.083108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.083128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161040096848
          <idle>-0       [000] d.h1  5161.083169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.087112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.087133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161044101632
          <idle>-0       [000] d.h1  5161.087173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.091112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.091132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161048101072
          <idle>-0       [000] d.h1  5161.091164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.095105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.095125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161052094128
          <idle>-0       [000] d.h1  5161.095164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.099120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.099140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161056109120
          <idle>-0       [000] d.h1  5161.099179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.103111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.103131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161060099536
          <idle>-0       [000] d.h1  5161.103169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.107112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.107132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161064100624
          <idle>-0       [000] d.h1  5161.107170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.111109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.111116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161068088096
          <idle>-0       [000] d.h1  5161.111130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.115106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.115125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161072094240
          <idle>-0       [000] d.h1  5161.115142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.115172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.115190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.115215: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182565 baseclk=4296182565
          <idle>-0       [000] .Ns1  5161.115255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.115289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.115313: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.115364: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.119128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.119154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161076119248
          <idle>-0       [000] d.h1  5161.119204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.123120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.123127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161080099008
          <idle>-0       [000] d.h1  5161.123142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.127105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.127125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161084094016
          <idle>-0       [000] d.h1  5161.127165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.131100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.131129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161088089216
          <idle>-0       [000] d.h1  5161.131147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.131177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.131197: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5161.131209: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182569 baseclk=4296182569
          <idle>-0       [000] .Ns1  5161.131265: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.131277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.131285: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5161.131309: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5161.131337: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.135107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.135116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161092086432
          <idle>-0       [000] d.h1  5161.135138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.139111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.139132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161096100768
          <idle>-0       [000] d.h1  5161.139176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.143111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.143118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161100090144
          <idle>-0       [000] d.h1  5161.143132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.147106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.147127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161104095328
          <idle>-0       [000] d.h1  5161.147167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.151111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.151131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161108099824
          <idle>-0       [000] d.h1  5161.151170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.155110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.155129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161112098384
          <idle>-0       [000] d.h1  5161.155159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.159106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.159126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161116094480
          <idle>-0       [000] d.h1  5161.159165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.163109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.163128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161120097392
          <idle>-0       [000] d.h1  5161.163168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.167112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.167131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161124100272
          <idle>-0       [000] d.h1  5161.167170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.171111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.171130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161128098976
          <idle>-0       [000] d.h1  5161.171168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.175105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.175111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161132083312
          <idle>-0       [000] d.h1  5161.175125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.179106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.179126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161136094688
          <idle>-0       [000] d.h1  5161.179164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.183110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.183130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161140098736
          <idle>-0       [000] d.h1  5161.183168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.187108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.187114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161144086480
          <idle>-0       [000] d.h1  5161.187129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.191106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.191126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161148094768
          <idle>-0       [000] d.h1  5161.191164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.195112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.195132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161152100784
          <idle>-0       [000] d.h1  5161.195170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.199111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.199140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161156112928
          <idle>-0       [000] d.h1  5161.199146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.199158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.199162: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.199166: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182586 baseclk=4296182586
          <idle>-0       [000] .Ns1  5161.199196: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.199208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.199216: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.199245: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.203096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.203104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161160075248
          <idle>-0       [000] d.h1  5161.203124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.207113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.207135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161164103120
          <idle>-0       [000] d.h1  5161.207179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.211113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.211134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161168102544
          <idle>-0       [000] d.h1  5161.211174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.215092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.215112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161172081424
          <idle>-0       [000] d.h1  5161.215152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.219130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.219149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161176118624
          <idle>-0       [000] d.h1  5161.219166: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.219197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.219216: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.219240: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182591 baseclk=4296182591
          <idle>-0       [000] .Ns1  5161.219278: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.219313: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.219352: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.219403: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.223118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.223144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161180108480
          <idle>-0       [000] d.h1  5161.223164: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.223202: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.223222: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5161.223250: timer_expire_entry: timer=00000000af26d0f5 function=writeout_period now=4296182592 baseclk=4296182592
          <idle>-0       [000] ..s1  5161.223288: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.227117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.227139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161184106400
          <idle>-0       [000] d.h1  5161.227183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.231113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.231133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161188102080
          <idle>-0       [000] d.h1  5161.231173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.235113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.235133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161192101344
          <idle>-0       [000] d.h1  5161.235173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.239108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.239128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161196097088
          <idle>-0       [000] d.h1  5161.239169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.243108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.243114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161200086656
          <idle>-0       [000] d.h1  5161.243129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.247105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.247124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161204093792
          <idle>-0       [000] d.h1  5161.247163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.251107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.251126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161208095264
          <idle>-0       [000] d.h1  5161.251165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.255108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.255128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161212097120
          <idle>-0       [000] d.h1  5161.255167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.259108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.259128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161216097136
          <idle>-0       [000] d.h1  5161.259167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.263111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.263130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161220099504
          <idle>-0       [000] d.h1  5161.263179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.267106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.267134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161224106528
          <idle>-0       [000] d.h1  5161.267148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.271102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.271108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161228080704
          <idle>-0       [000] d.h1  5161.271123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.275107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.275136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161232095936
          <idle>-0       [000] d.h1  5161.275176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.279120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.279126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161236098352
          <idle>-0       [000] d.h1  5161.279140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.283114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.283120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161240092464
          <idle>-0       [000] d.h1  5161.283134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.287105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.287111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161244083520
          <idle>-0       [000] d.h1  5161.287125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.291096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.291116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161248084864
          <idle>-0       [000] d.h1  5161.291153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.295127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.295147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161252116112
          <idle>-0       [000] d.h1  5161.295186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.299105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.299125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161256093824
          <idle>-0       [000] d.h1  5161.299163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.303107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.303126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161260095616
          <idle>-0       [000] d.h1  5161.303163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.307109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.307128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161264097296
          <idle>-0       [000] d.h1  5161.307178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.311108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.311128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161268096928
          <idle>-0       [000] d.h1  5161.311166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.315101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.315120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161272089168
          <idle>-0       [000] d.h1  5161.315157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.319108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.319128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161276097264
          <idle>-0       [000] d.h1  5161.319168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.323105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.323124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161280093264
          <idle>-0       [000] d.h1  5161.323142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.323171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.323190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.323202: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182617 baseclk=4296182617
          <idle>-0       [000] .Ns1  5161.323234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.323247: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.323256: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.323276: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.327135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.327162: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161284126752
          <idle>-0       [000] d.h1  5161.327196: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.327210: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.327223: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.327228: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182618 baseclk=4296182618
          <idle>-0       [000] .Ns1  5161.327238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.327252: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.327260: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.327289: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.331112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.331139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161288103648
          <idle>-0       [000] d.h1  5161.331190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.335112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.335119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161292091008
          <idle>-0       [000] d.h1  5161.335125: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.335138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.335142: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5161.335146: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182620 baseclk=4296182620
          <idle>-0       [000] .Ns1  5161.335175: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.335187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.335195: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5161.335217: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5161.335244: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.339115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.339144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161296106656
          <idle>-0       [000] d.h1  5161.339200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.343100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.343122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161300089952
          <idle>-0       [000] d.h1  5161.343173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.347101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.347108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161304080240
          <idle>-0       [000] d.h1  5161.347123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.351107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.351127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161308095504
          <idle>-0       [000] d.h1  5161.351165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.355108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.355128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161312096496
          <idle>-0       [000] d.h1  5161.355164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.359119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.359139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161316107920
          <idle>-0       [000] d.h1  5161.359177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.363108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.363128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161320096992
          <idle>-0       [000] d.h1  5161.363166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.367113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.367132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161324100944
          <idle>-0       [000] d.h1  5161.367170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.371107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.371128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161328100960
          <idle>-0       [000] d.h1  5161.371143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.375096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.375121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161332094064
          <idle>-0       [000] d.h1  5161.375136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.379107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.379126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161336095584
          <idle>-0       [000] d.h1  5161.379165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.383105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.383124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161340093088
          <idle>-0       [000] d.h1  5161.383162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.387117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.387137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161344105968
          <idle>-0       [000] d.h1  5161.387175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.391126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.391145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161348114672
          <idle>-0       [000] d.h1  5161.391184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.395109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.395128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161352097232
          <idle>-0       [000] d.h1  5161.395167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.399112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.399132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161356100720
          <idle>-0       [000] d.h1  5161.399170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.403109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.403128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161360097200
          <idle>-0       [000] d.h1  5161.403166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.407088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.407095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161364067200
          <idle>-0       [000] d.h1  5161.407109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.411105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.411124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161368093072
          <idle>-0       [000] d.h1  5161.411162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.415105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.415124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161372092832
          <idle>-0       [000] d.h1  5161.415161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.419111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.419130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161376099424
          <idle>-0       [000] d.h1  5161.419169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.423098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.423126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161380085936
          <idle>-0       [000] d.h1  5161.423165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.427109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.427128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161384097328
          <idle>-0       [000] d.h1  5161.427145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.427175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.427206: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.427217: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182643 baseclk=4296182643
          <idle>-0       [000] .Ns1  5161.427260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.427272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.427281: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.427300: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.431106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.431114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161388084896
          <idle>-0       [000] d.h1  5161.431133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.435105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.435126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161392094096
          <idle>-0       [000] d.h1  5161.435168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.439108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.439128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161396096688
          <idle>-0       [000] d.h1  5161.439168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.443111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.443130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161400099056
          <idle>-0       [000] d.h1  5161.443170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.447118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.447138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161404106512
          <idle>-0       [000] d.h1  5161.447155: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.447186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.447205: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.447216: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296182648 baseclk=4296182648
          <idle>-0       [000] dNs1  5161.447255: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296182648 baseclk=4296182648
          <idle>-0       [000] dNs1  5161.447267: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296182648 baseclk=4296182648
          <idle>-0       [000] dNs1  5161.447276: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296182648 baseclk=4296182648
          <idle>-0       [000] dNs1  5161.447285: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296182648 baseclk=4296182648
          <idle>-0       [000] .Ns1  5161.447295: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.447331: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5161.447380: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5161.447411: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5161.447427: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5161.447440: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5161.447453: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5161.447491: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5161.447537: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.451124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.451133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161408103920
          <idle>-0       [000] d.h1  5161.451155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.455109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.455131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161412099024
          <idle>-0       [000] d.h1  5161.455150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.455184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.455203: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.455216: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182650 baseclk=4296182650
          <idle>-0       [000] .Ns1  5161.455252: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.455288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.455311: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.455358: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.459123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.459150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161416114288
          <idle>-0       [000] d.h1  5161.459203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.463114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.463136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161420103600
          <idle>-0       [000] d.h1  5161.463180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.467111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.467131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161424099792
          <idle>-0       [000] d.h1  5161.467172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.471112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.471132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161428100992
          <idle>-0       [000] d.h1  5161.471173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.475110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.475132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161432104352
          <idle>-0       [000] d.h1  5161.475147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.479107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.479127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161436095648
          <idle>-0       [000] d.h1  5161.479144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.479174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.479193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.479222: timer_expire_entry: timer=0000000032f5e2dd function=delayed_work_timer_fn now=4296182656 baseclk=4296182656
          <idle>-0       [000] .Ns1  5161.479259: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.479295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5161.479318: workqueue_execute_start: work struct 00000000b561f7ea: function wb_workfn
   kworker/u12:1-498     [000] d..2  5161.479567: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.483126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.483154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161440118416
          <idle>-0       [000] d.h1  5161.483197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.487110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.487132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161444099744
          <idle>-0       [000] d.h1  5161.487176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.491110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.491130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161448098768
          <idle>-0       [000] d.h1  5161.491172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.495111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.495131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161452100064
          <idle>-0       [000] d.h1  5161.495172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.499108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.499128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161456097216
          <idle>-0       [000] d.h1  5161.499167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.503107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.503127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161460096048
          <idle>-0       [000] d.h1  5161.503172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.507105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.507125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161464093568
          <idle>-0       [000] d.h1  5161.507163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.511099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.511119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161468088176
          <idle>-0       [000] d.h1  5161.511148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.511159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.511173: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5161.511179: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182664 baseclk=4296182664
          <idle>-0       [000] .Ns1  5161.511193: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.511207: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5161.511239: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.515120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.515129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161472099696
          <idle>-0       [000] d.h1  5161.515148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.519110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.519132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161476099888
          <idle>-0       [000] d.h1  5161.519174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.523111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.523145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161480113600
          <idle>-0       [000] d.h1  5161.523185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.527112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.527132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161484100688
          <idle>-0       [000] d.h1  5161.527182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.531133: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.531140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161488111872
          <idle>-0       [000] d.h1  5161.531145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.531157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.531161: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.531182: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182669 baseclk=4296182669
          <idle>-0       [000] .Ns1  5161.531198: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.531211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.531219: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.531238: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.535121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.535130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161492100688
          <idle>-0       [000] d.h1  5161.535149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.539107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.539129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161496097024
          <idle>-0       [000] d.h1  5161.539148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.539179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.539197: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5161.539209: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182671 baseclk=4296182671
          <idle>-0       [000] .Ns1  5161.539252: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.539287: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.539311: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5161.539396: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5161.539471: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.543127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.543158: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161500128624
          <idle>-0       [000] d.h1  5161.543179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.547107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.547128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161504096368
          <idle>-0       [000] d.h1  5161.547173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.551122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.551148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161508115264
          <idle>-0       [000] d.h1  5161.551197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.555113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.555119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161512091760
          <idle>-0       [000] d.h1  5161.555135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.559107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.559127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161516096112
          <idle>-0       [000] d.h1  5161.559168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.563114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.563134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161520102896
          <idle>-0       [000] d.h1  5161.563174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.567115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.567135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161524103376
          <idle>-0       [000] d.h1  5161.567174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.571111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.571117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161528089648
          <idle>-0       [000] d.h1  5161.571131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.575117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.575137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161532105920
          <idle>-0       [000] d.h1  5161.575174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.579122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.579142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161536111024
          <idle>-0       [000] d.h1  5161.579179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.583096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.583115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161540084400
          <idle>-0       [000] d.h1  5161.583132: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.583162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.583182: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.583197: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182682 baseclk=4296182682
          <idle>-0       [000] .Ns1  5161.583245: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.583260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.583271: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.583306: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.587107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.587116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161544086512
          <idle>-0       [000] d.h1  5161.587136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.591107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.591114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161548086144
          <idle>-0       [000] d.h1  5161.591131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.595098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.595118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161552086688
          <idle>-0       [000] d.h1  5161.595158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.599108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.599115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161556087216
          <idle>-0       [000] d.h1  5161.599130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.603095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.603115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161560083648
          <idle>-0       [000] d.h1  5161.603154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.607115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.607122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161564094128
          <idle>-0       [000] d.h1  5161.607136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.611084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.611090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161568062848
          <idle>-0       [000] d.h1  5161.611105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.615096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.615115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161572084288
          <idle>-0       [000] d.h1  5161.615154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.619111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.619130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161576099520
          <idle>-0       [000] d.h1  5161.619169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.623107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.623113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161580085920
          <idle>-0       [000] d.h1  5161.623128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.627099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.627105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161584077712
          <idle>-0       [000] d.h1  5161.627120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.631102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.631108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161588080928
          <idle>-0       [000] d.h1  5161.631123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.635095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.635118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161592090560
          <idle>-0       [000] d.h1  5161.635124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.635135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.635140: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.635144: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182695 baseclk=4296182695
          <idle>-0       [000] .Ns1  5161.635182: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.635194: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.635203: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.635221: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.639139: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.639165: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161596130016
          <idle>-0       [000] d.h1  5161.639216: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.643129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.643150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161600118496
          <idle>-0       [000] d.h1  5161.643193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.647125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.647150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161604122528
          <idle>-0       [000] d.h1  5161.647165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.651106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.651126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161608094544
          <idle>-0       [000] d.h1  5161.651165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.655114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.655120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161612092800
          <idle>-0       [000] d.h1  5161.655135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.659105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.659124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161616093728
          <idle>-0       [000] d.h1  5161.659162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.663120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.663140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161620108768
          <idle>-0       [000] d.h1  5161.663186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.667099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.667106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161624078192
          <idle>-0       [000] d.h1  5161.667120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.671096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.671115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161628084288
          <idle>-0       [000] d.h1  5161.671180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.675110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.675129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161632098528
          <idle>-0       [000] d.h1  5161.675169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.679114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.679133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161636102240
          <idle>-0       [000] d.h1  5161.679172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.683112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.683132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161640100640
          <idle>-0       [000] d.h1  5161.683173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.687104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.687110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161644082752
          <idle>-0       [000] d.h1  5161.687125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.691101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.691107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161648079696
          <idle>-0       [000] d.h1  5161.691121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.695097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.695103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161652075664
          <idle>-0       [000] d.h1  5161.695117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.699107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.699126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161656095536
          <idle>-0       [000] d.h1  5161.699164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.703111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.703131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161660099824
          <idle>-0       [000] d.h1  5161.703169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.707109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.707128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161664097728
          <idle>-0       [000] d.h1  5161.707166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.711112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.711131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161668099856
          <idle>-0       [000] d.h1  5161.711148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.711178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.711193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.711206: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182714 baseclk=4296182714
          <idle>-0       [000] .Ns1  5161.711251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.711263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.711271: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.711300: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.715130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.715158: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161672129280
          <idle>-0       [000] d.h1  5161.715177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.719109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.719130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161676098416
          <idle>-0       [000] d.h1  5161.719173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.723114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.723135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161680103520
          <idle>-0       [000] d.h1  5161.723175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.727113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.727133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161684101632
          <idle>-0       [000] d.h1  5161.727173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.731105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.731125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161688093712
          <idle>-0       [000] d.h1  5161.731164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.735106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.735126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161692094976
          <idle>-0       [000] d.h1  5161.735164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.739109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.739129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161696097712
          <idle>-0       [000] d.h1  5161.739159: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.739171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.739175: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.739178: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182721 baseclk=4296182721
          <idle>-0       [000] .Ns1  5161.739205: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.739217: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.739225: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.739242: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.743116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.743142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161700106720
          <idle>-0       [000] d.h1  5161.743162: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.743199: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.743218: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5161.743245: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182722 baseclk=4296182722
          <idle>-0       [000] .Ns1  5161.743286: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.743324: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.743347: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5161.743369: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5161.743398: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.747119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.747148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161704110304
          <idle>-0       [000] d.h1  5161.747204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.751123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.751144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161708112400
          <idle>-0       [000] d.h1  5161.751188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.755112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.755133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161712101696
          <idle>-0       [000] d.h1  5161.755176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.759109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.759130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161716098544
          <idle>-0       [000] d.h1  5161.759169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.763111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.763131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161720100432
          <idle>-0       [000] d.h1  5161.763170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.767110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.767130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161724098912
          <idle>-0       [000] d.h1  5161.767167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.771121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.771141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161728110304
          <idle>-0       [000] d.h1  5161.771178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.775108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.775127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161732096528
          <idle>-0       [000] d.h1  5161.775164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.779109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.779129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161736097968
          <idle>-0       [000] d.h1  5161.779166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.783121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.783141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161740109920
          <idle>-0       [000] d.h1  5161.783178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.787108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.787127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161744096368
          <idle>-0       [000] d.h1  5161.787165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.791108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.791114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161748086912
          <idle>-0       [000] d.h1  5161.791129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.795118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.795138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161752106992
          <idle>-0       [000] d.h1  5161.795175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.799110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.799129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161756098208
          <idle>-0       [000] d.h1  5161.799166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.803105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.803112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161760084240
          <idle>-0       [000] d.h1  5161.803126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.807103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.807122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161764091232
          <idle>-0       [000] d.h1  5161.807159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.811106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.811125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161768094624
          <idle>-0       [000] d.h1  5161.811162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.815060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.815066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161772039072
          <idle>-0       [000] d.h1  5161.815080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.819082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.819102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161776071040
          <idle>-0       [000] d.h1  5161.819143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.823090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.823111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161780079776
          <idle>-0       [000] d.h1  5161.823150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.827080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.827099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161784068304
          <idle>-0       [000] d.h1  5161.827136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.831083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.831102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161788071888
          <idle>-0       [000] d.h1  5161.831139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.835083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.835102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161792071760
          <idle>-0       [000] d.h1  5161.835139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.839083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.839102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161796071312
          <idle>-0       [000] d.h1  5161.839119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.839148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.839178: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.839190: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182746 baseclk=4296182746
          <idle>-0       [000] .Ns1  5161.839229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.839276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.839286: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.839317: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.843116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.843142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161800106880
          <idle>-0       [000] d.h1  5161.843173: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.843188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.843193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.843196: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182747 baseclk=4296182747
          <idle>-0       [000] .Ns1  5161.843222: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.843235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.843243: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5161.843260: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.847114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.847140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161804105136
          <idle>-0       [000] d.h1  5161.847192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.851112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.851134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161808101792
          <idle>-0       [000] d.h1  5161.851188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.855122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.855143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161812111584
          <idle>-0       [000] d.h1  5161.855183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.859107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.859127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161816095616
          <idle>-0       [000] d.h1  5161.859166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.863087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.863107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161820075856
          <idle>-0       [000] d.h1  5161.863125: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.863155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.863187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.863200: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296182752 baseclk=4296182752
          <idle>-0       [000] .Ns1  5161.863235: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.863269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.863293: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5161.863371: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.867126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.867152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161824116368
          <idle>-0       [000] d.h1  5161.867215: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.871108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.871134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161828106512
          <idle>-0       [000] d.h1  5161.871150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.875105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.875125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161832093856
          <idle>-0       [000] d.h1  5161.875166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.879091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.879098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161836070048
          <idle>-0       [000] d.h1  5161.879113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.883106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.883126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161840094784
          <idle>-0       [000] d.h1  5161.883164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.887113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.887133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161844101520
          <idle>-0       [000] d.h1  5161.887171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.891106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.891126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161848094800
          <idle>-0       [000] d.h1  5161.891165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.895107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.895127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161852095712
          <idle>-0       [000] d.h1  5161.895174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.899103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.899123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161856091680
          <idle>-0       [000] d.h1  5161.899160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.903102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.903122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161860090912
          <idle>-0       [000] d.h1  5161.903150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.907106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.907113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161864085104
          <idle>-0       [000] d.h1  5161.907127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.911103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.911123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161868092080
          <idle>-0       [000] d.h1  5161.911160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.915085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.915105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161872073696
          <idle>-0       [000] d.h1  5161.915142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.919102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.919108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161876080848
          <idle>-0       [000] d.h1  5161.919123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.923095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.923115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161880083760
          <idle>-0       [000] d.h1  5161.923152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.927109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.927128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161884097248
          <idle>-0       [000] d.h1  5161.927166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.931107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.931126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161888095744
          <idle>-0       [000] d.h1  5161.931164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.935106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.935126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161892094880
          <idle>-0       [000] d.h1  5161.935163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.939117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.939123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161896095712
          <idle>-0       [000] d.h1  5161.939137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.943104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.943124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161900092736
          <idle>-0       [000] d.h1  5161.943160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.947108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.947128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161904096720
          <idle>-0       [000] d.h1  5161.947145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.947179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.947183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.947187: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182773 baseclk=4296182773
          <idle>-0       [000] .Ns1  5161.947212: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182773 baseclk=4296182773
          <idle>-0       [000] .Ns1  5161.947220: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.947232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.947240: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] ....  5161.947245: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5161.947267: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5161.947295: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.951116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.951145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161908108176
          <idle>-0       [000] d.h1  5161.951201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.955112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.955141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161912101536
          <idle>-0       [000] d.h1  5161.955185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.959112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.959133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161916102336
          <idle>-0       [000] d.h1  5161.959174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.963111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.963132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161920100784
          <idle>-0       [000] d.h1  5161.963171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.967112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.967132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161924101280
          <idle>-0       [000] d.h1  5161.967150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5161.967180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5161.967199: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5161.967213: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182778 baseclk=4296182778
          <idle>-0       [000] .Ns1  5161.967251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5161.967263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5161.967271: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5161.967301: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5161.971101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.971127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161928092256
          <idle>-0       [000] d.h1  5161.971178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.975086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.975108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161932076416
          <idle>-0       [000] d.h1  5161.975151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.979082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.979102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161936071152
          <idle>-0       [000] d.h1  5161.979141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.983085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.983092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161940064352
          <idle>-0       [000] d.h1  5161.983106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.987086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.987092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161944064800
          <idle>-0       [000] d.h1  5161.987106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.991081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.991101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161948069872
          <idle>-0       [000] d.h1  5161.991138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.995085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.995104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161952073808
          <idle>-0       [000] d.h1  5161.995143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5161.999084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5161.999104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161956073008
          <idle>-0       [000] d.h1  5161.999142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.003084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.003104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161960073216
          <idle>-0       [000] d.h1  5162.003142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.007108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.007128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161964097424
          <idle>-0       [000] d.h1  5162.007166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.011107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.011127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161968096288
          <idle>-0       [000] d.h1  5162.011164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.015107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.015127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161972096272
          <idle>-0       [000] d.h1  5162.015156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.019083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.019090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161976062368
          <idle>-0       [000] d.h1  5162.019105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.023105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.023125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161980093776
          <idle>-0       [000] d.h1  5162.023141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.023171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.023190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5162.023202: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182792 baseclk=4296182792
          <idle>-0       [000] .Ns1  5162.023236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.023273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5162.023339: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.027107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.027115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161984086464
          <idle>-0       [000] d.h1  5162.027134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.031111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.031118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161988090528
          <idle>-0       [000] d.h1  5162.031133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.035105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.035126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161992094176
          <idle>-0       [000] d.h1  5162.035165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.039104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.039110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5161996082912
          <idle>-0       [000] d.h1  5162.039125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.043103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.043123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162000092704
          <idle>-0       [000] d.h1  5162.043161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.047105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.047112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162004084416
          <idle>-0       [000] d.h1  5162.047126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.051111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.051132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162008100912
          <idle>-0       [000] d.h1  5162.051150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.051178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.051207: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.051218: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182799 baseclk=4296182799
          <idle>-0       [000] .Ns1  5162.051252: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.051264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.051272: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.051290: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.055135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.055162: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162012126736
          <idle>-0       [000] d.h1  5162.055212: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.059114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.059136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162016104768
          <idle>-0       [000] d.h1  5162.059177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.063105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.063126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162020095088
          <idle>-0       [000] d.h1  5162.063166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.067112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.067133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162024101696
          <idle>-0       [000] d.h1  5162.067179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.071113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.071133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162028102048
          <idle>-0       [000] d.h1  5162.071170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.075107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.075128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162032096576
          <idle>-0       [000] d.h1  5162.075166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.079111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.079131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162036100624
          <idle>-0       [000] d.h1  5162.079170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.083112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.083133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162040101632
          <idle>-0       [000] d.h1  5162.083172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.087108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.087129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162044098000
          <idle>-0       [000] d.h1  5162.087168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.091125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.091145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162048113728
          <idle>-0       [000] d.h1  5162.091184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.095106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.095126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162052095328
          <idle>-0       [000] d.h1  5162.095144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.095174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.095192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.095206: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182810 baseclk=4296182810
          <idle>-0       [000] .Ns1  5162.095243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.095278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.095302: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.095395: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.099118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.099144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162056109104
          <idle>-0       [000] d.h1  5162.099195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.103100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.103121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162060089584
          <idle>-0       [000] d.h1  5162.103164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.107110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.107130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162064099392
          <idle>-0       [000] d.h1  5162.107171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.111108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.111128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162068096816
          <idle>-0       [000] d.h1  5162.111157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.115093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.115113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162072081888
          <idle>-0       [000] d.h1  5162.115158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.119127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.119147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162076116160
          <idle>-0       [000] d.h1  5162.119185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.123117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.123137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162080105760
          <idle>-0       [000] d.h1  5162.123181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.127104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.127124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162084093200
          <idle>-0       [000] d.h1  5162.127162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.131114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.131120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162088092384
          <idle>-0       [000] d.h1  5162.131134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.135103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.135123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162092092272
          <idle>-0       [000] d.h1  5162.135161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.139108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.139128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162096097200
          <idle>-0       [000] d.h1  5162.139165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.143108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.143127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162100096144
          <idle>-0       [000] d.h1  5162.143164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.147107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.147127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162104095936
          <idle>-0       [000] d.h1  5162.147168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.151104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.151135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162108092016
          <idle>-0       [000] d.h1  5162.151141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.151152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.151157: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5162.151160: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182824 baseclk=4296182824
          <idle>-0       [000] .Ns1  5162.151192: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.151204: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.151212: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5162.151234: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5162.151262: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.155127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.155156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162112118336
          <idle>-0       [000] d.h1  5162.155180: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.155227: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.155233: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.155236: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182825 baseclk=4296182825
          <idle>-0       [000] .Ns1  5162.155264: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.155277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.155285: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.155302: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.159108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.159117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162116087776
          <idle>-0       [000] d.h1  5162.159137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.163110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.163131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162120099520
          <idle>-0       [000] d.h1  5162.163175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.167110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.167131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162124099536
          <idle>-0       [000] d.h1  5162.167172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.171106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.171113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162128085328
          <idle>-0       [000] d.h1  5162.171127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.175104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.175123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162132092416
          <idle>-0       [000] d.h1  5162.175162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.179110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.179130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162136098912
          <idle>-0       [000] d.h1  5162.179169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.183109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.183129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162140098032
          <idle>-0       [000] d.h1  5162.183168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.187117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.187136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162144105248
          <idle>-0       [000] d.h1  5162.187175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.191108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.191128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162148096816
          <idle>-0       [000] d.h1  5162.191161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.195103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.195123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162152091920
          <idle>-0       [000] d.h1  5162.195161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.199107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.199127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162156096096
          <idle>-0       [000] d.h1  5162.199166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.203107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.203136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162160108128
          <idle>-0       [000] d.h1  5162.203150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.207103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.207123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162164091968
          <idle>-0       [000] d.h1  5162.207161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.211108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.211128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162168096752
          <idle>-0       [000] d.h1  5162.211166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.215107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.215137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162172095360
          <idle>-0       [000] d.h1  5162.215152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.219128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.219148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162176117152
          <idle>-0       [000] d.h1  5162.219186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.223088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.223094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162180066512
          <idle>-0       [000] d.h1  5162.223100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.223111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.223116: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.223119: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182842 baseclk=4296182842
          <idle>-0       [000] .Ns1  5162.223148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.223161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.223168: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.223196: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.227123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.227151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162184115456
          <idle>-0       [000] d.h1  5162.227203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.231108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.231129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162188097328
          <idle>-0       [000] d.h1  5162.231172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.235110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.235130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162192098832
          <idle>-0       [000] d.h1  5162.235172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.239110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.239129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162196098176
          <idle>-0       [000] d.h1  5162.239168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.243109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.243137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162200097104
          <idle>-0       [000] d.h1  5162.243178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.247107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.247127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162204096016
          <idle>-0       [000] d.h1  5162.247145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.247175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.247193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.247210: timer_expire_entry: timer=00000000ad356289 function=delayed_work_timer_fn now=4296182848 baseclk=4296182848
          <idle>-0       [000] .Ns1  5162.247244: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.247281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.247305: workqueue_execute_start: work struct 00000000057c6116: function neigh_periodic_work
     kworker/0:2-112     [000] d..2  5162.247387: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.251115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.251140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162208105424
          <idle>-0       [000] d.h1  5162.251191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.255106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.255113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162212085424
          <idle>-0       [000] d.h1  5162.255130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.259083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.259090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162216062320
          <idle>-0       [000] d.h1  5162.259096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.259107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.259112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.259115: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182851 baseclk=4296182851
          <idle>-0       [000] .Ns1  5162.259140: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.259152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.259160: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.259177: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.263096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.263105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162220075744
          <idle>-0       [000] d.h1  5162.263124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.267089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.267096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162224068432
          <idle>-0       [000] d.h1  5162.267112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.271090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.271096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162228068896
          <idle>-0       [000] d.h1  5162.271111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.275083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.275090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162232062368
          <idle>-0       [000] d.h1  5162.275104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.279088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.279094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162236066560
          <idle>-0       [000] d.h1  5162.279108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.283084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.283091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162240063104
          <idle>-0       [000] d.h1  5162.283104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.287087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.287093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162244065552
          <idle>-0       [000] d.h1  5162.287107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.291099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.291105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162248078000
          <idle>-0       [000] d.h1  5162.291120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.295084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.295090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162252062720
          <idle>-0       [000] d.h1  5162.295105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.299058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.299065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162256037120
          <idle>-0       [000] d.h1  5162.299078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.303079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.303099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162260067680
          <idle>-0       [000] d.h1  5162.303136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.307097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.307117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162264086032
          <idle>-0       [000] d.h1  5162.307154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.311082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.311102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162268071024
          <idle>-0       [000] d.h1  5162.311140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.315083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.315102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162272071248
          <idle>-0       [000] d.h1  5162.315139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.319086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.319106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162276075056
          <idle>-0       [000] d.h1  5162.319148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.323083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.323103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162280071568
          <idle>-0       [000] d.h1  5162.323141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.327060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.327066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162284038896
          <idle>-0       [000] d.h1  5162.327080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.331093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.331100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162288072096
          <idle>-0       [000] d.h1  5162.331113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.335083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.335089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162292061664
          <idle>-0       [000] d.h1  5162.335103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.339084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.339091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162296062976
          <idle>-0       [000] d.h1  5162.339105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.343085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.343091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162300063712
          <idle>-0       [000] d.h1  5162.343105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.347083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.347089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162304061504
          <idle>-0       [000] d.h1  5162.347103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.351083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.351089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162308061728
          <idle>-0       [000] d.h1  5162.351095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.351107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.351112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.351117: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182874 baseclk=4296182874
          <idle>-0       [000] .Ns1  5162.351156: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.351171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.351181: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.351215: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.355112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.355120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162312091456
          <idle>-0       [000] d.h1  5162.355128: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.355143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.355148: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5162.355152: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182875 baseclk=4296182875
          <idle>-0       [000] .Ns1  5162.355182: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.355195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.355202: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5162.355229: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5162.355259: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.359125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.359153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162316116400
          <idle>-0       [000] d.h1  5162.359223: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.363107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.363129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162320097648
          <idle>-0       [000] d.h1  5162.363149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.363182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.363201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.363214: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182877 baseclk=4296182877
          <idle>-0       [000] .Ns1  5162.363251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.363282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.363289: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.363307: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.367135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.367161: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162324125888
          <idle>-0       [000] d.h1  5162.367211: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.371106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.371127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162328095648
          <idle>-0       [000] d.h1  5162.371172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.375116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.375136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162332105216
          <idle>-0       [000] d.h1  5162.375177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.379112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.379132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162336100768
          <idle>-0       [000] d.h1  5162.379171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.383124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.383144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162340113232
          <idle>-0       [000] d.h1  5162.383183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.387121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.387141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162344109536
          <idle>-0       [000] d.h1  5162.387179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.391108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.391128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162348096816
          <idle>-0       [000] d.h1  5162.391166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.395111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.395131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162352099824
          <idle>-0       [000] d.h1  5162.395164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.399101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.399107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162356079584
          <idle>-0       [000] d.h1  5162.399122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.403095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.403115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162360083696
          <idle>-0       [000] d.h1  5162.403153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.407106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.407113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162364085296
          <idle>-0       [000] d.h1  5162.407127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.411104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.411124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162368092592
          <idle>-0       [000] d.h1  5162.411162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.415104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.415123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162372092368
          <idle>-0       [000] d.h1  5162.415162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.419106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.419125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162376094336
          <idle>-0       [000] d.h1  5162.419163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.423107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.423126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162380095552
          <idle>-0       [000] d.h1  5162.423164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.427088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.427094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162384066704
          <idle>-0       [000] d.h1  5162.427109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.431114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.431120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162388092528
          <idle>-0       [000] d.h1  5162.431134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.435102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.435121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162392090240
          <idle>-0       [000] d.h1  5162.435158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.439107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.439127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162396095552
          <idle>-0       [000] d.h1  5162.439164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.443109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.443128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162400097760
          <idle>-0       [000] d.h1  5162.443166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.447104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.447123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162404092272
          <idle>-0       [000] d.h1  5162.447161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.451109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.451128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162408097200
          <idle>-0       [000] d.h1  5162.451166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.455117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.455136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162412105200
          <idle>-0       [000] d.h1  5162.455173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.459114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.459134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162416102720
          <idle>-0       [000] d.h1  5162.459171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.463115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.463135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162420107952
          <idle>-0       [000] d.h1  5162.463149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.467101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.467107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162424079664
          <idle>-0       [000] d.h1  5162.467113: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.467124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.467129: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.467132: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182903 baseclk=4296182903
          <idle>-0       [000] .Ns1  5162.467174: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.467187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.467195: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.467214: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.471139: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.471164: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162428129456
          <idle>-0       [000] d.h1  5162.471185: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.471222: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.471242: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.471253: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296182904 baseclk=4296182904
          <idle>-0       [000] dNs1  5162.471291: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296182904 baseclk=4296182904
          <idle>-0       [000] dNs1  5162.471302: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296182904 baseclk=4296182904
          <idle>-0       [000] dNs1  5162.471311: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296182904 baseclk=4296182904
          <idle>-0       [000] dNs1  5162.471319: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296182904 baseclk=4296182904
          <idle>-0       [000] .Ns1  5162.471328: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.471366: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5162.471415: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5162.471439: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5162.471462: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5162.471467: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5162.471471: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5162.471488: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5162.471504: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.475115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.475142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162432106832
          <idle>-0       [000] d.h1  5162.475195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.479123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.479145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162436113120
          <idle>-0       [000] d.h1  5162.479164: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.479198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.479217: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.479230: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182906 baseclk=4296182906
          <idle>-0       [000] .Ns1  5162.479266: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.479301: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.479323: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.479410: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.483113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.483139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162440104336
          <idle>-0       [000] d.h1  5162.483191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.487124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.487145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162444113152
          <idle>-0       [000] d.h1  5162.487190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.491121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.491141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162448109952
          <idle>-0       [000] d.h1  5162.491182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.495118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.495138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162452107232
          <idle>-0       [000] d.h1  5162.495178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.499106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.499133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162456105776
          <idle>-0       [000] d.h1  5162.499147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.503104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.503114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162460083024
          <idle>-0       [000] d.h1  5162.503129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.507104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.507124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162464092880
          <idle>-0       [000] d.h1  5162.507163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.511111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.511130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162468099392
          <idle>-0       [000] d.h1  5162.511170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.515111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.515131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162472099616
          <idle>-0       [000] d.h1  5162.515169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.519111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.519131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162476099728
          <idle>-0       [000] d.h1  5162.519169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.523110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.523130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162480099200
          <idle>-0       [000] d.h1  5162.523167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.527112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.527132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162484101200
          <idle>-0       [000] d.h1  5162.527170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.531105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.531124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162488094048
          <idle>-0       [000] d.h1  5162.531163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.535125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.535144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162492113040
          <idle>-0       [000] d.h1  5162.535161: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.535188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.535203: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5162.535209: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296182920 baseclk=4296182920
          <idle>-0       [000] .Ns1  5162.535221: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.535232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5162.535266: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.539110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.539139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162496102512
          <idle>-0       [000] d.h1  5162.539192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.543124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.543144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162500112800
          <idle>-0       [000] d.h1  5162.543186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.547112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.547121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162504092560
          <idle>-0       [000] d.h1  5162.547142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.551112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.551134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162508102144
          <idle>-0       [000] d.h1  5162.551177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.555112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.555132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162512101440
          <idle>-0       [000] d.h1  5162.555187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.559112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.559132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162516101328
          <idle>-0       [000] d.h1  5162.559151: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.559183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.559202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5162.559214: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182926 baseclk=4296182926
          <idle>-0       [000] .Ns1  5162.559265: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.559281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.559293: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5162.559318: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5162.559350: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.563110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.563119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162520089424
          <idle>-0       [000] d.h1  5162.563141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.567114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.567135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162524102720
          <idle>-0       [000] d.h1  5162.567178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.571112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.571133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162528101696
          <idle>-0       [000] d.h1  5162.571151: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.571181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.571201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.571213: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182929 baseclk=4296182929
          <idle>-0       [000] .Ns1  5162.571245: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.571258: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.571266: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.571285: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.575126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.575152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162532116704
          <idle>-0       [000] d.h1  5162.575202: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.579099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.579120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162536088544
          <idle>-0       [000] d.h1  5162.579162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.583109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.583129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162540097488
          <idle>-0       [000] d.h1  5162.583169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.587117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.587137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162544106320
          <idle>-0       [000] d.h1  5162.587177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.591107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.591114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162548086176
          <idle>-0       [000] d.h1  5162.591128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.595103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.595122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162552091344
          <idle>-0       [000] d.h1  5162.595160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.599111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.599130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162556099056
          <idle>-0       [000] d.h1  5162.599168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.603110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.603129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162560098368
          <idle>-0       [000] d.h1  5162.603167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.607092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.607098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162564070432
          <idle>-0       [000] d.h1  5162.607103: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.607115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.607120: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.607125: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182938 baseclk=4296182938
          <idle>-0       [000] .Ns1  5162.607149: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.607161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.607170: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.607199: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.611093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.611101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162568072432
          <idle>-0       [000] d.h1  5162.611121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.615089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.615096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162572067888
          <idle>-0       [000] d.h1  5162.615113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.619084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.619091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162576063168
          <idle>-0       [000] d.h1  5162.619106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.623082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.623089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162580061392
          <idle>-0       [000] d.h1  5162.623104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.627083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.627089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162584061616
          <idle>-0       [000] d.h1  5162.627105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.631083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.631090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162588062208
          <idle>-0       [000] d.h1  5162.631106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.635082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.635089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162592061024
          <idle>-0       [000] d.h1  5162.635106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.639104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.639123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162596092080
          <idle>-0       [000] d.h1  5162.639171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.643116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.643137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162600105888
          <idle>-0       [000] d.h1  5162.643176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.647109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.647129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162604097792
          <idle>-0       [000] d.h1  5162.647167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.651106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.651126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162608094816
          <idle>-0       [000] d.h1  5162.651164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.655108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.655127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162612096640
          <idle>-0       [000] d.h1  5162.655166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.659109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.659128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162616097248
          <idle>-0       [000] d.h1  5162.659166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.663116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.663136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162620104592
          <idle>-0       [000] d.h1  5162.663174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.667106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.667112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162624084736
          <idle>-0       [000] d.h1  5162.667127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.671105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.671124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162628092672
          <idle>-0       [000] d.h1  5162.671162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.675108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.675128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162632096832
          <idle>-0       [000] d.h1  5162.675146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.675175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.675194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.675207: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182955 baseclk=4296182955
          <idle>-0       [000] .Ns1  5162.675250: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.675289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.675317: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.675375: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.679124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.679150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162636115104
          <idle>-0       [000] d.h1  5162.679215: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.683108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.683129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162640097024
          <idle>-0       [000] d.h1  5162.683171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.687114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.687134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162644102896
          <idle>-0       [000] d.h1  5162.687175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.691109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.691129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162648097424
          <idle>-0       [000] d.h1  5162.691168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.695112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.695132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162652100416
          <idle>-0       [000] d.h1  5162.695171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.699110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.699130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162656098912
          <idle>-0       [000] d.h1  5162.699162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.703103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.703122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162660091024
          <idle>-0       [000] d.h1  5162.703161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.707109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.707128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162664096784
          <idle>-0       [000] d.h1  5162.707166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.711109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.711128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162668096944
          <idle>-0       [000] d.h1  5162.711166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.715109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.715128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162672097056
          <idle>-0       [000] d.h1  5162.715167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.719107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.719127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162676095904
          <idle>-0       [000] d.h1  5162.719165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.723105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.723124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162680092944
          <idle>-0       [000] d.h1  5162.723162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.727107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.727127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162684095536
          <idle>-0       [000] d.h1  5162.727165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.731105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.731124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162688092896
          <idle>-0       [000] d.h1  5162.731164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.735103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.735123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162692091568
          <idle>-0       [000] d.h1  5162.735140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.735169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.735187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.735209: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296182970 baseclk=4296182970
          <idle>-0       [000] .Ns1  5162.735222: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.735233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.735242: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.735272: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.739135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.739144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162696114672
          <idle>-0       [000] d.h1  5162.739163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.743107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.743114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162700086160
          <idle>-0       [000] d.h1  5162.743130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.747104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.747124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162704093328
          <idle>-0       [000] d.h1  5162.747165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.751111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.751130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162708099424
          <idle>-0       [000] d.h1  5162.751170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.755108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.755127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162712096256
          <idle>-0       [000] d.h1  5162.755166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.759109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.759128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162716097616
          <idle>-0       [000] d.h1  5162.759166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.763117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.763136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162720105728
          <idle>-0       [000] d.h1  5162.763154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.763183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.763213: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5162.763223: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296182977 baseclk=4296182977
          <idle>-0       [000] .Ns1  5162.763267: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.763305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.763313: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5162.763349: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5162.763386: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.767128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.767157: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162724119744
          <idle>-0       [000] d.h1  5162.767213: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.771109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.771141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162728098672
          <idle>-0       [000] d.h1  5162.771157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.775103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.775124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162732092208
          <idle>-0       [000] d.h1  5162.775165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.779108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.779127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162736096208
          <idle>-0       [000] d.h1  5162.779145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.779176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.779195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.779218: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296182981 baseclk=4296182981
          <idle>-0       [000] .Ns1  5162.779231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.779243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.779252: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.779273: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.783124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.783132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162740103280
          <idle>-0       [000] d.h1  5162.783152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.787121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.787142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162744110112
          <idle>-0       [000] d.h1  5162.787184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.791107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.791127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162748095776
          <idle>-0       [000] d.h1  5162.791166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.795120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.795140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162752108784
          <idle>-0       [000] d.h1  5162.795177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.799104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.799124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162756092528
          <idle>-0       [000] d.h1  5162.799161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.803097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.803103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162760075840
          <idle>-0       [000] d.h1  5162.803117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.807103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.807122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162764090816
          <idle>-0       [000] d.h1  5162.807159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.811108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.811127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162768096128
          <idle>-0       [000] d.h1  5162.811172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.815124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.815143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162772112096
          <idle>-0       [000] d.h1  5162.815180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.819107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.819127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162776096256
          <idle>-0       [000] d.h1  5162.819168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.823107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.823126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162780095088
          <idle>-0       [000] d.h1  5162.823164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.827112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.827131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162784100320
          <idle>-0       [000] d.h1  5162.827169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.831111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.831130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162788099280
          <idle>-0       [000] d.h1  5162.831168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.835102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.835108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162792080512
          <idle>-0       [000] d.h1  5162.835122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.839104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.839123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162796092384
          <idle>-0       [000] d.h1  5162.839161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.843108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.843128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162800096880
          <idle>-0       [000] d.h1  5162.843165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.847108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.847127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162804096304
          <idle>-0       [000] d.h1  5162.847165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.851108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.851127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162808096272
          <idle>-0       [000] d.h1  5162.851165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.855108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.855128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162812096960
          <idle>-0       [000] d.h1  5162.855166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.859108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.859127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162816096336
          <idle>-0       [000] d.h1  5162.859165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.863108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.863115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162820087072
          <idle>-0       [000] d.h1  5162.863120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.863132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.863137: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.863141: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183002 baseclk=4296183002
          <idle>-0       [000] .Ns1  5162.863167: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.863180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.863190: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.863221: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.867107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.867116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162824086960
          <idle>-0       [000] d.h1  5162.867136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.871108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.871115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162828086752
          <idle>-0       [000] d.h1  5162.871131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.875105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.875125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162832094320
          <idle>-0       [000] d.h1  5162.875166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.879113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.879119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162836091472
          <idle>-0       [000] d.h1  5162.879134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.883107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.883126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162840095120
          <idle>-0       [000] d.h1  5162.883144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.883173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.883192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.883202: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183007 baseclk=4296183007
          <idle>-0       [000] .Ns1  5162.883237: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.883272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.883297: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.883347: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.887123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.887149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162844113920
          <idle>-0       [000] d.h1  5162.887170: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.887207: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.887227: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.887255: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296183008 baseclk=4296183008
          <idle>-0       [000] .Ns1  5162.887288: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.887326: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.887350: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5162.887430: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.891118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.891144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162848108448
          <idle>-0       [000] d.h1  5162.891197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.895119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.895141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162852108720
          <idle>-0       [000] d.h1  5162.895184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.899107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.899141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162856096336
          <idle>-0       [000] d.h1  5162.899157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.903104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.903124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162860093152
          <idle>-0       [000] d.h1  5162.903165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.907120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.907140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162864108960
          <idle>-0       [000] d.h1  5162.907179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.911108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.911127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162868096224
          <idle>-0       [000] d.h1  5162.911166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.915110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.915130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162872099024
          <idle>-0       [000] d.h1  5162.915169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.919084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.919103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162876072144
          <idle>-0       [000] d.h1  5162.919151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.923092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.923099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162880071344
          <idle>-0       [000] d.h1  5162.923113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.927113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.927132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162884101296
          <idle>-0       [000] d.h1  5162.927180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.931103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.931122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162888091664
          <idle>-0       [000] d.h1  5162.931162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.935119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.935138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162892107248
          <idle>-0       [000] d.h1  5162.935176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.939104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.939124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162896092944
          <idle>-0       [000] d.h1  5162.939161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.943100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.943107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162900079152
          <idle>-0       [000] d.h1  5162.943120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.947084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.947090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162904062912
          <idle>-0       [000] d.h1  5162.947105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.951085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.951091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162908063984
          <idle>-0       [000] d.h1  5162.951106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.955084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.955090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162912062400
          <idle>-0       [000] d.h1  5162.955108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.957532: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.957539: hrtimer_expire_entry: hrtimer=0000000056a168fb function=it_real_fn now=5162914510944
          <idle>-0       [000] dNh1  5162.957740: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5162.957772: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rdisc next_pid=252 next_prio=120
           rdisc-252     [000] d..2  5162.958007: sched_switch: prev_comm=rdisc prev_pid=252 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.959088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.959100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162916069840
          <idle>-0       [000] d.h1  5162.959131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.963097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.963105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162920076736
          <idle>-0       [000] d.h1  5162.963122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.967099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.967106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162924077888
          <idle>-0       [000] d.h1  5162.967112: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.967125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.967138: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5162.967146: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183028 baseclk=4296183028
          <idle>-0       [000] .Ns1  5162.967168: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.967183: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.967193: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5162.967231: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5162.967268: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.971074: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.971083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162928053440
          <idle>-0       [000] d.h1  5162.971105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.975060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.975067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162932039392
          <idle>-0       [000] d.h1  5162.975083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.979059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.979066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162936037984
          <idle>-0       [000] d.h1  5162.979080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.983060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.983066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162940038608
          <idle>-0       [000] d.h1  5162.983080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.987059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.987065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162944037568
          <idle>-0       [000] d.h1  5162.987071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.987082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.987098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.987104: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183033 baseclk=4296183033
          <idle>-0       [000] .Ns1  5162.987119: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.987132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.987140: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5162.987163: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.991064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.991072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162948043456
          <idle>-0       [000] d.h1  5162.991080: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5162.991094: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5162.991109: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5162.991116: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183034 baseclk=4296183034
          <idle>-0       [000] .Ns1  5162.991127: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5162.991140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5162.991148: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5162.991178: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5162.995064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.995073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162952043632
          <idle>-0       [000] d.h1  5162.995092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5162.999061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5162.999068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162956040304
          <idle>-0       [000] d.h1  5162.999084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.003061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.003068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162960039792
          <idle>-0       [000] d.h1  5163.003082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.007084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.007090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162964062736
          <idle>-0       [000] d.h1  5163.007105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.011081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.011101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162968069616
          <idle>-0       [000] d.h1  5163.011138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.015084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.015104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162972072832
          <idle>-0       [000] d.h1  5163.015142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.019087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.019093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162976065904
          <idle>-0       [000] d.h1  5163.019110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.023083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.023089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162980061968
          <idle>-0       [000] d.h1  5163.023104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.027085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.027091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162984063216
          <idle>-0       [000] d.h1  5163.027114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.031084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.031090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162988062480
          <idle>-0       [000] d.h1  5163.031104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.035091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.035097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162992069248
          <idle>-0       [000] d.h1  5163.035110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.039084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.039090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5162996062288
          <idle>-0       [000] d.h1  5163.039104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.043083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.043089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163000061904
          <idle>-0       [000] d.h1  5163.043103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.047083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.047089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163004062048
          <idle>-0       [000] d.h1  5163.047096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.047107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.047112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5163.047135: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183048 baseclk=4296183048
          <idle>-0       [000] .Ns1  5163.047153: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.047166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5163.047205: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.051092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.051102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163008072544
          <idle>-0       [000] d.h1  5163.051123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.055086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.055093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163012064864
          <idle>-0       [000] d.h1  5163.055114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.059088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.059094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163016066752
          <idle>-0       [000] d.h1  5163.059109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.063084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.063091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163020063136
          <idle>-0       [000] d.h1  5163.063104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.067084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.067091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163024063296
          <idle>-0       [000] d.h1  5163.067105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.071084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.071091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163028062480
          <idle>-0       [000] d.h1  5163.071105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.075084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.075090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163032062464
          <idle>-0       [000] d.h1  5163.075104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.079083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.079089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163036061984
          <idle>-0       [000] d.h1  5163.079104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.083088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.083094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163040066304
          <idle>-0       [000] d.h1  5163.083108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.087089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.087095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163044067504
          <idle>-0       [000] d.h1  5163.087109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.091084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.091090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163048062944
          <idle>-0       [000] d.h1  5163.091097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.091108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.091114: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.091118: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183059 baseclk=4296183059
          <idle>-0       [000] .Ns1  5163.091146: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.091162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.091172: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.091192: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.095099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.095124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163052088624
          <idle>-0       [000] d.h1  5163.095188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.099084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.099108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163056080624
          <idle>-0       [000] d.h1  5163.099123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.103081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.103101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163060070240
          <idle>-0       [000] d.h1  5163.103146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.107104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.107124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163064093216
          <idle>-0       [000] d.h1  5163.107167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.111102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.111122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163068091216
          <idle>-0       [000] d.h1  5163.111161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.115107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.115113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163072086016
          <idle>-0       [000] d.h1  5163.115127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.119101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.119108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163076079712
          <idle>-0       [000] d.h1  5163.119113: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.119125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.119130: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.119135: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183066 baseclk=4296183066
          <idle>-0       [000] .Ns1  5163.119163: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.119176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.119184: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5163.119215: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.123135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.123161: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163080125824
          <idle>-0       [000] d.h1  5163.123212: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.127084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.127091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163084063568
          <idle>-0       [000] d.h1  5163.127108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.131113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.131133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163088101936
          <idle>-0       [000] d.h1  5163.131172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.135105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.135125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163092093728
          <idle>-0       [000] d.h1  5163.135163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.139102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.139122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163096091264
          <idle>-0       [000] d.h1  5163.139161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.143107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.143128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163100096656
          <idle>-0       [000] d.h1  5163.143166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.147106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.147127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163104094224
          <idle>-0       [000] d.h1  5163.147165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.151108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.151127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163108096464
          <idle>-0       [000] d.h1  5163.151165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.155109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.155128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163112097104
          <idle>-0       [000] d.h1  5163.155166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.159114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.159133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163116101824
          <idle>-0       [000] d.h1  5163.159170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.163106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.163137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163120094304
          <idle>-0       [000] d.h1  5163.163151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.167107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.167126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163124095680
          <idle>-0       [000] d.h1  5163.167164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.171114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.171136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163128102752
          <idle>-0       [000] d.h1  5163.171153: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.171182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.171204: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5163.171214: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183079 baseclk=4296183079
          <idle>-0       [000] .Ns1  5163.171260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.171273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.171282: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5163.171316: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5163.171352: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.175109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.175145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163132115312
          <idle>-0       [000] d.h1  5163.175167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.179109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.179143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163136098384
          <idle>-0       [000] d.h1  5163.179159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.183109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.183129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163140097760
          <idle>-0       [000] d.h1  5163.183190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.187124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.187144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163144113408
          <idle>-0       [000] d.h1  5163.187187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.191104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.191124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163148092608
          <idle>-0       [000] d.h1  5163.191164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.195111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.195132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163152099632
          <idle>-0       [000] d.h1  5163.195150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.195180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.195201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.195226: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183085 baseclk=4296183085
          <idle>-0       [000] .Ns1  5163.195265: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.195279: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.195290: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.195309: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.199125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.199151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163156115888
          <idle>-0       [000] d.h1  5163.199206: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.203105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.203126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163160094032
          <idle>-0       [000] d.h1  5163.203168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.207117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.207137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163164105808
          <idle>-0       [000] d.h1  5163.207177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.211103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.211123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163168092016
          <idle>-0       [000] d.h1  5163.211157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.215102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.215108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163172080592
          <idle>-0       [000] d.h1  5163.215123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.219104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.219124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163176093232
          <idle>-0       [000] d.h1  5163.219162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.223135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.223155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163180124048
          <idle>-0       [000] d.h1  5163.223193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.227116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.227136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163184104896
          <idle>-0       [000] d.h1  5163.227174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.231103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.231131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163188103136
          <idle>-0       [000] d.h1  5163.231145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.235107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.235126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163192094784
          <idle>-0       [000] d.h1  5163.235162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.239104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.239123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163196091984
          <idle>-0       [000] d.h1  5163.239161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.243105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.243124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163200092816
          <idle>-0       [000] d.h1  5163.243162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.247107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.247126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163204094896
          <idle>-0       [000] d.h1  5163.247143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.247172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.247191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.247204: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183098 baseclk=4296183098
          <idle>-0       [000] .Ns1  5163.247239: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.247273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.247303: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5163.247332: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.251113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.251139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163208103984
          <idle>-0       [000] d.h1  5163.251190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.255113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.255133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163212101696
          <idle>-0       [000] d.h1  5163.255175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.259107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.259127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163216095664
          <idle>-0       [000] d.h1  5163.259166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.263106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.263126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163220094736
          <idle>-0       [000] d.h1  5163.263164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.267109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.267128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163224097392
          <idle>-0       [000] d.h1  5163.267167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.271106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.271126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163228094752
          <idle>-0       [000] d.h1  5163.271165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.275111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.275117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163232089472
          <idle>-0       [000] d.h1  5163.275131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.279113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.279132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163236101872
          <idle>-0       [000] d.h1  5163.279170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.283109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.283115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163240087456
          <idle>-0       [000] d.h1  5163.283129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.287107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.287126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163244095088
          <idle>-0       [000] d.h1  5163.287164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.291109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.291115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163248087520
          <idle>-0       [000] d.h1  5163.291129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.295106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.295124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163252094032
          <idle>-0       [000] d.h1  5163.295162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.299106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.299125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163256094752
          <idle>-0       [000] d.h1  5163.299147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.299158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.299163: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.299166: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183111 baseclk=4296183111
          <idle>-0       [000] .Ns1  5163.299195: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.299207: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.299215: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.299233: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.303122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.303156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163260111872
          <idle>-0       [000] d.h1  5163.303175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.307108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.307128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163264096544
          <idle>-0       [000] d.h1  5163.307175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.311104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.311124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163268093008
          <idle>-0       [000] d.h1  5163.311163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.315109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.315129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163272098176
          <idle>-0       [000] d.h1  5163.315168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.319123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.319153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163276120320
          <idle>-0       [000] d.h1  5163.319202: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.323104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.323110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163280082400
          <idle>-0       [000] d.h1  5163.323125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.327112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.327131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163284100560
          <idle>-0       [000] d.h1  5163.327169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.331106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.331125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163288094736
          <idle>-0       [000] d.h1  5163.331163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.335108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.335127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163292096128
          <idle>-0       [000] d.h1  5163.335168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.339096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.339102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163296075120
          <idle>-0       [000] d.h1  5163.339117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.343104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.343122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163300091440
          <idle>-0       [000] d.h1  5163.343159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.347106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.347125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163304093952
          <idle>-0       [000] d.h1  5163.347163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.351106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.351125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163308094800
          <idle>-0       [000] d.h1  5163.351162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.355114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.355123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163312092464
          <idle>-0       [000] d.h1  5163.355138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.359104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.359123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163316092400
          <idle>-0       [000] d.h1  5163.359162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.363105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.363125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163320094032
          <idle>-0       [000] d.h1  5163.363163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.367112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.367138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163324110736
          <idle>-0       [000] d.h1  5163.367152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.371106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.371125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163328094768
          <idle>-0       [000] d.h1  5163.371164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.375109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.375129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163332101984
          <idle>-0       [000] d.h1  5163.375135: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.375146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.375151: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5163.375155: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183130 baseclk=4296183130
          <idle>-0       [000] dNs1  5163.375189: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183130 baseclk=4296183130
          <idle>-0       [000] .Ns1  5163.375194: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.375208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.375217: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5163.375239: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] ....  5163.375255: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5163.375286: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.379121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.379150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163336112288
          <idle>-0       [000] d.h1  5163.379207: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.383114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.383136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163340103776
          <idle>-0       [000] d.h1  5163.383179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.387109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.387129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163344098160
          <idle>-0       [000] d.h1  5163.387169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.391109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.391129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163348097792
          <idle>-0       [000] d.h1  5163.391178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.395104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.395124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163352092896
          <idle>-0       [000] d.h1  5163.395162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.399107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.399126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163356095040
          <idle>-0       [000] d.h1  5163.399157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.403105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.403125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163360093888
          <idle>-0       [000] d.h1  5163.403142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.403171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.403190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.403201: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183137 baseclk=4296183137
          <idle>-0       [000] .Ns1  5163.403238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.403274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.403298: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.403351: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.407096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.407122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163364086560
          <idle>-0       [000] d.h1  5163.407172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.411084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.411105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163368074064
          <idle>-0       [000] d.h1  5163.411147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.415089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.415095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163372067776
          <idle>-0       [000] d.h1  5163.415110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.419080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.419100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163376068768
          <idle>-0       [000] d.h1  5163.419138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.423083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.423102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163380071440
          <idle>-0       [000] d.h1  5163.423140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.427082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.427102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163384070784
          <idle>-0       [000] d.h1  5163.427140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.431082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.431101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163388070432
          <idle>-0       [000] d.h1  5163.431139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.435084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.435105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163392077168
          <idle>-0       [000] d.h1  5163.435118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.439102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.439122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163396091200
          <idle>-0       [000] d.h1  5163.439160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.443106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.443125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163400094480
          <idle>-0       [000] d.h1  5163.443164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.447105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.447111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163404083888
          <idle>-0       [000] d.h1  5163.447126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.451103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.451122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163408091056
          <idle>-0       [000] d.h1  5163.451160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.455116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.455122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163412094720
          <idle>-0       [000] d.h1  5163.455137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.459097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.459117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163416086000
          <idle>-0       [000] d.h1  5163.459157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.463108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.463127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163420096192
          <idle>-0       [000] d.h1  5163.463166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.467106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.467125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163424094640
          <idle>-0       [000] d.h1  5163.467163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.471095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.471114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163428083152
          <idle>-0       [000] d.h1  5163.471152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.475108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.475127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163432096608
          <idle>-0       [000] d.h1  5163.475165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.479107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.479126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163436095728
          <idle>-0       [000] d.h1  5163.479164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.483111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.483131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163440099936
          <idle>-0       [000] d.h1  5163.483168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.487108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.487127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163444096448
          <idle>-0       [000] d.h1  5163.487164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.491103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.491109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163448081552
          <idle>-0       [000] d.h1  5163.491123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.495103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.495122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163452091520
          <idle>-0       [000] d.h1  5163.495140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.495168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.495187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.495212: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296183160 baseclk=4296183160
          <idle>-0       [000] dNs1  5163.495256: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296183160 baseclk=4296183160
          <idle>-0       [000] dNs1  5163.495267: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296183160 baseclk=4296183160
          <idle>-0       [000] dNs1  5163.495279: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296183160 baseclk=4296183160
          <idle>-0       [000] dNs1  5163.495288: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296183160 baseclk=4296183160
          <idle>-0       [000] .Ns1  5163.495298: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.495344: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5163.495396: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5163.495426: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5163.495445: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5163.495459: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5163.495480: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5163.495497: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5163.495513: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.499121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.499148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163456112736
          <idle>-0       [000] d.h1  5163.499204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.503110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.503132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163460100256
          <idle>-0       [000] d.h1  5163.503152: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.503185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.503205: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.503217: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183162 baseclk=4296183162
          <idle>-0       [000] .Ns1  5163.503254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.503291: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.503315: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5163.503402: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.507112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.507139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163464103264
          <idle>-0       [000] d.h1  5163.507160: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.507200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.507220: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.507245: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183163 baseclk=4296183163
          <idle>-0       [000] .Ns1  5163.507282: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.507317: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.507324: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.507341: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.511134: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.511143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163468113776
          <idle>-0       [000] d.h1  5163.511162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.515108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.515129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163472097232
          <idle>-0       [000] d.h1  5163.515172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.519110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.519130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163476098736
          <idle>-0       [000] d.h1  5163.519170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.523109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.523129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163480097456
          <idle>-0       [000] d.h1  5163.523161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.527098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.527118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163484086528
          <idle>-0       [000] d.h1  5163.527156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.531109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.531128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163488097264
          <idle>-0       [000] d.h1  5163.531167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.535110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.535130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163492098400
          <idle>-0       [000] d.h1  5163.535168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.539116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.539136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163496104800
          <idle>-0       [000] d.h1  5163.539182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.543118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.543138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163500106496
          <idle>-0       [000] d.h1  5163.543182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.547101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.547107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163504079392
          <idle>-0       [000] d.h1  5163.547121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.551101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.551120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163508089584
          <idle>-0       [000] d.h1  5163.551158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.555113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.555134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163512102432
          <idle>-0       [000] d.h1  5163.555176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.559109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.559128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163516097472
          <idle>-0       [000] d.h1  5163.559146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.559175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.559202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5163.559206: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183176 baseclk=4296183176
          <idle>-0       [000] .Ns1  5163.559234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.559246: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5163.559282: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.563111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.563120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163520090560
          <idle>-0       [000] d.h1  5163.563138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.567127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.567148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163524116080
          <idle>-0       [000] d.h1  5163.567189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.571119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.571140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163528108272
          <idle>-0       [000] d.h1  5163.571177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.575106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.575126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163532095120
          <idle>-0       [000] d.h1  5163.575165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.579117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.579137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163536105840
          <idle>-0       [000] d.h1  5163.579154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.579183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.579214: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5163.579225: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183181 baseclk=4296183181
          <idle>-0       [000] .Ns1  5163.579270: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.579308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.579317: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5163.579342: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5163.579374: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.583116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.583144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163540107056
          <idle>-0       [000] d.h1  5163.583208: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.587114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.587121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163544093472
          <idle>-0       [000] d.h1  5163.587138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.591120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.591140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163548108544
          <idle>-0       [000] d.h1  5163.591179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.595109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.595128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163552097184
          <idle>-0       [000] d.h1  5163.595169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.599104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.599123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163556092496
          <idle>-0       [000] d.h1  5163.599161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.603103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.603123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163560091760
          <idle>-0       [000] d.h1  5163.603161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.607109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.607128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163564097456
          <idle>-0       [000] d.h1  5163.607166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.611106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.611125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163568094512
          <idle>-0       [000] d.h1  5163.611142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.611171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.611190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.611201: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183189 baseclk=4296183189
          <idle>-0       [000] .Ns1  5163.611242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.611254: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.611265: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.611284: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.615115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.615141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163572106560
          <idle>-0       [000] d.h1  5163.615197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.619099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.619120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163576088496
          <idle>-0       [000] d.h1  5163.619162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.623110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.623131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163580099424
          <idle>-0       [000] d.h1  5163.623171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.627108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.627128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163584097232
          <idle>-0       [000] d.h1  5163.627168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.631105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.631111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163588083664
          <idle>-0       [000] d.h1  5163.631117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.631129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.631133: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.631138: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183194 baseclk=4296183194
          <idle>-0       [000] .Ns1  5163.631166: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.631178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.631186: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5163.631216: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.635125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.635151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163592116368
          <idle>-0       [000] d.h1  5163.635217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.639107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.639128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163596096048
          <idle>-0       [000] d.h1  5163.639171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.643112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.643132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163600101104
          <idle>-0       [000] d.h1  5163.643173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.647112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.647131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163604100576
          <idle>-0       [000] d.h1  5163.647171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.651088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.651095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163608067040
          <idle>-0       [000] d.h1  5163.651109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.655106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.655126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163612094640
          <idle>-0       [000] d.h1  5163.655163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.659112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.659118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163616090880
          <idle>-0       [000] d.h1  5163.659132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.663103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.663122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163620091360
          <idle>-0       [000] d.h1  5163.663160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.667108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.667127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163624096432
          <idle>-0       [000] d.h1  5163.667165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.671117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.671137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163628106096
          <idle>-0       [000] d.h1  5163.671175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.675103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.675109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163632081760
          <idle>-0       [000] d.h1  5163.675123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.679110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.679129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163636098528
          <idle>-0       [000] d.h1  5163.679166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.683110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.683130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163640098768
          <idle>-0       [000] d.h1  5163.683167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.687120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.687139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163644108080
          <idle>-0       [000] d.h1  5163.687178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.691111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.691131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163648099808
          <idle>-0       [000] d.h1  5163.691169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.695111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.695130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163652099392
          <idle>-0       [000] d.h1  5163.695168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.699119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.699139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163656107776
          <idle>-0       [000] d.h1  5163.699176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.703118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.703124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163660096832
          <idle>-0       [000] d.h1  5163.703138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.707106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.707112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163664084688
          <idle>-0       [000] d.h1  5163.707126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.711120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.711139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163668107872
          <idle>-0       [000] d.h1  5163.711175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.715109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.715116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163672088176
          <idle>-0       [000] d.h1  5163.715121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.715132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.715137: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.715140: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183215 baseclk=4296183215
          <idle>-0       [000] .Ns1  5163.715169: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.715181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.715189: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.715206: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.719114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.719141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163676111808
          <idle>-0       [000] d.h1  5163.719160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.723107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.723128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163680096272
          <idle>-0       [000] d.h1  5163.723162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.727105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.727125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163684093936
          <idle>-0       [000] d.h1  5163.727165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.731108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.731128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163688096784
          <idle>-0       [000] d.h1  5163.731167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.735108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.735127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163692096112
          <idle>-0       [000] d.h1  5163.735158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.739133: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.739139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163696111920
          <idle>-0       [000] d.h1  5163.739153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.743104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.743123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163700092064
          <idle>-0       [000] d.h1  5163.743161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.747108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.747127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163704096352
          <idle>-0       [000] d.h1  5163.747166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.751117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.751137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163708105568
          <idle>-0       [000] d.h1  5163.751173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.755096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.755115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163712083760
          <idle>-0       [000] d.h1  5163.755152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.759111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.759117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163716089296
          <idle>-0       [000] d.h1  5163.759122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.759133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.759148: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.759154: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183226 baseclk=4296183226
          <idle>-0       [000] .Ns1  5163.759167: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.759178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.759186: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5163.759216: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.763112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.763137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163720102240
          <idle>-0       [000] d.h1  5163.763189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.767100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.767121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163724088944
          <idle>-0       [000] d.h1  5163.767164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.771096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.771118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163728090528
          <idle>-0       [000] d.h1  5163.771133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.775100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.775106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163732078752
          <idle>-0       [000] d.h1  5163.775121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.779100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.779106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163736078752
          <idle>-0       [000] d.h1  5163.779120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.783121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.783140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163740109568
          <idle>-0       [000] d.h1  5163.783158: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.783189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.783208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5163.783219: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183232 baseclk=4296183232
          <idle>-0       [000] .Ns1  5163.783262: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.783297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.783321: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5163.783383: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5163.783440: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.787124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.787153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163744115392
          <idle>-0       [000] d.h1  5163.787208: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.791123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.791144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163748112448
          <idle>-0       [000] d.h1  5163.791188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.795125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.795146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163752113904
          <idle>-0       [000] d.h1  5163.795186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.799117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.799123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163756095488
          <idle>-0       [000] d.h1  5163.799138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.803104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.803124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163760092272
          <idle>-0       [000] d.h1  5163.803163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.807102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.807122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163764090640
          <idle>-0       [000] d.h1  5163.807160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.811096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.811115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163768084208
          <idle>-0       [000] d.h1  5163.811154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.815114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.815134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163772102848
          <idle>-0       [000] d.h1  5163.815171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.819108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.819127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163776096640
          <idle>-0       [000] d.h1  5163.819144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.819173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.819191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.819203: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183241 baseclk=4296183241
          <idle>-0       [000] .Ns1  5163.819238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.819250: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.819258: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.819277: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.823112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.823138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163780103136
          <idle>-0       [000] d.h1  5163.823177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.827126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.827147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163784115376
          <idle>-0       [000] d.h1  5163.827188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.831098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.831118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163788086672
          <idle>-0       [000] d.h1  5163.831158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.835108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.835128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163792096736
          <idle>-0       [000] d.h1  5163.835167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.839105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.839111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163796083776
          <idle>-0       [000] d.h1  5163.839126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.843104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.843123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163800092416
          <idle>-0       [000] d.h1  5163.843161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.847108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.847128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163804097184
          <idle>-0       [000] d.h1  5163.847166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.851114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.851120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163808092896
          <idle>-0       [000] d.h1  5163.851135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.855105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.855124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163812093472
          <idle>-0       [000] d.h1  5163.855166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.859109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.859115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163816087408
          <idle>-0       [000] d.h1  5163.859129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.863104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.863123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163820091872
          <idle>-0       [000] d.h1  5163.863161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.867108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.867127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163824096224
          <idle>-0       [000] d.h1  5163.867165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.871111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.871130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163828099680
          <idle>-0       [000] d.h1  5163.871177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.875111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.875130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163832099520
          <idle>-0       [000] d.h1  5163.875168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.879109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.879128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163836097184
          <idle>-0       [000] d.h1  5163.879145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.879174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.879193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.879206: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296183256 baseclk=4296183256
          <idle>-0       [000] .Ns1  5163.879246: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.879282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.879307: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5163.879343: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.883097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.883122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163840087424
          <idle>-0       [000] d.h1  5163.883173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.887110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.887131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163844099120
          <idle>-0       [000] d.h1  5163.887149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.887183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.887202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.887230: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183258 baseclk=4296183258
          <idle>-0       [000] .Ns1  5163.887262: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.887274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.887282: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5163.887311: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.891115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.891140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163848105344
          <idle>-0       [000] d.h1  5163.891192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.895110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.895139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163852099536
          <idle>-0       [000] d.h1  5163.895183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.899109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.899130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163856098352
          <idle>-0       [000] d.h1  5163.899171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.903111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.903132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163860100400
          <idle>-0       [000] d.h1  5163.903172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.907108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.907128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163864097040
          <idle>-0       [000] d.h1  5163.907168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.911121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.911140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163868109248
          <idle>-0       [000] d.h1  5163.911179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.915099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.915118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163872087520
          <idle>-0       [000] d.h1  5163.915157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.919108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.919127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163876096160
          <idle>-0       [000] d.h1  5163.919162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.923082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.923088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163880060720
          <idle>-0       [000] d.h1  5163.923094: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.923105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.923120: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5163.923126: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183267 baseclk=4296183267
          <idle>-0       [000] .Ns1  5163.923139: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.923151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.923159: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5163.923177: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.927094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.927120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163884084608
          <idle>-0       [000] d.h1  5163.927185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.931083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.931104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163888072592
          <idle>-0       [000] d.h1  5163.931146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.935083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.935104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163892073024
          <idle>-0       [000] d.h1  5163.935133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.939080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.939100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163896068464
          <idle>-0       [000] d.h1  5163.939137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.943083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.943102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163900071344
          <idle>-0       [000] d.h1  5163.943140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.947081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.947101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163904069472
          <idle>-0       [000] d.h1  5163.947138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.951105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.951125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163908094016
          <idle>-0       [000] d.h1  5163.951165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.955082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.955102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163912070704
          <idle>-0       [000] d.h1  5163.955140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.959083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.959103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163916071680
          <idle>-0       [000] d.h1  5163.959140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.963096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.963116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163920084864
          <idle>-0       [000] d.h1  5163.963153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.967095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.967114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163924083072
          <idle>-0       [000] d.h1  5163.967151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.971081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.971100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163928069776
          <idle>-0       [000] d.h1  5163.971137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.975083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.975102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163932071536
          <idle>-0       [000] d.h1  5163.975149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.979080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.979100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163936068752
          <idle>-0       [000] d.h1  5163.979136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.983095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.983126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163940083600
          <idle>-0       [000] d.h1  5163.983140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.987078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.987098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163944066816
          <idle>-0       [000] d.h1  5163.987115: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5163.987143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5163.987172: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5163.987183: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183283 baseclk=4296183283
          <idle>-0       [000] .Ns1  5163.987229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5163.987266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5163.987274: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5163.987297: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5163.987328: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5163.991099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.991109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163948079056
          <idle>-0       [000] d.h1  5163.991130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.995087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.995093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163952065600
          <idle>-0       [000] d.h1  5163.995109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5163.999093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5163.999100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163956072000
          <idle>-0       [000] d.h1  5163.999114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.003081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.003101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163960069616
          <idle>-0       [000] d.h1  5164.003139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.007082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.007101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163964070128
          <idle>-0       [000] d.h1  5164.007139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.011082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.011102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163968070816
          <idle>-0       [000] d.h1  5164.011139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.015081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.015100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163972069280
          <idle>-0       [000] d.h1  5164.015117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.015147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.015191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.015196: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183290 baseclk=4296183290
          <idle>-0       [000] .Ns1  5164.015209: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.015221: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.015230: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.015260: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.019099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.019125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163976089648
          <idle>-0       [000] d.h1  5164.019193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.023085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.023106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163980073920
          <idle>-0       [000] d.h1  5164.023148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.027085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.027105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163984073424
          <idle>-0       [000] d.h1  5164.027122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.027152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.027200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.027211: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183293 baseclk=4296183293
          <idle>-0       [000] .Ns1  5164.027245: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.027272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.027280: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.027297: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.031116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.031124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163988094928
          <idle>-0       [000] d.h1  5164.031145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.035084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.035104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163992072880
          <idle>-0       [000] d.h1  5164.035146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.039086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.039106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5163996074720
          <idle>-0       [000] d.h1  5164.039124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.039154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.039186: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.039200: timer_expire_entry: timer=0000000048541462 function=delayed_work_timer_fn now=4296183296 baseclk=4296183296
          <idle>-0       [000] .Ns1  5164.039235: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.039270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.039293: workqueue_execute_start: work struct 0000000048986af0: function work_fn
     kworker/0:2-112     [000] d..2  5164.039347: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.043097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.043123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164000088192
          <idle>-0       [000] d.h1  5164.043191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.047092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.047113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164004081104
          <idle>-0       [000] d.h1  5164.047155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.051100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.051120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164008088880
          <idle>-0       [000] d.h1  5164.051161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.055086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.055106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164012074704
          <idle>-0       [000] d.h1  5164.055165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.059063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.059069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164016041760
          <idle>-0       [000] d.h1  5164.059085: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.063085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.063105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164020074384
          <idle>-0       [000] d.h1  5164.063144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.067085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.067105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164024073856
          <idle>-0       [000] d.h1  5164.067142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.071084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.071104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164028073248
          <idle>-0       [000] d.h1  5164.071121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.071150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.071193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5164.071204: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183304 baseclk=4296183304
          <idle>-0       [000] .Ns1  5164.071236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.071278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5164.071308: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.075106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.075114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164032085296
          <idle>-0       [000] d.h1  5164.075133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.079084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.079105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164036073296
          <idle>-0       [000] d.h1  5164.079147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.083098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.083118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164040086416
          <idle>-0       [000] d.h1  5164.083157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.087086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.087106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164044074528
          <idle>-0       [000] d.h1  5164.087145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.091088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.091094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164048066624
          <idle>-0       [000] d.h1  5164.091108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.095081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.095101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164052069952
          <idle>-0       [000] d.h1  5164.095139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.099092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.099098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164056070272
          <idle>-0       [000] d.h1  5164.099112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.103080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.103100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164060068752
          <idle>-0       [000] d.h1  5164.103137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.107096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.107102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164064074512
          <idle>-0       [000] d.h1  5164.107116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.111081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.111100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164068069264
          <idle>-0       [000] d.h1  5164.111143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.115085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.115104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164072073200
          <idle>-0       [000] d.h1  5164.115142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.119084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.119104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164076072608
          <idle>-0       [000] d.h1  5164.119147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.123080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.123100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164080069040
          <idle>-0       [000] d.h1  5164.123138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.127101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.127107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164084079488
          <idle>-0       [000] d.h1  5164.127121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.131081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.131100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164088069440
          <idle>-0       [000] d.h1  5164.131117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.131150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.131154: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.131164: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183319 baseclk=4296183319
          <idle>-0       [000] .Ns1  5164.131178: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.131190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.131198: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.131216: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.135096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.135122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164092087024
          <idle>-0       [000] d.h1  5164.135172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.139083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.139105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164096072816
          <idle>-0       [000] d.h1  5164.139145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.143085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.143114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164100086880
          <idle>-0       [000] d.h1  5164.143120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.143132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.143147: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.143154: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183322 baseclk=4296183322
          <idle>-0       [000] .Ns1  5164.143167: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.143178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.143186: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.143215: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.147088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.147097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164104067904
          <idle>-0       [000] d.h1  5164.147115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.151083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.151104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164108072864
          <idle>-0       [000] d.h1  5164.151147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.155087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.155107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164112075648
          <idle>-0       [000] d.h1  5164.155148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.159085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.159105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164116074160
          <idle>-0       [000] d.h1  5164.159144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.163084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.163103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164120072656
          <idle>-0       [000] d.h1  5164.163142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.167084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.167103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164124071872
          <idle>-0       [000] d.h1  5164.167141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.171083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.171102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164128071440
          <idle>-0       [000] d.h1  5164.171145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.175081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.175100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164132069584
          <idle>-0       [000] d.h1  5164.175139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.179083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.179102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164136071648
          <idle>-0       [000] d.h1  5164.179139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.183084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.183103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164140072128
          <idle>-0       [000] d.h1  5164.183140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.187088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.187094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164144066928
          <idle>-0       [000] d.h1  5164.187108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.191085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.191091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164148063632
          <idle>-0       [000] d.h1  5164.191097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.191107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.191123: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5164.191129: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183334 baseclk=4296183334
          <idle>-0       [000] .Ns1  5164.191144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.191156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.191165: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5164.191187: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5164.191218: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.195098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.195127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164152089568
          <idle>-0       [000] d.h1  5164.195197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.199085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.199106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164156074544
          <idle>-0       [000] d.h1  5164.199148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.203087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.203106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164160075504
          <idle>-0       [000] d.h1  5164.203147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.207086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.207106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164164074752
          <idle>-0       [000] d.h1  5164.207145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.211084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.211104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164168073520
          <idle>-0       [000] d.h1  5164.211142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.215084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.215103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164172072048
          <idle>-0       [000] d.h1  5164.215141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.219084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.219103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164176072576
          <idle>-0       [000] d.h1  5164.219141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.223094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.223113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164180081888
          <idle>-0       [000] d.h1  5164.223150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.227082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.227101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164184070048
          <idle>-0       [000] d.h1  5164.227137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.231083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.231102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164188071840
          <idle>-0       [000] d.h1  5164.231140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.235083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.235102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164192071296
          <idle>-0       [000] d.h1  5164.235118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.235148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.235178: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.235189: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183345 baseclk=4296183345
          <idle>-0       [000] .Ns1  5164.235227: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.235262: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.235286: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.235348: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.239099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.239124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164196089472
          <idle>-0       [000] d.h1  5164.239189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.243084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.243105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164200073184
          <idle>-0       [000] d.h1  5164.243146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.247084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.247104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164204073360
          <idle>-0       [000] d.h1  5164.247144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.251084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.251104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164208072560
          <idle>-0       [000] d.h1  5164.251142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.255062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.255068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164212040432
          <idle>-0       [000] d.h1  5164.255082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.259120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.259127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164216099136
          <idle>-0       [000] d.h1  5164.259141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.263103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.263122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164220091856
          <idle>-0       [000] d.h1  5164.263160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.267108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.267127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164224096192
          <idle>-0       [000] d.h1  5164.267165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.271114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.271121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164228093248
          <idle>-0       [000] d.h1  5164.271126: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.271138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.271143: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.271147: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183354 baseclk=4296183354
          <idle>-0       [000] .Ns1  5164.271175: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.271187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.271195: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.271224: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.275115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.275141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164232105776
          <idle>-0       [000] d.h1  5164.275192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.279112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.279133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164236101328
          <idle>-0       [000] d.h1  5164.279176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.283110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.283130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164240099456
          <idle>-0       [000] d.h1  5164.283172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.287097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.287116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164244085168
          <idle>-0       [000] d.h1  5164.287155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.291108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.291127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164248096528
          <idle>-0       [000] d.h1  5164.291166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.295108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.295127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164252096608
          <idle>-0       [000] d.h1  5164.295145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.295174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.295193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.295217: timer_expire_entry: timer=000000000ed5fb1a function=delayed_work_timer_fn now=4296183360 baseclk=4296183360
          <idle>-0       [000] .Ns1  5164.295255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.295290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.295314: workqueue_execute_start: work struct 0000000094882d62: function ovs_dp_masks_rebalance [openvswitch]
     kworker/0:2-112     [000] d..2  5164.295372: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.299125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.299151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164256115888
          <idle>-0       [000] d.h1  5164.299201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.303106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.303113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164260085072
          <idle>-0       [000] d.h1  5164.303129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.307097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.307117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164264086112
          <idle>-0       [000] d.h1  5164.307158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.311118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.311138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164268107184
          <idle>-0       [000] d.h1  5164.311178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.315109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.315129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164272097792
          <idle>-0       [000] d.h1  5164.315167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.319108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.319127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164276096384
          <idle>-0       [000] d.h1  5164.319166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.323109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.323129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164280098432
          <idle>-0       [000] d.h1  5164.323171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.327111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.327131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164284099808
          <idle>-0       [000] d.h1  5164.327170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.331108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.331130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164288102864
          <idle>-0       [000] d.h1  5164.331145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.335103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.335122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164292091616
          <idle>-0       [000] d.h1  5164.335161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.339106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.339112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164296084704
          <idle>-0       [000] d.h1  5164.339118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.339130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.339134: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.339138: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183371 baseclk=4296183371
          <idle>-0       [000] .Ns1  5164.339167: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.339180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.339189: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.339208: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.343129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.343154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164300118960
          <idle>-0       [000] d.h1  5164.343203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.347107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.347127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164304095952
          <idle>-0       [000] d.h1  5164.347168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.351104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.351124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164308093200
          <idle>-0       [000] d.h1  5164.351163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.355108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.355127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164312096112
          <idle>-0       [000] d.h1  5164.355167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.359111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.359130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164316099120
          <idle>-0       [000] d.h1  5164.359181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.363105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.363111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164320083904
          <idle>-0       [000] d.h1  5164.363126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.367107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.367126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164324095568
          <idle>-0       [000] d.h1  5164.367165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.371110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.371130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164328098624
          <idle>-0       [000] d.h1  5164.371168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.375111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.375130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164332099232
          <idle>-0       [000] d.h1  5164.375168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.379118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.379137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164336105808
          <idle>-0       [000] d.h1  5164.379174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.383120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.383140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164340108640
          <idle>-0       [000] d.h1  5164.383178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.387079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.387098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164344067232
          <idle>-0       [000] d.h1  5164.387145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.391080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.391099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164348067712
          <idle>-0       [000] d.h1  5164.391135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.395083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.395102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164352071232
          <idle>-0       [000] d.h1  5164.395119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.395148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.395178: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5164.395188: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183385 baseclk=4296183385
          <idle>-0       [000] .Ns1  5164.395240: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.395253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.395261: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5164.395282: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5164.395311: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.399114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.399142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164356105200
          <idle>-0       [000] d.h1  5164.399165: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.399204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.399226: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.399263: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183386 baseclk=4296183386
          <idle>-0       [000] .Ns1  5164.399300: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.399339: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.399362: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.399448: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.403138: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.403164: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164360128944
          <idle>-0       [000] d.h1  5164.403217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.407113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.407134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164364102384
          <idle>-0       [000] d.h1  5164.407177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.411108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.411129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164368097168
          <idle>-0       [000] d.h1  5164.411169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.415109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.415129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164372098016
          <idle>-0       [000] d.h1  5164.415170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.419108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.419129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164376097200
          <idle>-0       [000] d.h1  5164.419178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.423102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.423122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164380091072
          <idle>-0       [000] d.h1  5164.423160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.427109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.427129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164384097392
          <idle>-0       [000] d.h1  5164.427167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.431107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.431127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164388096352
          <idle>-0       [000] d.h1  5164.431166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.435104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.435110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164392082768
          <idle>-0       [000] d.h1  5164.435125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.439118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.439138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164396106704
          <idle>-0       [000] d.h1  5164.439177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.443108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.443114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164400086992
          <idle>-0       [000] d.h1  5164.443120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.443132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.443137: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.443140: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183397 baseclk=4296183397
          <idle>-0       [000] .Ns1  5164.443165: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.443178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.443186: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.443203: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.447106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.447117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164404085504
          <idle>-0       [000] d.h1  5164.447137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.451107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.451128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164408096752
          <idle>-0       [000] d.h1  5164.451171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.455112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.455133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164412101328
          <idle>-0       [000] d.h1  5164.455173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.459107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.459127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164416095888
          <idle>-0       [000] d.h1  5164.459163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.463094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.463114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164420083344
          <idle>-0       [000] d.h1  5164.463153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.467095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.467101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164424073440
          <idle>-0       [000] d.h1  5164.467117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.471104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.471123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164428092736
          <idle>-0       [000] d.h1  5164.471162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.475108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.475127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164432096304
          <idle>-0       [000] d.h1  5164.475166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.479112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.479131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164436100096
          <idle>-0       [000] d.h1  5164.479170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.483108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.483114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164440087008
          <idle>-0       [000] d.h1  5164.483129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.487108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.487126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164444095920
          <idle>-0       [000] d.h1  5164.487166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.491109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.491115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164448087680
          <idle>-0       [000] d.h1  5164.491130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.495102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.495108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164452080480
          <idle>-0       [000] d.h1  5164.495122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.499103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.499122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164456091104
          <idle>-0       [000] d.h1  5164.499161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.503107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.503113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164460086064
          <idle>-0       [000] d.h1  5164.503128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.507096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.507114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164464083920
          <idle>-0       [000] d.h1  5164.507153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.511110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.511129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164468098720
          <idle>-0       [000] d.h1  5164.511167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.515122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.515128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164472100272
          <idle>-0       [000] d.h1  5164.515142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.519095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.519113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164476082944
          <idle>-0       [000] d.h1  5164.519131: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.519161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.519180: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.519190: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296183416 baseclk=4296183416
          <idle>-0       [000] dNs1  5164.519226: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296183416 baseclk=4296183416
          <idle>-0       [000] dNs1  5164.519230: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296183416 baseclk=4296183416
          <idle>-0       [000] dNs1  5164.519234: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296183416 baseclk=4296183416
          <idle>-0       [000] dNs1  5164.519238: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296183416 baseclk=4296183416
          <idle>-0       [000] .Ns1  5164.519241: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.519253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5164.519271: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5164.519280: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5164.519285: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5164.519289: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5164.519293: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5164.519308: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5164.519324: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.523128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.523154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164480118944
          <idle>-0       [000] d.h1  5164.523224: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.527115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.527137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164484105392
          <idle>-0       [000] d.h1  5164.527157: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.527190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.527221: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.527234: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183418 baseclk=4296183418
          <idle>-0       [000] .Ns1  5164.527270: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.527306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.527327: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.527381: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.531120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.531128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164488099424
          <idle>-0       [000] d.h1  5164.531148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.535109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.535130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164492097888
          <idle>-0       [000] d.h1  5164.535173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.539118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.539138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164496106528
          <idle>-0       [000] d.h1  5164.539179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.543104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.543123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164500092336
          <idle>-0       [000] d.h1  5164.543163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.547113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.547132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164504101376
          <idle>-0       [000] d.h1  5164.547149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.547180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.547211: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.547224: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183423 baseclk=4296183423
          <idle>-0       [000] .Ns1  5164.547260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.547295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.547317: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.547368: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.551132: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.551157: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164508122192
          <idle>-0       [000] d.h1  5164.551220: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.555106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.555128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164512095952
          <idle>-0       [000] d.h1  5164.555174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.559112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.559132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164516100384
          <idle>-0       [000] d.h1  5164.559172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.563104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.563110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164520082336
          <idle>-0       [000] d.h1  5164.563125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.567108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.567127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164524096080
          <idle>-0       [000] d.h1  5164.567165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.571108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.571127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164528096000
          <idle>-0       [000] d.h1  5164.571175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.575097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.575116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164532085536
          <idle>-0       [000] d.h1  5164.575154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.579107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.579126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164536095536
          <idle>-0       [000] d.h1  5164.579177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.583111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.583130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164540099376
          <idle>-0       [000] d.h1  5164.583148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.583178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.583209: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5164.583219: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183432 baseclk=4296183432
          <idle>-0       [000] .Ns1  5164.583251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.583285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5164.583377: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.587113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.587142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164544105872
          <idle>-0       [000] d.h1  5164.587191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.591105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.591111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164548083840
          <idle>-0       [000] d.h1  5164.591127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.595096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.595116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164552084560
          <idle>-0       [000] d.h1  5164.595154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.599111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.599131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164556099728
          <idle>-0       [000] d.h1  5164.599148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.599177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.599182: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5164.599186: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183436 baseclk=4296183436
          <idle>-0       [000] .Ns1  5164.599226: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.599239: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.599247: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5164.599271: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5164.599301: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.603137: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.603165: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164560128608
          <idle>-0       [000] d.h1  5164.603209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.607105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.607111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164564083680
          <idle>-0       [000] d.h1  5164.607127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.611103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.611123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164568092176
          <idle>-0       [000] d.h1  5164.611164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.615109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.615128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164572097312
          <idle>-0       [000] d.h1  5164.615169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.619108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.619128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164576096896
          <idle>-0       [000] d.h1  5164.619168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.623085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.623104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164580073440
          <idle>-0       [000] d.h1  5164.623142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.627059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.627065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164584037872
          <idle>-0       [000] d.h1  5164.627079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.631094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.631100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164588072816
          <idle>-0       [000] d.h1  5164.631115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.635083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.635089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164592061408
          <idle>-0       [000] d.h1  5164.635103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.639060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.639067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164596039056
          <idle>-0       [000] d.h1  5164.639080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.643058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.643064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164600036880
          <idle>-0       [000] d.h1  5164.643078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.647080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.647099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164604067920
          <idle>-0       [000] d.h1  5164.647136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.651088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.651095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164608067200
          <idle>-0       [000] d.h1  5164.651100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.651112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.651117: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.651122: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183449 baseclk=4296183449
          <idle>-0       [000] .Ns1  5164.651149: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.651163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.651172: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.651195: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.655081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.655093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164612063168
          <idle>-0       [000] d.h1  5164.655108: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.655130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.655139: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.655152: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183450 baseclk=4296183450
          <idle>-0       [000] .Ns1  5164.655171: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.655189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.655200: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.655236: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.659093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.659102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164616072752
          <idle>-0       [000] d.h1  5164.659125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.663100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.663107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164620079296
          <idle>-0       [000] d.h1  5164.663123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.667086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.667093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164624065200
          <idle>-0       [000] d.h1  5164.667109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.671060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.671066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164628038800
          <idle>-0       [000] d.h1  5164.671081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.675107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.675127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164632095584
          <idle>-0       [000] d.h1  5164.675167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.679112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.679132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164636100528
          <idle>-0       [000] d.h1  5164.679172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.683117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.683137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164640105440
          <idle>-0       [000] d.h1  5164.683176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.687132: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.687152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164644120960
          <idle>-0       [000] d.h1  5164.687191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.691113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.691133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164648102208
          <idle>-0       [000] d.h1  5164.691173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.695110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.695129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164652098608
          <idle>-0       [000] d.h1  5164.695169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.699111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.699130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164656098896
          <idle>-0       [000] d.h1  5164.699168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.703111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.703130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164660099328
          <idle>-0       [000] d.h1  5164.703168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.707123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.707142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164664111088
          <idle>-0       [000] d.h1  5164.707180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.711111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.711130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164668098976
          <idle>-0       [000] d.h1  5164.711168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.715111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.715130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164672098928
          <idle>-0       [000] d.h1  5164.715168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.719110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.719140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164676098400
          <idle>-0       [000] d.h1  5164.719180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.723111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.723130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164680099088
          <idle>-0       [000] d.h1  5164.723169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.727110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.727129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164684098624
          <idle>-0       [000] d.h1  5164.727168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.731107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.731126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164688095312
          <idle>-0       [000] d.h1  5164.731164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.735110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.735129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164692097888
          <idle>-0       [000] d.h1  5164.735167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.739109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.739128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164696097680
          <idle>-0       [000] d.h1  5164.739166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.743110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.743139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164700111488
          <idle>-0       [000] d.h1  5164.743153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.747102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.747121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164704089904
          <idle>-0       [000] d.h1  5164.747159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.751107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.751126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164708095328
          <idle>-0       [000] d.h1  5164.751164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.755107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.755130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164712102464
          <idle>-0       [000] d.h1  5164.755136: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.755147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.755152: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.755156: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183475 baseclk=4296183475
          <idle>-0       [000] .Ns1  5164.755195: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.755208: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.755217: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.755238: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.759144: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.759153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164716123856
          <idle>-0       [000] d.h1  5164.759172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.763105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.763125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164720093568
          <idle>-0       [000] d.h1  5164.763167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.767107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.767126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164724095808
          <idle>-0       [000] d.h1  5164.767165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.771104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.771111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164728083200
          <idle>-0       [000] d.h1  5164.771125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.775096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.775115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164732084368
          <idle>-0       [000] d.h1  5164.775154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.779112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.779131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164736100384
          <idle>-0       [000] d.h1  5164.779170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.783121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.783140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164740108848
          <idle>-0       [000] d.h1  5164.783157: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.783187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.783215: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.783220: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183482 baseclk=4296183482
          <idle>-0       [000] .Ns1  5164.783248: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.783260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.783268: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.783297: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.787129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.787154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164744119104
          <idle>-0       [000] d.h1  5164.787207: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.791110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.791130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164748098992
          <idle>-0       [000] d.h1  5164.791187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.795108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.795128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164752096976
          <idle>-0       [000] d.h1  5164.795168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.799110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.799129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164756098208
          <idle>-0       [000] d.h1  5164.799168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.803107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.803126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164760094688
          <idle>-0       [000] d.h1  5164.803143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.803172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.803191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5164.803204: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183487 baseclk=4296183487
          <idle>-0       [000] .Ns1  5164.803248: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.803284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.803308: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5164.803383: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5164.803478: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.807113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.807141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164764103728
          <idle>-0       [000] d.h1  5164.807198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.811116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.811137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164768105072
          <idle>-0       [000] d.h1  5164.811179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.815110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.815129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164772097888
          <idle>-0       [000] d.h1  5164.815169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.819107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.819127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164776095616
          <idle>-0       [000] d.h1  5164.819166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.823104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.823125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164780093472
          <idle>-0       [000] d.h1  5164.823167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.827123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.827143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164784111856
          <idle>-0       [000] d.h1  5164.827183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.831107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.831126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164788095232
          <idle>-0       [000] d.h1  5164.831165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.835109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.835129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164792097584
          <idle>-0       [000] d.h1  5164.835167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.839110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.839136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164796108704
          <idle>-0       [000] d.h1  5164.839150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.843110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.843116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164800088384
          <idle>-0       [000] d.h1  5164.843130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.847104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.847122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164804091696
          <idle>-0       [000] d.h1  5164.847161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.851108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.851127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164808096624
          <idle>-0       [000] d.h1  5164.851166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.855110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.855129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164812097760
          <idle>-0       [000] d.h1  5164.855168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.859106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.859124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164816093600
          <idle>-0       [000] d.h1  5164.859142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.859172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.859203: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.859219: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183501 baseclk=4296183501
          <idle>-0       [000] .Ns1  5164.859260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.859306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.859341: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.859361: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.863118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.863144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164820108416
          <idle>-0       [000] d.h1  5164.863206: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.867110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.867130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164824098528
          <idle>-0       [000] d.h1  5164.867172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.871109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.871130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164828098384
          <idle>-0       [000] d.h1  5164.871147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.871177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.871197: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.871210: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296183504 baseclk=4296183504
          <idle>-0       [000] .Ns1  5164.871245: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.871281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.871304: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5164.871388: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.875091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.875100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164832070864
          <idle>-0       [000] d.h1  5164.875120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.879112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.879133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164836100912
          <idle>-0       [000] d.h1  5164.879177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.883096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.883105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164840076336
          <idle>-0       [000] d.h1  5164.883126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.887087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.887094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164844066048
          <idle>-0       [000] d.h1  5164.887110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.891106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.891125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164848094032
          <idle>-0       [000] d.h1  5164.891165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.895111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.895130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164852098736
          <idle>-0       [000] d.h1  5164.895169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.899104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.899123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164856091952
          <idle>-0       [000] d.h1  5164.899162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.903108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.903128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164860096720
          <idle>-0       [000] d.h1  5164.903166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.907106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.907112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164864084784
          <idle>-0       [000] d.h1  5164.907126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.911100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.911106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164868078768
          <idle>-0       [000] d.h1  5164.911112: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.911124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.911129: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.911134: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183514 baseclk=4296183514
          <idle>-0       [000] .Ns1  5164.911153: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.911167: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.911178: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5164.911211: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.915098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.915125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164872089040
          <idle>-0       [000] d.h1  5164.915188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.919107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.919128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164876096160
          <idle>-0       [000] d.h1  5164.919171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.923105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.923112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164880083952
          <idle>-0       [000] d.h1  5164.923127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.927103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.927123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164884091984
          <idle>-0       [000] d.h1  5164.927162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.931108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.931127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164888096080
          <idle>-0       [000] d.h1  5164.931165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.935117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.935137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164892105968
          <idle>-0       [000] d.h1  5164.935175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.939105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.939124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164896093456
          <idle>-0       [000] d.h1  5164.939163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.943108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.943128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164900096784
          <idle>-0       [000] d.h1  5164.943166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.947115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.947134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164904103312
          <idle>-0       [000] d.h1  5164.947172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.951107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.951127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164908095728
          <idle>-0       [000] d.h1  5164.951162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.955114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.955121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164912093024
          <idle>-0       [000] d.h1  5164.955134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.959104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.959123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164916092400
          <idle>-0       [000] d.h1  5164.959161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.963120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.963140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164920108560
          <idle>-0       [000] d.h1  5164.963156: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5164.963186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5164.963229: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5164.963244: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183527 baseclk=4296183527
          <idle>-0       [000] .Ns1  5164.963282: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5164.963318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5164.963342: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5164.963401: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5164.967119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.967145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164924109376
          <idle>-0       [000] d.h1  5164.967179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.971106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.971127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164928094976
          <idle>-0       [000] d.h1  5164.971170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.975088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.975108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164932077136
          <idle>-0       [000] d.h1  5164.975148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.979084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.979103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164936072176
          <idle>-0       [000] d.h1  5164.979142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.983081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.983101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164940069632
          <idle>-0       [000] d.h1  5164.983139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.987082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.987102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164944071024
          <idle>-0       [000] d.h1  5164.987138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.991080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.991099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164948068368
          <idle>-0       [000] d.h1  5164.991137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.995082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.995102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164952070896
          <idle>-0       [000] d.h1  5164.995149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5164.999081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5164.999100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164956069424
          <idle>-0       [000] d.h1  5164.999137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.003082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.003101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164960070576
          <idle>-0       [000] d.h1  5165.003149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.007079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.007098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164964067216
          <idle>-0       [000] d.h1  5165.007115: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.007145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.007177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5165.007183: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183538 baseclk=4296183538
          <idle>-0       [000] .Ns1  5165.007199: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.007211: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.007219: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5165.007245: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5165.007274: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.011108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.011117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164968087472
          <idle>-0       [000] d.h1  5165.011139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.015110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.015131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164972098848
          <idle>-0       [000] d.h1  5165.015175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.019109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.019129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164976097264
          <idle>-0       [000] d.h1  5165.019160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.023113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.023132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164980101376
          <idle>-0       [000] d.h1  5165.023172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.027107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.027127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164984095584
          <idle>-0       [000] d.h1  5165.027166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.031111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.031131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164988099456
          <idle>-0       [000] d.h1  5165.031171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.035110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.035130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164992098496
          <idle>-0       [000] d.h1  5165.035170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.039134: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.039153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5164996122704
          <idle>-0       [000] d.h1  5165.039171: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.039200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.039231: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.039244: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183546 baseclk=4296183546
          <idle>-0       [000] .Ns1  5165.039282: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.039319: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.039327: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.039358: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.043113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.043139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165000104048
          <idle>-0       [000] d.h1  5165.043197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.047123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.047144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165004112176
          <idle>-0       [000] d.h1  5165.047187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.051110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.051130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165008098736
          <idle>-0       [000] d.h1  5165.051171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.055110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.055134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165012101936
          <idle>-0       [000] d.h1  5165.055185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.059109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.059128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165016097744
          <idle>-0       [000] d.h1  5165.059168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.063111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.063131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165020099696
          <idle>-0       [000] d.h1  5165.063191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.067116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.067135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165024104688
          <idle>-0       [000] d.h1  5165.067153: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.067183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.067214: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.067225: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183553 baseclk=4296183553
          <idle>-0       [000] .Ns1  5165.067268: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.067309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.067338: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.067360: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.071125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.071151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165028115760
          <idle>-0       [000] d.h1  5165.071210: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.075109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.075130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165032098704
          <idle>-0       [000] d.h1  5165.075173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.079087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.079093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165036065472
          <idle>-0       [000] d.h1  5165.079108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.083108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.083128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165040097136
          <idle>-0       [000] d.h1  5165.083167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.087111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.087131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165044099888
          <idle>-0       [000] d.h1  5165.087180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.091106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.091126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165048094768
          <idle>-0       [000] d.h1  5165.091174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.095108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.095127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165052096240
          <idle>-0       [000] d.h1  5165.095144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.095174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.095192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5165.095206: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183560 baseclk=4296183560
          <idle>-0       [000] .Ns1  5165.095239: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.095286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5165.095322: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.099123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.099152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165056114848
          <idle>-0       [000] d.h1  5165.099196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.103109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.103130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165060098048
          <idle>-0       [000] d.h1  5165.103172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.107093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.107099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165064071776
          <idle>-0       [000] d.h1  5165.107114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.111083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.111089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165068062000
          <idle>-0       [000] d.h1  5165.111104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.115083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.115090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165072062112
          <idle>-0       [000] d.h1  5165.115104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.119083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.119089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165076061456
          <idle>-0       [000] d.h1  5165.119104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.123083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.123089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165080061584
          <idle>-0       [000] d.h1  5165.123103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.127084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.127090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165084062336
          <idle>-0       [000] d.h1  5165.127104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.131083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.131089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165088061360
          <idle>-0       [000] d.h1  5165.131103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.135057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.135063: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165092035712
          <idle>-0       [000] d.h1  5165.135077: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.139084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.139090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165096062640
          <idle>-0       [000] d.h1  5165.139104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.143083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.143093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165100061680
          <idle>-0       [000] d.h1  5165.143107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.147097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.147103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165104075840
          <idle>-0       [000] d.h1  5165.147117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.151083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.151089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165108061680
          <idle>-0       [000] d.h1  5165.151103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.155082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.155088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165112060720
          <idle>-0       [000] d.h1  5165.155102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.159084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.159090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165116062432
          <idle>-0       [000] d.h1  5165.159104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.163082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.163088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165120060800
          <idle>-0       [000] d.h1  5165.163102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.167110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.167116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165124088816
          <idle>-0       [000] d.h1  5165.167122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.167133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.167148: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.167156: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183578 baseclk=4296183578
          <idle>-0       [000] .Ns1  5165.167173: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.167187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.167197: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.167231: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.171094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.171120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165128084928
          <idle>-0       [000] d.h1  5165.171142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.171194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.171212: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.171224: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183579 baseclk=4296183579
          <idle>-0       [000] .Ns1  5165.171259: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.171297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.171319: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.171368: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.175091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.175099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165132070528
          <idle>-0       [000] d.h1  5165.175119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.179087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.179094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165136066400
          <idle>-0       [000] d.h1  5165.179110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.183083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.183104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165140072512
          <idle>-0       [000] d.h1  5165.183144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.187085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.187091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165144063904
          <idle>-0       [000] d.h1  5165.187106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.191080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.191109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165148081232
          <idle>-0       [000] d.h1  5165.191123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.195080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.195099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165152067920
          <idle>-0       [000] d.h1  5165.195137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.199083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.199103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165156071904
          <idle>-0       [000] d.h1  5165.199141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.203083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.203103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165160071808
          <idle>-0       [000] d.h1  5165.203141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.207084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.207103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165164072160
          <idle>-0       [000] d.h1  5165.207141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.211094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.211100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165168072464
          <idle>-0       [000] d.h1  5165.211105: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.211116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.211131: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5165.211138: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183589 baseclk=4296183589
          <idle>-0       [000] .Ns1  5165.211155: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.211167: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.211176: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5165.211210: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5165.211245: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.215091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.215101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165172070672
          <idle>-0       [000] d.h1  5165.215122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.219083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.219104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165176072304
          <idle>-0       [000] d.h1  5165.219147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.223085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.223108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165180080624
          <idle>-0       [000] d.h1  5165.223122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.227091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.227110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165184079120
          <idle>-0       [000] d.h1  5165.227148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.231082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.231101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165188070400
          <idle>-0       [000] d.h1  5165.231140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.235087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.235093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165192065408
          <idle>-0       [000] d.h1  5165.235107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.239081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.239101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165196069616
          <idle>-0       [000] d.h1  5165.239138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.243082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.243102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165200070848
          <idle>-0       [000] d.h1  5165.243130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.247083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.247089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165204061920
          <idle>-0       [000] d.h1  5165.247104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.251080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.251099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165208068576
          <idle>-0       [000] d.h1  5165.251138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.255062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.255068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165212040336
          <idle>-0       [000] d.h1  5165.255082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.259058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.259065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165216037184
          <idle>-0       [000] d.h1  5165.259079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.263059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.263066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165220038096
          <idle>-0       [000] d.h1  5165.263080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.267085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.267091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165224063216
          <idle>-0       [000] d.h1  5165.267105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.271094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.271105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165228076336
          <idle>-0       [000] d.h1  5165.271131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.275109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.275130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165232098688
          <idle>-0       [000] d.h1  5165.275150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.275183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.275225: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.275233: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183605 baseclk=4296183605
          <idle>-0       [000] .Ns1  5165.275256: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.275273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.275285: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.275310: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.279126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.279153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165236117136
          <idle>-0       [000] d.h1  5165.279230: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.283115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.283137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165240105328
          <idle>-0       [000] d.h1  5165.283184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.287121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.287142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165244110336
          <idle>-0       [000] d.h1  5165.287187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.291117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.291137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165248105904
          <idle>-0       [000] d.h1  5165.291178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.295107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.295127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165252096480
          <idle>-0       [000] d.h1  5165.295146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.295177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.295196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.295225: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183610 baseclk=4296183610
          <idle>-0       [000] .Ns1  5165.295283: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.295296: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.295305: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.295337: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.299130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.299157: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165256120976
          <idle>-0       [000] d.h1  5165.299209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.303106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.303127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165260095360
          <idle>-0       [000] d.h1  5165.303171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.307102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.307122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165264090848
          <idle>-0       [000] d.h1  5165.307162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.311106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.311112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165268084768
          <idle>-0       [000] d.h1  5165.311132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.315120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.315139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165272108480
          <idle>-0       [000] d.h1  5165.315177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.319082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.319101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165276070256
          <idle>-0       [000] d.h1  5165.319139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.323099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.323119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165280087776
          <idle>-0       [000] d.h1  5165.323160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.327108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.327128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165284096832
          <idle>-0       [000] d.h1  5165.327167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.331109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.331128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165288097344
          <idle>-0       [000] d.h1  5165.331167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.335106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.335112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165292084704
          <idle>-0       [000] d.h1  5165.335126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.339103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.339122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165296091600
          <idle>-0       [000] d.h1  5165.339160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.343111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.343131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165300099712
          <idle>-0       [000] d.h1  5165.343168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.347109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.347127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165304096976
          <idle>-0       [000] d.h1  5165.347166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.351106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.351112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165308084672
          <idle>-0       [000] d.h1  5165.351127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.355103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.355122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165312091120
          <idle>-0       [000] d.h1  5165.355160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.359111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.359130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165316099440
          <idle>-0       [000] d.h1  5165.359168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.363109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.363115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165320087776
          <idle>-0       [000] d.h1  5165.363130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.367106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.367125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165324094192
          <idle>-0       [000] d.h1  5165.367163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.371110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.371129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165328098320
          <idle>-0       [000] d.h1  5165.371166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.375082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.375101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165332070544
          <idle>-0       [000] d.h1  5165.375138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.379104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.379110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165336082640
          <idle>-0       [000] d.h1  5165.379116: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.379127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.379132: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.379136: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183631 baseclk=4296183631
          <idle>-0       [000] .Ns1  5165.379162: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.379176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.379185: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.379206: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.383117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.383126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165340096720
          <idle>-0       [000] d.h1  5165.383145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.387112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.387132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165344100784
          <idle>-0       [000] d.h1  5165.387174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.391109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.391115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165348087616
          <idle>-0       [000] d.h1  5165.391130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.395109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.395116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165352088208
          <idle>-0       [000] d.h1  5165.395130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.399103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.399122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165356091424
          <idle>-0       [000] d.h1  5165.399170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.403102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.403122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165360090496
          <idle>-0       [000] d.h1  5165.403152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.407101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.407120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165364089008
          <idle>-0       [000] d.h1  5165.407158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.411110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.411129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165368098576
          <idle>-0       [000] d.h1  5165.411167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.415110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.415129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165372098304
          <idle>-0       [000] d.h1  5165.415146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.415175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.415194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5165.415205: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183640 baseclk=4296183640
          <idle>-0       [000] .Ns1  5165.415251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.415263: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.415271: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5165.415302: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5165.415335: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.419117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.419146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165376108352
          <idle>-0       [000] d.h1  5165.419188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.423107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.423128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165380095968
          <idle>-0       [000] d.h1  5165.423147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.423180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.423198: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.423226: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183642 baseclk=4296183642
          <idle>-0       [000] .Ns1  5165.423266: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.423305: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.423314: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.423343: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.427113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.427140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165384104128
          <idle>-0       [000] d.h1  5165.427198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.431126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.431147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165388115440
          <idle>-0       [000] d.h1  5165.431190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.435096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.435116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165392084512
          <idle>-0       [000] d.h1  5165.435156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.439108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.439128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165396096720
          <idle>-0       [000] d.h1  5165.439168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.443103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.443123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165400091440
          <idle>-0       [000] d.h1  5165.443161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.447103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.447109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165404081824
          <idle>-0       [000] d.h1  5165.447124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.451104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.451123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165408091888
          <idle>-0       [000] d.h1  5165.451161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.455109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.455128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165412097312
          <idle>-0       [000] d.h1  5165.455166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.459106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.459125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165416094512
          <idle>-0       [000] d.h1  5165.459163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.463124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.463130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165420102880
          <idle>-0       [000] d.h1  5165.463145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.467092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.467112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165424080672
          <idle>-0       [000] d.h1  5165.467149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.471109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.471128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165428096880
          <idle>-0       [000] d.h1  5165.471164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.475106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.475125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165432094384
          <idle>-0       [000] d.h1  5165.475162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.479103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.479109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165436081632
          <idle>-0       [000] d.h1  5165.479123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.483082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.483101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165440070064
          <idle>-0       [000] d.h1  5165.483118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.483146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.483177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.483188: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183657 baseclk=4296183657
          <idle>-0       [000] .Ns1  5165.483224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.483253: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.483261: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.483278: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.487114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.487140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165444105056
          <idle>-0       [000] d.h1  5165.487204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.491110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.491130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165448098976
          <idle>-0       [000] d.h1  5165.491173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.495111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.495130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165452099584
          <idle>-0       [000] d.h1  5165.495171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.499122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.499142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165456110784
          <idle>-0       [000] d.h1  5165.499182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.503106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.503126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165460094816
          <idle>-0       [000] d.h1  5165.503179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.507109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.507129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165464097440
          <idle>-0       [000] d.h1  5165.507167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.511110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.511129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165468098592
          <idle>-0       [000] d.h1  5165.511168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.515110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.515129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165472098544
          <idle>-0       [000] d.h1  5165.515167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.519121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.519140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165476109808
          <idle>-0       [000] d.h1  5165.519179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.523106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.523125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165480094224
          <idle>-0       [000] d.h1  5165.523168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.527102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.527121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165484090384
          <idle>-0       [000] d.h1  5165.527159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.531109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.531128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165488097296
          <idle>-0       [000] d.h1  5165.531165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.535109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.535128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165492097296
          <idle>-0       [000] d.h1  5165.535167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.539110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.539129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165496097984
          <idle>-0       [000] d.h1  5165.539166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.543100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.543118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165500088032
          <idle>-0       [000] d.h1  5165.543135: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.543164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.543183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.543196: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296183672 baseclk=4296183672
          <idle>-0       [000] dNs1  5165.543225: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296183672 baseclk=4296183672
          <idle>-0       [000] dNs1  5165.543229: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296183672 baseclk=4296183672
          <idle>-0       [000] dNs1  5165.543232: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296183672 baseclk=4296183672
          <idle>-0       [000] dNs1  5165.543235: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296183672 baseclk=4296183672
          <idle>-0       [000] .Ns1  5165.543238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.543250: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5165.543269: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5165.543281: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5165.543287: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5165.543292: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5165.543296: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5165.543313: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5165.543330: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.547125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.547152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165504116880
          <idle>-0       [000] d.h1  5165.547209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.551101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.551123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165508091392
          <idle>-0       [000] d.h1  5165.551142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.551176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.551195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.551223: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183674 baseclk=4296183674
          <idle>-0       [000] .Ns1  5165.551263: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.551298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.551322: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.551406: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.555117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.555142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165512107600
          <idle>-0       [000] d.h1  5165.555207: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.559108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.559129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165516096960
          <idle>-0       [000] d.h1  5165.559172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.563111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.563131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165520099616
          <idle>-0       [000] d.h1  5165.563172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.567118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.567125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165524097376
          <idle>-0       [000] d.h1  5165.567140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.571103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.571110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165528082112
          <idle>-0       [000] d.h1  5165.571124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.575107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.575126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165532095248
          <idle>-0       [000] d.h1  5165.575165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.579111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.579131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165536099888
          <idle>-0       [000] d.h1  5165.579170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.583121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.583153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165540109408
          <idle>-0       [000] d.h1  5165.583167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.587103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.587123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165544091888
          <idle>-0       [000] d.h1  5165.587140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.587169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.587188: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.587198: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183683 baseclk=4296183683
          <idle>-0       [000] .Ns1  5165.587235: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.587269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.587293: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.587329: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.591095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.591103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165548074176
          <idle>-0       [000] d.h1  5165.591122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.595100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.595106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165552078496
          <idle>-0       [000] d.h1  5165.595122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.599103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.599123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165556092160
          <idle>-0       [000] d.h1  5165.599164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.603107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.603113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165560085488
          <idle>-0       [000] d.h1  5165.603128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.607107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.607127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165564095936
          <idle>-0       [000] d.h1  5165.607144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.607175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.607195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5165.607220: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183688 baseclk=4296183688
          <idle>-0       [000] .Ns1  5165.607256: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.607289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5165.607386: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.611125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.611154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165568117264
          <idle>-0       [000] d.h1  5165.611203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.615120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.615127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165572099600
          <idle>-0       [000] d.h1  5165.615143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.619113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.619133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165576101968
          <idle>-0       [000] d.h1  5165.619151: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.619181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.619212: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5165.619225: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183691 baseclk=4296183691
          <idle>-0       [000] .Ns1  5165.619269: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.619308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.619332: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5165.619401: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5165.619484: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.623129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.623139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165580109456
          <idle>-0       [000] d.h1  5165.623161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.627112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.627147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165584101520
          <idle>-0       [000] d.h1  5165.627163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.631105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.631126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165588094288
          <idle>-0       [000] d.h1  5165.631167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.635110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.635129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165592098336
          <idle>-0       [000] d.h1  5165.635170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.639108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.639128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165596096848
          <idle>-0       [000] d.h1  5165.639167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.643110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.643130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165600098768
          <idle>-0       [000] d.h1  5165.643169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.647110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.647130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165604098912
          <idle>-0       [000] d.h1  5165.647169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.651106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.651125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165608094560
          <idle>-0       [000] d.h1  5165.651164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.655108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.655128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165612096720
          <idle>-0       [000] d.h1  5165.655164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.659093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.659099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165616071792
          <idle>-0       [000] d.h1  5165.659113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.663105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.663124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165620092624
          <idle>-0       [000] d.h1  5165.663172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.667128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.667147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165624116176
          <idle>-0       [000] d.h1  5165.667185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.671107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.671126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165628095664
          <idle>-0       [000] d.h1  5165.671164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.675121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.675127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165632099840
          <idle>-0       [000] d.h1  5165.675141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.679103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.679122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165636090976
          <idle>-0       [000] d.h1  5165.679139: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.679168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.679186: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.679200: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183706 baseclk=4296183706
          <idle>-0       [000] .Ns1  5165.679238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.679274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.679299: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.679386: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.683125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.683152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165640116512
          <idle>-0       [000] d.h1  5165.683204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.687112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.687133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165644101760
          <idle>-0       [000] d.h1  5165.687185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.691105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.691136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165648107888
          <idle>-0       [000] d.h1  5165.691141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.691153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.691167: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.691173: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183709 baseclk=4296183709
          <idle>-0       [000] .Ns1  5165.691187: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.691198: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.691206: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.691224: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.695089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.695098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165652068576
          <idle>-0       [000] d.h1  5165.695117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.699088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.699095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165656067248
          <idle>-0       [000] d.h1  5165.699111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.703081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.703101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165660070352
          <idle>-0       [000] d.h1  5165.703141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.707104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.707124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165664093216
          <idle>-0       [000] d.h1  5165.707163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.711110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.711130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165668098960
          <idle>-0       [000] d.h1  5165.711168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.715111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.715131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165672100112
          <idle>-0       [000] d.h1  5165.715169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.719112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.719118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165676090688
          <idle>-0       [000] d.h1  5165.719132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.723105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.723124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165680093552
          <idle>-0       [000] d.h1  5165.723162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.727108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.727127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165684096032
          <idle>-0       [000] d.h1  5165.727165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.731114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.731134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165688102880
          <idle>-0       [000] d.h1  5165.731172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.735103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.735126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165692098416
          <idle>-0       [000] d.h1  5165.735140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.739103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.739121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165696090864
          <idle>-0       [000] d.h1  5165.739159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.743118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.743137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165700106672
          <idle>-0       [000] d.h1  5165.743174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.747082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.747101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165704070048
          <idle>-0       [000] d.h1  5165.747139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.751083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.751102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165708070944
          <idle>-0       [000] d.h1  5165.751139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.755083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.755102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165712071696
          <idle>-0       [000] d.h1  5165.755140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.759082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.759101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165716070480
          <idle>-0       [000] d.h1  5165.759139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.763082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.763101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165720069984
          <idle>-0       [000] d.h1  5165.763139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.767083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.767102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165724071472
          <idle>-0       [000] d.h1  5165.767140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.771111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.771117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165728089424
          <idle>-0       [000] d.h1  5165.771131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.775094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.775119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165732091280
          <idle>-0       [000] d.h1  5165.775132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.779115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.779121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165736093664
          <idle>-0       [000] d.h1  5165.779135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.783113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.783132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165740101136
          <idle>-0       [000] d.h1  5165.783170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.787116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.787135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165744104288
          <idle>-0       [000] d.h1  5165.787172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.791106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.791125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165748094288
          <idle>-0       [000] d.h1  5165.791162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.795103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.795109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165752081456
          <idle>-0       [000] d.h1  5165.795114: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.795126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.795131: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.795135: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183735 baseclk=4296183735
          <idle>-0       [000] .Ns1  5165.795172: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.795185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.795193: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.795210: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.799135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.799161: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165756126080
          <idle>-0       [000] d.h1  5165.799212: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.803111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.803131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165760099888
          <idle>-0       [000] d.h1  5165.803173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.807109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.807128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165764097216
          <idle>-0       [000] d.h1  5165.807146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.807188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.807192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.807209: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183738 baseclk=4296183738
          <idle>-0       [000] .Ns1  5165.807224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.807235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.807243: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.807271: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.811123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.811160: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165768114320
          <idle>-0       [000] d.h1  5165.811180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.815112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.815133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165772101328
          <idle>-0       [000] d.h1  5165.815176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.819110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.819130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165776098880
          <idle>-0       [000] d.h1  5165.819170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.823114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.823134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165780102992
          <idle>-0       [000] d.h1  5165.823152: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.823205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.823211: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5165.823216: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183742 baseclk=4296183742
          <idle>-0       [000] .Ns1  5165.823232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.823246: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.823254: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5165.823277: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5165.823305: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.827124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.827133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165784103376
          <idle>-0       [000] d.h1  5165.827154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.831109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.831130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165788098256
          <idle>-0       [000] d.h1  5165.831174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.835111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.835131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165792100144
          <idle>-0       [000] d.h1  5165.835172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.839109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.839129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165796098016
          <idle>-0       [000] d.h1  5165.839169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.843119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.843138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165800107488
          <idle>-0       [000] d.h1  5165.843179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.847104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.847123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165804092160
          <idle>-0       [000] d.h1  5165.847162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.851106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.851125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165808094240
          <idle>-0       [000] d.h1  5165.851159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.855117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.855136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165812105088
          <idle>-0       [000] d.h1  5165.855173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.859106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.859125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165816094096
          <idle>-0       [000] d.h1  5165.859162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.863109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.863139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165820097088
          <idle>-0       [000] d.h1  5165.863145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.863156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.863161: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.863165: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296183752 baseclk=4296183752
          <idle>-0       [000] .Ns1  5165.863190: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.863203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.863211: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5165.863244: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.867113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.867139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165824103216
          <idle>-0       [000] d.h1  5165.867191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.871111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.871132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165828100128
          <idle>-0       [000] d.h1  5165.871175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.875107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.875126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165832095488
          <idle>-0       [000] d.h1  5165.875166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.879111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.879131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165836100000
          <idle>-0       [000] d.h1  5165.879171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.883111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.883144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165840100272
          <idle>-0       [000] d.h1  5165.883159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.887101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.887108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165844079952
          <idle>-0       [000] d.h1  5165.887124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.891120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.891139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165848108816
          <idle>-0       [000] d.h1  5165.891178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.895108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.895137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165852109552
          <idle>-0       [000] d.h1  5165.895151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.899105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.899124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165856093680
          <idle>-0       [000] d.h1  5165.899142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.899172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.899177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.899182: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183761 baseclk=4296183761
          <idle>-0       [000] .Ns1  5165.899220: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.899233: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.899242: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5165.899261: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.903138: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.903164: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165860128256
          <idle>-0       [000] d.h1  5165.903215: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.907110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.907131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165864099040
          <idle>-0       [000] d.h1  5165.907173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.911110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.911129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165868098400
          <idle>-0       [000] d.h1  5165.911169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.915105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.915125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165872093808
          <idle>-0       [000] d.h1  5165.915164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.919111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.919131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165876099792
          <idle>-0       [000] d.h1  5165.919178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.923104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.923123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165880092288
          <idle>-0       [000] d.h1  5165.923161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.927098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.927118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165884087120
          <idle>-0       [000] d.h1  5165.927156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.931105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.931125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165888093968
          <idle>-0       [000] d.h1  5165.931163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.935107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.935127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165892095728
          <idle>-0       [000] d.h1  5165.935144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5165.935173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5165.935191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5165.935205: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183770 baseclk=4296183770
          <idle>-0       [000] .Ns1  5165.935242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5165.935276: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5165.935300: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5165.935393: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.939123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.939149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165896113808
          <idle>-0       [000] d.h1  5165.939201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.943113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.943134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165900102064
          <idle>-0       [000] d.h1  5165.943176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.947110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.947131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165904099216
          <idle>-0       [000] d.h1  5165.947170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.951109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.951129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165908098048
          <idle>-0       [000] d.h1  5165.951168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.955107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.955127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165912095840
          <idle>-0       [000] d.h1  5165.955174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.958017: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.958037: hrtimer_expire_entry: hrtimer=0000000056a168fb function=it_real_fn now=5165915005744
          <idle>-0       [000] dNh1  5165.959341: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165916295120
          <idle>-0       [000] dNh1  5165.959393: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5165.959443: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rdisc next_pid=252 next_prio=120
           rdisc-252     [000] d..2  5165.959719: sched_switch: prev_comm=rdisc prev_pid=252 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5165.963160: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.963193: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165920157520
          <idle>-0       [000] d.h1  5165.963263: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.967112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.967126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165924091456
          <idle>-0       [000] d.h1  5165.967144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.971106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.971127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165928095792
          <idle>-0       [000] d.h1  5165.971169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.975089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.975109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165932078224
          <idle>-0       [000] d.h1  5165.975148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.979082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.979101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165936070608
          <idle>-0       [000] d.h1  5165.979140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.983081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.983100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165940069536
          <idle>-0       [000] d.h1  5165.983139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.987084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.987103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165944072272
          <idle>-0       [000] d.h1  5165.987142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.991084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.991104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165948072656
          <idle>-0       [000] d.h1  5165.991141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.995095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.995101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165952073648
          <idle>-0       [000] d.h1  5165.995115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5165.999080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5165.999100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165956068912
          <idle>-0       [000] d.h1  5165.999138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.003083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.003102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165960071648
          <idle>-0       [000] d.h1  5166.003120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.003149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.003187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.003206: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183787 baseclk=4296183787
          <idle>-0       [000] .Ns1  5166.003272: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.003322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.003337: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.003364: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.007100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.007127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165964091536
          <idle>-0       [000] d.h1  5166.007193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.011110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.011131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165968099840
          <idle>-0       [000] d.h1  5166.011173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.015106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.015127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165972095616
          <idle>-0       [000] d.h1  5166.015167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.019115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.019148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165976104192
          <idle>-0       [000] d.h1  5166.019163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.023116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.023142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165980114752
          <idle>-0       [000] d.h1  5166.023156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.027105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.027125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165984093584
          <idle>-0       [000] d.h1  5166.027142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.027172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.027177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5166.027198: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183793 baseclk=4296183793
          <idle>-0       [000] .Ns1  5166.027219: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.027231: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.027239: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5166.027301: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5166.027338: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.031115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.031145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165988107584
          <idle>-0       [000] d.h1  5166.031201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.035113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.035135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165992102640
          <idle>-0       [000] d.h1  5166.035179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.039110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.039131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5165996099392
          <idle>-0       [000] d.h1  5166.039172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.043107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.043127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166000095936
          <idle>-0       [000] d.h1  5166.043168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.047122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.047129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166004101056
          <idle>-0       [000] d.h1  5166.047144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.051104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.051123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166008092288
          <idle>-0       [000] d.h1  5166.051162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.055082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.055102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166012070448
          <idle>-0       [000] d.h1  5166.055140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.059106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.059125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166016094400
          <idle>-0       [000] d.h1  5166.059164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.063119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.063139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166020108128
          <idle>-0       [000] d.h1  5166.063157: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.063186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.063227: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.063233: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183802 baseclk=4296183802
          <idle>-0       [000] .Ns1  5166.063247: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.063259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.063267: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.063298: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.067114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.067145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166024116192
          <idle>-0       [000] d.h1  5166.067165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.071110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.071131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166028099872
          <idle>-0       [000] d.h1  5166.071174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.075097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.075117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166032086320
          <idle>-0       [000] d.h1  5166.075157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.079111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.079136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166036108912
          <idle>-0       [000] d.h1  5166.079151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.083106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.083126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166040094880
          <idle>-0       [000] d.h1  5166.083165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.087109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.087128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166044097360
          <idle>-0       [000] d.h1  5166.087167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.091107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.091127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166048096352
          <idle>-0       [000] d.h1  5166.091165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.095110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.095117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166052089056
          <idle>-0       [000] d.h1  5166.095131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.099079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.099098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166056067552
          <idle>-0       [000] d.h1  5166.099136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.103083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.103110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166060082352
          <idle>-0       [000] d.h1  5166.103123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.107079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.107099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166064068064
          <idle>-0       [000] d.h1  5166.107116: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.107145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.107177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.107187: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183813 baseclk=4296183813
          <idle>-0       [000] .Ns1  5166.107222: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.107266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.107275: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.107293: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.111099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.111134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166068090704
          <idle>-0       [000] d.h1  5166.111154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.115083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.115104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166072072832
          <idle>-0       [000] d.h1  5166.115145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.119082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.119101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166076070160
          <idle>-0       [000] d.h1  5166.119119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.119148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.119167: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5166.119187: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183816 baseclk=4296183816
          <idle>-0       [000] .Ns1  5166.119231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.119266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5166.119366: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.123094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.123120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166080084784
          <idle>-0       [000] d.h1  5166.123162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.127083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.127105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166084072848
          <idle>-0       [000] d.h1  5166.127147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.131083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.131103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166088071520
          <idle>-0       [000] d.h1  5166.131142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.135081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.135101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166092069728
          <idle>-0       [000] d.h1  5166.135139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.139081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.139101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166096069648
          <idle>-0       [000] d.h1  5166.139138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.143085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.143104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166100073408
          <idle>-0       [000] d.h1  5166.143142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.147095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.147101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166104073344
          <idle>-0       [000] d.h1  5166.147115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.151080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.151099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166108068272
          <idle>-0       [000] d.h1  5166.151136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.155083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.155103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166112071712
          <idle>-0       [000] d.h1  5166.155140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.159079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.159099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166116067792
          <idle>-0       [000] d.h1  5166.159136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.163080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.163099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166120068528
          <idle>-0       [000] d.h1  5166.163132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.167081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.167100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166124069152
          <idle>-0       [000] d.h1  5166.167137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.171083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.171103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166128071776
          <idle>-0       [000] d.h1  5166.171136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.175080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.175100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166132068928
          <idle>-0       [000] d.h1  5166.175136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.179079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.179098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166136067184
          <idle>-0       [000] d.h1  5166.179137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.183080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.183099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166140068336
          <idle>-0       [000] d.h1  5166.183136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.187082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.187102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166144070720
          <idle>-0       [000] d.h1  5166.187138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.191082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.191101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166148070544
          <idle>-0       [000] d.h1  5166.191129: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.191140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.191155: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.191162: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183834 baseclk=4296183834
          <idle>-0       [000] .Ns1  5166.191175: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.191187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.191195: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.191225: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.195095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.195122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166152086368
          <idle>-0       [000] d.h1  5166.195156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.199084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.199105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166156072960
          <idle>-0       [000] d.h1  5166.199148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.203084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.203105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166160073616
          <idle>-0       [000] d.h1  5166.203145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.207085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.207114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166164086112
          <idle>-0       [000] d.h1  5166.207128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.211081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.211100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166168069616
          <idle>-0       [000] d.h1  5166.211118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.211147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.211179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.211189: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183839 baseclk=4296183839
          <idle>-0       [000] .Ns1  5166.211225: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.211260: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.211284: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.211335: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.215099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.215124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166172088992
          <idle>-0       [000] d.h1  5166.215174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.219087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.219093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166176065504
          <idle>-0       [000] d.h1  5166.219108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.223083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.223103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166180071648
          <idle>-0       [000] d.h1  5166.223144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.227098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.227118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166184086608
          <idle>-0       [000] d.h1  5166.227158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.231085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.231104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166188073504
          <idle>-0       [000] d.h1  5166.231122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.231152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.231184: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5166.231194: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183844 baseclk=4296183844
          <idle>-0       [000] .Ns1  5166.231238: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.231274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.231297: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5166.231360: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5166.231439: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.235102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.235130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166192093104
          <idle>-0       [000] d.h1  5166.235200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.239084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.239105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166196073408
          <idle>-0       [000] d.h1  5166.239162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.243082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.243102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166200070480
          <idle>-0       [000] d.h1  5166.243142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.247085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.247105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166204073712
          <idle>-0       [000] d.h1  5166.247164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.251082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.251104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166208076416
          <idle>-0       [000] d.h1  5166.251118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.255081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.255100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166212069488
          <idle>-0       [000] d.h1  5166.255139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.259080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.259100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166216068960
          <idle>-0       [000] d.h1  5166.259138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.263086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.263106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166220074592
          <idle>-0       [000] d.h1  5166.263144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.267085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.267105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166224073568
          <idle>-0       [000] d.h1  5166.267142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.271088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.271095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166228067216
          <idle>-0       [000] d.h1  5166.271108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.275080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.275109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166232081456
          <idle>-0       [000] d.h1  5166.275122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.279082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.279102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166236070496
          <idle>-0       [000] d.h1  5166.279139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.283082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.283102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166240070976
          <idle>-0       [000] d.h1  5166.283139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.287087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.287093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166244065712
          <idle>-0       [000] d.h1  5166.287107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.291080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.291099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166248068528
          <idle>-0       [000] d.h1  5166.291136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.295083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.295102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166252071008
          <idle>-0       [000] d.h1  5166.295139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.299084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.299103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166256072592
          <idle>-0       [000] d.h1  5166.299140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.303084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.303103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166260072336
          <idle>-0       [000] d.h1  5166.303142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.307085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.307104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166264073280
          <idle>-0       [000] d.h1  5166.307141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.311084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.311103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166268072208
          <idle>-0       [000] d.h1  5166.311141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.315084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.315103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166272072064
          <idle>-0       [000] d.h1  5166.315120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.315149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.315181: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.315192: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183865 baseclk=4296183865
          <idle>-0       [000] .Ns1  5166.315230: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.315269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.315293: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.315341: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.319100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.319125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166276090448
          <idle>-0       [000] d.h1  5166.319147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.319198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.319216: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.319227: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183866 baseclk=4296183866
          <idle>-0       [000] .Ns1  5166.319260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.319297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.319319: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.319401: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.323103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.323130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166280094688
          <idle>-0       [000] d.h1  5166.323185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.327085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.327107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166284075328
          <idle>-0       [000] d.h1  5166.327150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.331086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.331107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166288075600
          <idle>-0       [000] d.h1  5166.331155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.335097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.335117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166292085904
          <idle>-0       [000] d.h1  5166.335157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.339085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.339104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166296073376
          <idle>-0       [000] d.h1  5166.339143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.343084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.343104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166300073056
          <idle>-0       [000] d.h1  5166.343121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.343152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.343184: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.343208: timer_expire_entry: timer=0000000024bf5008 function=delayed_work_timer_fn now=4296183872 baseclk=4296183872
          <idle>-0       [000] .Ns1  5166.343243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.343281: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.343306: workqueue_execute_start: work struct 00000000eb22cc8e: function neigh_periodic_work
     kworker/0:2-112     [000] d..2  5166.343370: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.347099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.347125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166304089888
          <idle>-0       [000] d.h1  5166.347192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.351085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.351106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166308074576
          <idle>-0       [000] d.h1  5166.351150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.355086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.355106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166312074800
          <idle>-0       [000] d.h1  5166.355147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.359085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.359105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166316073792
          <idle>-0       [000] d.h1  5166.359144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.363084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.363104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166320072784
          <idle>-0       [000] d.h1  5166.363142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.367089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.367095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166324068000
          <idle>-0       [000] d.h1  5166.367110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.371081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.371106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166328078256
          <idle>-0       [000] d.h1  5166.371119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.375082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.375101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166332070064
          <idle>-0       [000] d.h1  5166.375138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.379084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.379103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166336072272
          <idle>-0       [000] d.h1  5166.379141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.383084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.383104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166340072816
          <idle>-0       [000] d.h1  5166.383142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.387085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.387104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166344073280
          <idle>-0       [000] d.h1  5166.387142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.391084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.391118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166348071968
          <idle>-0       [000] d.h1  5166.391158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.395085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.395105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166352073792
          <idle>-0       [000] d.h1  5166.395143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.399083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.399102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166356071504
          <idle>-0       [000] d.h1  5166.399140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.403084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.403103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166360072176
          <idle>-0       [000] d.h1  5166.403141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.407083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.407102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166364071312
          <idle>-0       [000] d.h1  5166.407139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.411083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.411102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166368071568
          <idle>-0       [000] d.h1  5166.411140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.415095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.415115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166372083888
          <idle>-0       [000] d.h1  5166.415153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.419085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.419104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166376073152
          <idle>-0       [000] d.h1  5166.419121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.419150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.419181: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.419191: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183891 baseclk=4296183891
          <idle>-0       [000] .Ns1  5166.419226: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.419261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.419285: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.419338: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.423100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.423126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166380090912
          <idle>-0       [000] d.h1  5166.423197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.427097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.427119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166384087184
          <idle>-0       [000] d.h1  5166.427168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.431083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.431104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166388072672
          <idle>-0       [000] d.h1  5166.431165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.435082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.435102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166392070704
          <idle>-0       [000] d.h1  5166.435119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.435149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.435181: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5166.435191: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183895 baseclk=4296183895
          <idle>-0       [000] .Ns1  5166.435224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.435235: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.435243: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5166.435266: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5166.435292: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.439100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.439135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166396104720
          <idle>-0       [000] d.h1  5166.439155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.443084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.443105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166400073216
          <idle>-0       [000] d.h1  5166.443148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.447082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.447102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166404070992
          <idle>-0       [000] d.h1  5166.447121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.447151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.447184: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.447197: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183898 baseclk=4296183898
          <idle>-0       [000] .Ns1  5166.447233: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.447264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.447272: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.447301: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.451102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.451128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166408093008
          <idle>-0       [000] d.h1  5166.451186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.455085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.455107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166412075200
          <idle>-0       [000] d.h1  5166.455151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.459085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.459106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166416074368
          <idle>-0       [000] d.h1  5166.459146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.463086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.463106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166420075104
          <idle>-0       [000] d.h1  5166.463142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.467082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.467102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166424070608
          <idle>-0       [000] d.h1  5166.467139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.471084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.471104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166428073008
          <idle>-0       [000] d.h1  5166.471141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.475083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.475102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166432071344
          <idle>-0       [000] d.h1  5166.475139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.479087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.479093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166436065872
          <idle>-0       [000] d.h1  5166.479107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.483081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.483100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166440069408
          <idle>-0       [000] d.h1  5166.483137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.487083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.487102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166444071456
          <idle>-0       [000] d.h1  5166.487139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.491082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.491101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166448070528
          <idle>-0       [000] d.h1  5166.491130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.495081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.495100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166452069600
          <idle>-0       [000] d.h1  5166.495138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.499084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.499103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166456072432
          <idle>-0       [000] d.h1  5166.499140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.503086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.503093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166460065136
          <idle>-0       [000] d.h1  5166.503107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.507080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.507099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166464068400
          <idle>-0       [000] d.h1  5166.507137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.511083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.511102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166468071520
          <idle>-0       [000] d.h1  5166.511140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.515083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.515102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166472071440
          <idle>-0       [000] d.h1  5166.515139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.519083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.519103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166476071984
          <idle>-0       [000] d.h1  5166.519140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.523085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.523092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166480064160
          <idle>-0       [000] d.h1  5166.523097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.523108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.523123: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.523129: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183917 baseclk=4296183917
          <idle>-0       [000] .Ns1  5166.523142: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.523153: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.523161: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.523179: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.527097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.527122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166484087248
          <idle>-0       [000] d.h1  5166.527188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.531085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.531106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166488075232
          <idle>-0       [000] d.h1  5166.531149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.535082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.535103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166492071424
          <idle>-0       [000] d.h1  5166.535142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.539084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.539104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166496073120
          <idle>-0       [000] d.h1  5166.539143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.543080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.543099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166500068400
          <idle>-0       [000] d.h1  5166.543138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.547084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.547103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166504072080
          <idle>-0       [000] d.h1  5166.547148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.551080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.551100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166508069008
          <idle>-0       [000] d.h1  5166.551137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.555082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.555101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166512070272
          <idle>-0       [000] d.h1  5166.555139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.559082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.559102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166516071072
          <idle>-0       [000] d.h1  5166.559139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.563083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.563103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166520072016
          <idle>-0       [000] d.h1  5166.563140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.567082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.567101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166524070656
          <idle>-0       [000] d.h1  5166.567118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.567147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.567177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.567193: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296183928 baseclk=4296183928
          <idle>-0       [000] dNs1  5166.567241: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296183928 baseclk=4296183928
          <idle>-0       [000] dNs1  5166.567253: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296183928 baseclk=4296183928
          <idle>-0       [000] dNs1  5166.567262: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296183928 baseclk=4296183928
          <idle>-0       [000] dNs1  5166.567270: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296183928 baseclk=4296183928
          <idle>-0       [000] .Ns1  5166.567280: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.567317: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5166.567391: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5166.567403: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5166.567409: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5166.567416: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5166.567422: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5166.567439: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5166.567461: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.571101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.571128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166528092304
          <idle>-0       [000] d.h1  5166.571198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.575087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.575109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166532077520
          <idle>-0       [000] d.h1  5166.575128: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.575161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.575194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.575206: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183930 baseclk=4296183930
          <idle>-0       [000] .Ns1  5166.575243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.575278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.575302: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.575389: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.579100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.579126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166536091200
          <idle>-0       [000] d.h1  5166.579193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.583085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.583107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166540075152
          <idle>-0       [000] d.h1  5166.583141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.587083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.587104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166544072288
          <idle>-0       [000] d.h1  5166.587145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.591082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.591102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166548070816
          <idle>-0       [000] d.h1  5166.591141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.595082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.595102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166552070672
          <idle>-0       [000] d.h1  5166.595141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.599084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.599103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166556072320
          <idle>-0       [000] d.h1  5166.599135: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.599146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.599161: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.599169: timer_expire_entry: timer=0000000032f5e2dd function=delayed_work_timer_fn now=4296183936 baseclk=4296183936
          <idle>-0       [000] .Ns1  5166.599183: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.599195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5166.599204: workqueue_execute_start: work struct 00000000b561f7ea: function wb_workfn
   kworker/u12:0-430     [000] d..2  5166.599273: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.603098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.603126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166560090064
          <idle>-0       [000] d.h1  5166.603198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.607085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.607107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166564075152
          <idle>-0       [000] d.h1  5166.607150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.611083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.611110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166568082880
          <idle>-0       [000] d.h1  5166.611125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.615082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.615102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166572070624
          <idle>-0       [000] d.h1  5166.615140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.619084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.619104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166576072704
          <idle>-0       [000] d.h1  5166.619142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.623083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.623103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166580071888
          <idle>-0       [000] d.h1  5166.623141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.627084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.627104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166584072896
          <idle>-0       [000] d.h1  5166.627121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.627150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.627182: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.627192: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183943 baseclk=4296183943
          <idle>-0       [000] .Ns1  5166.627232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.627269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.627294: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.627346: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.631106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.631115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166588086048
          <idle>-0       [000] d.h1  5166.631122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.631137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.631151: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5166.631157: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296183944 baseclk=4296183944
          <idle>-0       [000] .Ns1  5166.631168: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.631180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5166.631208: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.635088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.635097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166592068144
          <idle>-0       [000] d.h1  5166.635117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.639086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.639107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166596075312
          <idle>-0       [000] d.h1  5166.639141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.639174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.639207: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5166.639217: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183946 baseclk=4296183946
          <idle>-0       [000] .Ns1  5166.639260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.639312: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.639320: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5166.639344: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5166.639373: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.643103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.643133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166600094848
          <idle>-0       [000] d.h1  5166.643171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.647084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.647106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166604073968
          <idle>-0       [000] d.h1  5166.647149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.651087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.651108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166608076368
          <idle>-0       [000] d.h1  5166.651147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.655085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.655106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166612074656
          <idle>-0       [000] d.h1  5166.655145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.659085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.659105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166616073664
          <idle>-0       [000] d.h1  5166.659143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.663086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.663106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166620074688
          <idle>-0       [000] d.h1  5166.663143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.667087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.667094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166624066048
          <idle>-0       [000] d.h1  5166.667108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.671081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.671100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166628069584
          <idle>-0       [000] d.h1  5166.671138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.675083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.675103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166632071856
          <idle>-0       [000] d.h1  5166.675140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.679083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.679103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166636072080
          <idle>-0       [000] d.h1  5166.679140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.683084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.683104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166640072576
          <idle>-0       [000] d.h1  5166.683141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.687095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.687115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166644083920
          <idle>-0       [000] d.h1  5166.687152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.691083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.691103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166648071840
          <idle>-0       [000] d.h1  5166.691140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.695095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.695101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166652073376
          <idle>-0       [000] d.h1  5166.695115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.699081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.699100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166656069424
          <idle>-0       [000] d.h1  5166.699137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.703083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.703102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166660071248
          <idle>-0       [000] d.h1  5166.703119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.703148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.703179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.703192: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183962 baseclk=4296183962
          <idle>-0       [000] .Ns1  5166.703232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.703267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.703296: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.703326: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.707098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.707125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166664089488
          <idle>-0       [000] d.h1  5166.707192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.711085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.711107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166668075088
          <idle>-0       [000] d.h1  5166.711150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.715086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.715107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166672075760
          <idle>-0       [000] d.h1  5166.715141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.719082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.719103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166676071392
          <idle>-0       [000] d.h1  5166.719149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.723095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.723114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166680083440
          <idle>-0       [000] d.h1  5166.723152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.727087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.727093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166684065968
          <idle>-0       [000] d.h1  5166.727107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.731081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.731100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166688069264
          <idle>-0       [000] d.h1  5166.731117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.731146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.731179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.731189: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183969 baseclk=4296183969
          <idle>-0       [000] .Ns1  5166.731224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.731259: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.731282: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.731334: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.735101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.735127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166692091968
          <idle>-0       [000] d.h1  5166.735193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.739099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.739106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166696078080
          <idle>-0       [000] d.h1  5166.739121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.743082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.743102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166700070768
          <idle>-0       [000] d.h1  5166.743140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.747081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.747100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166704069360
          <idle>-0       [000] d.h1  5166.747152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.751082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.751102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166708070480
          <idle>-0       [000] d.h1  5166.751140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.755082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.755102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166712070896
          <idle>-0       [000] d.h1  5166.755139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.759084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.759103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166716072384
          <idle>-0       [000] d.h1  5166.759141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.763084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.763103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166720072336
          <idle>-0       [000] d.h1  5166.763141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.767083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.767102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166724071616
          <idle>-0       [000] d.h1  5166.767139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.771082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.771101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166728070512
          <idle>-0       [000] d.h1  5166.771139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.775083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.775103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166732071552
          <idle>-0       [000] d.h1  5166.775139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.779083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.779102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166736071328
          <idle>-0       [000] d.h1  5166.779139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.783087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.783093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166740065648
          <idle>-0       [000] d.h1  5166.783107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.787080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.787100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166744069040
          <idle>-0       [000] d.h1  5166.787137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.791134: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.791156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166748124240
          <idle>-0       [000] d.h1  5166.791194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.795106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.795112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166752084464
          <idle>-0       [000] d.h1  5166.795126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.799104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.799123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166756092480
          <idle>-0       [000] d.h1  5166.799161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.803111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.803130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166760099232
          <idle>-0       [000] d.h1  5166.803167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.807111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.807138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166764110592
          <idle>-0       [000] d.h1  5166.807152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.811101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.811107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166768079328
          <idle>-0       [000] d.h1  5166.811121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.815103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.815122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166772091392
          <idle>-0       [000] d.h1  5166.815160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.819124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.819144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166776112880
          <idle>-0       [000] d.h1  5166.819175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.823101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.823107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166780079504
          <idle>-0       [000] d.h1  5166.823121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.827097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.827118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166784086544
          <idle>-0       [000] d.h1  5166.827157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.831111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.831131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166788100000
          <idle>-0       [000] d.h1  5166.831148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.831177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.831208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.831222: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296183994 baseclk=4296183994
          <idle>-0       [000] .Ns1  5166.831259: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.831298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.831323: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.831370: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.835126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.835152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166792117024
          <idle>-0       [000] d.h1  5166.835174: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.835227: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.835245: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.835254: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296183995 baseclk=4296183995
          <idle>-0       [000] .Ns1  5166.835285: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.835324: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.835347: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.835399: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.839124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.839150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166796114976
          <idle>-0       [000] d.h1  5166.839201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.843113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.843135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166800103376
          <idle>-0       [000] d.h1  5166.843154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.843187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.843219: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5166.843230: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296183997 baseclk=4296183997
          <idle>-0       [000] .Ns1  5166.843273: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.843308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.843332: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5166.843394: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5166.843439: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.847127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.847156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166804118304
          <idle>-0       [000] d.h1  5166.847224: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.851110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.851132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166808099648
          <idle>-0       [000] d.h1  5166.851170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.855103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.855124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166812092528
          <idle>-0       [000] d.h1  5166.855166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.859114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.859120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166816092432
          <idle>-0       [000] d.h1  5166.859135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.863105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.863112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166820084352
          <idle>-0       [000] d.h1  5166.863127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.867079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.867099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166824067872
          <idle>-0       [000] d.h1  5166.867137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.871083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.871102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166828071472
          <idle>-0       [000] d.h1  5166.871140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.875081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.875100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166832069376
          <idle>-0       [000] d.h1  5166.875139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.879080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.879099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166836068224
          <idle>-0       [000] d.h1  5166.879137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.883081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.883100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166840069200
          <idle>-0       [000] d.h1  5166.883130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.887088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.887109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166844077632
          <idle>-0       [000] d.h1  5166.887127: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.887159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.887194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.887215: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296184008 baseclk=4296184008
          <idle>-0       [000] .Ns1  5166.887254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.887293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.887319: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5166.887412: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.891121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.891147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166848111824
          <idle>-0       [000] d.h1  5166.891217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.895100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.895121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166852089744
          <idle>-0       [000] d.h1  5166.895165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.899108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.899114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166856086752
          <idle>-0       [000] d.h1  5166.899130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.903108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.903114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166860086896
          <idle>-0       [000] d.h1  5166.903129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.907095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.907115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166864083904
          <idle>-0       [000] d.h1  5166.907155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.911109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.911128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166868097392
          <idle>-0       [000] d.h1  5166.911168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.915109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.915128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166872097312
          <idle>-0       [000] d.h1  5166.915167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.919111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.919130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166876099232
          <idle>-0       [000] d.h1  5166.919169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.923099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.923119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166880087712
          <idle>-0       [000] d.h1  5166.923158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.927120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.927131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166884098272
          <idle>-0       [000] d.h1  5166.927146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.931095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.931114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166888083104
          <idle>-0       [000] d.h1  5166.931154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.935111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.935131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166892099888
          <idle>-0       [000] d.h1  5166.935169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.939107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.939127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166896096000
          <idle>-0       [000] d.h1  5166.939145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.939175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.939194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.939213: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184021 baseclk=4296184021
          <idle>-0       [000] .Ns1  5166.939226: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.939238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.939246: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5166.939264: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.943123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.943150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166900121024
          <idle>-0       [000] d.h1  5166.943169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.947106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.947127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166904095264
          <idle>-0       [000] d.h1  5166.947170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.951114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.951134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166908102672
          <idle>-0       [000] d.h1  5166.951174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.955110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.955130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166912099184
          <idle>-0       [000] d.h1  5166.955160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.959107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.959127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166916096032
          <idle>-0       [000] d.h1  5166.959144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5166.959174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5166.959193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5166.959205: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184026 baseclk=4296184026
          <idle>-0       [000] .Ns1  5166.959242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5166.959277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5166.959300: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5166.959387: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5166.963109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.963135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166920099936
          <idle>-0       [000] d.h1  5166.963186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.967116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.967137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166924105360
          <idle>-0       [000] d.h1  5166.967180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.971114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.971135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166928103376
          <idle>-0       [000] d.h1  5166.971175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.975113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.975134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166932102608
          <idle>-0       [000] d.h1  5166.975173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.979085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.979105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166936073536
          <idle>-0       [000] d.h1  5166.979143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.983081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.983109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166940081552
          <idle>-0       [000] d.h1  5166.983123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.987087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.987107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166944075984
          <idle>-0       [000] d.h1  5166.987145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.991087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.991094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166948066320
          <idle>-0       [000] d.h1  5166.991108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.995081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.995100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166952069312
          <idle>-0       [000] d.h1  5166.995138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5166.999084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5166.999104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166956072752
          <idle>-0       [000] d.h1  5166.999141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.003083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.003103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166960071840
          <idle>-0       [000] d.h1  5167.003141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.007083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.007102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166964071200
          <idle>-0       [000] d.h1  5167.007140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.011084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.011109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166968081648
          <idle>-0       [000] d.h1  5167.011123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.015107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.015127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166972095792
          <idle>-0       [000] d.h1  5167.015164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.019110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.019130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166976098592
          <idle>-0       [000] d.h1  5167.019170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.023115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.023122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166980094112
          <idle>-0       [000] d.h1  5167.023136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.027096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.027115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166984084160
          <idle>-0       [000] d.h1  5167.027153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.031112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.031132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166988100864
          <idle>-0       [000] d.h1  5167.031170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.035110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.035129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166992098352
          <idle>-0       [000] d.h1  5167.035159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.039105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.039124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5166996092864
          <idle>-0       [000] d.h1  5167.039162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.043123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.043142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167000111648
          <idle>-0       [000] d.h1  5167.043159: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.043189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.043208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.043234: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184047 baseclk=4296184047
          <idle>-0       [000] .Ns1  5167.043274: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.043310: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.043334: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.043378: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.047120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.047128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167004099360
          <idle>-0       [000] d.h1  5167.047136: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.047150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.047166: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5167.047172: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184048 baseclk=4296184048
          <idle>-0       [000] .Ns1  5167.047186: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.047198: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.047205: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5167.047228: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5167.047255: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.051113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.051142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167008104960
          <idle>-0       [000] d.h1  5167.051198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.055115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.055136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167012104464
          <idle>-0       [000] d.h1  5167.055181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.059103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.059110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167016081920
          <idle>-0       [000] d.h1  5167.059125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.063096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.063116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167020085296
          <idle>-0       [000] d.h1  5167.063195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.067125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.067146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167024114576
          <idle>-0       [000] d.h1  5167.067191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.071133: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.071139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167028111584
          <idle>-0       [000] d.h1  5167.071153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.075095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.075115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167032083872
          <idle>-0       [000] d.h1  5167.075153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.079111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.079131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167036099792
          <idle>-0       [000] d.h1  5167.079168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.083112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.083132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167040100832
          <idle>-0       [000] d.h1  5167.083170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.087106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.087126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167044094656
          <idle>-0       [000] d.h1  5167.087142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.087172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.087191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.087204: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184058 baseclk=4296184058
          <idle>-0       [000] .Ns1  5167.087241: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.087277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.087302: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.087390: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.091126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.091152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167048117008
          <idle>-0       [000] d.h1  5167.091221: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.095110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.095131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167052099760
          <idle>-0       [000] d.h1  5167.095174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.099101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.099122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167056090656
          <idle>-0       [000] d.h1  5167.099163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.103114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.103134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167060103584
          <idle>-0       [000] d.h1  5167.103177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.107120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.107140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167064109552
          <idle>-0       [000] d.h1  5167.107179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.111125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.111145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167068114160
          <idle>-0       [000] d.h1  5167.111184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.115111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.115131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167072100432
          <idle>-0       [000] d.h1  5167.115170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.119112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.119132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167076101216
          <idle>-0       [000] d.h1  5167.119170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.123108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.123127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167080096000
          <idle>-0       [000] d.h1  5167.123165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.127113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.127133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167084101584
          <idle>-0       [000] d.h1  5167.127170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.131109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.131129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167088097920
          <idle>-0       [000] d.h1  5167.131167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.135112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.135132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167092100848
          <idle>-0       [000] d.h1  5167.135170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.139115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.139121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167096093376
          <idle>-0       [000] d.h1  5167.139135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.143114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.143133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167100102560
          <idle>-0       [000] d.h1  5167.143150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.143179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.143212: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5167.143222: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184072 baseclk=4296184072
          <idle>-0       [000] .Ns1  5167.143252: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.143290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5167.143373: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.147114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.147140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167104104944
          <idle>-0       [000] d.h1  5167.147162: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.147199: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.147219: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.147229: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184073 baseclk=4296184073
          <idle>-0       [000] .Ns1  5167.147264: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.147302: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.147325: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.147377: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.151112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.151138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167108102688
          <idle>-0       [000] d.h1  5167.151189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.155113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.155134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167112102592
          <idle>-0       [000] d.h1  5167.155177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.159114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.159134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167116102832
          <idle>-0       [000] d.h1  5167.159173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.163107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.163127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167120096032
          <idle>-0       [000] d.h1  5167.163166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.167113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.167133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167124101936
          <idle>-0       [000] d.h1  5167.167172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.171114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.171134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167128102976
          <idle>-0       [000] d.h1  5167.171172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.175109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.175129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167132098160
          <idle>-0       [000] d.h1  5167.175167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.179109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.179129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167136097824
          <idle>-0       [000] d.h1  5167.179168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.183109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.183129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167140098144
          <idle>-0       [000] d.h1  5167.183166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.187110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.187129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167144098352
          <idle>-0       [000] d.h1  5167.187167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.191109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.191129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167148097552
          <idle>-0       [000] d.h1  5167.191166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.195107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.195114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167152086208
          <idle>-0       [000] d.h1  5167.195127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.199118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.199137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167156106016
          <idle>-0       [000] d.h1  5167.199174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.203115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.203135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167160103872
          <idle>-0       [000] d.h1  5167.203172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.207107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.207127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167164095872
          <idle>-0       [000] d.h1  5167.207164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.211105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.211111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167168083504
          <idle>-0       [000] d.h1  5167.211125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.215105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.215140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167172093584
          <idle>-0       [000] d.h1  5167.215158: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.215187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.215221: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.215233: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184090 baseclk=4296184090
          <idle>-0       [000] .Ns1  5167.215270: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.215307: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.215331: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.215419: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.219114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.219140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167176105088
          <idle>-0       [000] d.h1  5167.219192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.223112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.223134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167180102304
          <idle>-0       [000] d.h1  5167.223177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.227112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.227133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167184101520
          <idle>-0       [000] d.h1  5167.227174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.231144: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.231151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167188122992
          <idle>-0       [000] d.h1  5167.231165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.235096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.235116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167192085184
          <idle>-0       [000] d.h1  5167.235154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.239109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.239129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167196097632
          <idle>-0       [000] d.h1  5167.239166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.243100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.243120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167200089088
          <idle>-0       [000] d.h1  5167.243159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.247095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.247114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167204083424
          <idle>-0       [000] d.h1  5167.247152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.251107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.251114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167208086112
          <idle>-0       [000] d.h1  5167.251119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.251131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.251135: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.251139: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184099 baseclk=4296184099
          <idle>-0       [000] .Ns1  5167.251178: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184099 baseclk=4296184099
          <idle>-0       [000] .Ns1  5167.251185: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.251198: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.251206: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] ....  5167.251211: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5167.251232: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5167.251260: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.255117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.255146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167212108848
          <idle>-0       [000] d.h1  5167.255204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.259113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.259134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167216102128
          <idle>-0       [000] d.h1  5167.259178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.263129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.263150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167220118224
          <idle>-0       [000] d.h1  5167.263190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.267084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.267090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167224062896
          <idle>-0       [000] d.h1  5167.267105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.271081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.271100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167228069264
          <idle>-0       [000] d.h1  5167.271139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.275084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.275104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167232072816
          <idle>-0       [000] d.h1  5167.275133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.279081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.279100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167236069312
          <idle>-0       [000] d.h1  5167.279138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.283085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.283104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167240073312
          <idle>-0       [000] d.h1  5167.283142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.287087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.287093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167244065344
          <idle>-0       [000] d.h1  5167.287107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.291081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.291100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167248069472
          <idle>-0       [000] d.h1  5167.291138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.295084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.295103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167252072336
          <idle>-0       [000] d.h1  5167.295141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.299085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.299108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167256080160
          <idle>-0       [000] d.h1  5167.299123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.303081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.303100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167260069792
          <idle>-0       [000] d.h1  5167.303138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.307083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.307102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167264071536
          <idle>-0       [000] d.h1  5167.307140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.311084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.311103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167268072032
          <idle>-0       [000] d.h1  5167.311140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.315083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.315103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167272071792
          <idle>-0       [000] d.h1  5167.315140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.319084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.319103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167276072048
          <idle>-0       [000] d.h1  5167.319140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.323084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.323104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167280072704
          <idle>-0       [000] d.h1  5167.323141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.327094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.327101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167284073360
          <idle>-0       [000] d.h1  5167.327116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.331080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.331099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167288068496
          <idle>-0       [000] d.h1  5167.331138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.335090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.335096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167292068352
          <idle>-0       [000] d.h1  5167.335110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.339082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.339089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167296061152
          <idle>-0       [000] d.h1  5167.339103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.343080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.343100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167300068880
          <idle>-0       [000] d.h1  5167.343117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.343146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.343179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.343193: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184122 baseclk=4296184122
          <idle>-0       [000] .Ns1  5167.343234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.343273: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.343300: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.343392: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.347102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.347128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167304092592
          <idle>-0       [000] d.h1  5167.347196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.351085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.351106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167308074944
          <idle>-0       [000] d.h1  5167.351150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.355086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.355106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167312075296
          <idle>-0       [000] d.h1  5167.355124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.355155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.355174: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.355184: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184125 baseclk=4296184125
          <idle>-0       [000] .Ns1  5167.355234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.355270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.355294: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.355347: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.359096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.359121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167316086640
          <idle>-0       [000] d.h1  5167.359172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.363084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.363105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167320073648
          <idle>-0       [000] d.h1  5167.363147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.367082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.367102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167324070896
          <idle>-0       [000] d.h1  5167.367141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.371083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.371103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167328071584
          <idle>-0       [000] d.h1  5167.371142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.375089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.375095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167332067632
          <idle>-0       [000] d.h1  5167.375109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.379084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.379090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167336062480
          <idle>-0       [000] d.h1  5167.379104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.383080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.383100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167340069232
          <idle>-0       [000] d.h1  5167.383137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.387083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.387102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167344071216
          <idle>-0       [000] d.h1  5167.387140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.391062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.391068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167348040432
          <idle>-0       [000] d.h1  5167.391082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.395082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.395101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167352070016
          <idle>-0       [000] d.h1  5167.395136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.399080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.399100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167356068656
          <idle>-0       [000] d.h1  5167.399136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.403082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.403102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167360070864
          <idle>-0       [000] d.h1  5167.403139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.407083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.407103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167364071712
          <idle>-0       [000] d.h1  5167.407140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.411081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.411100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167368069376
          <idle>-0       [000] d.h1  5167.411137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.415082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.415102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167372070896
          <idle>-0       [000] d.h1  5167.415138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.419083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.419102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167376071296
          <idle>-0       [000] d.h1  5167.419140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.423082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.423101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167380070144
          <idle>-0       [000] d.h1  5167.423137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.427116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.427135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167384104272
          <idle>-0       [000] d.h1  5167.427172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.431113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.431133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167388101888
          <idle>-0       [000] d.h1  5167.431169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.435094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.435114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167392083232
          <idle>-0       [000] d.h1  5167.435152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.439105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.439111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167396083824
          <idle>-0       [000] d.h1  5167.439125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.443103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.443123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167400091968
          <idle>-0       [000] d.h1  5167.443161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.447108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.447128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167404096896
          <idle>-0       [000] d.h1  5167.447165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.451109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.451128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167408097312
          <idle>-0       [000] d.h1  5167.451159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.455118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.455137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167412106224
          <idle>-0       [000] d.h1  5167.455154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.455182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.455201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5167.455210: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184150 baseclk=4296184150
          <idle>-0       [000] .Ns1  5167.455254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.455289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.455313: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5167.455374: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5167.455445: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.459113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.459142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167416104448
          <idle>-0       [000] d.h1  5167.459165: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.459205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.459226: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.459254: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184151 baseclk=4296184151
          <idle>-0       [000] .Ns1  5167.459292: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.459331: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.459354: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.459404: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.463118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.463144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167420108928
          <idle>-0       [000] d.h1  5167.463196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.467142: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.467149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167424120848
          <idle>-0       [000] d.h1  5167.467164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.471108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.471128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167428097008
          <idle>-0       [000] d.h1  5167.471146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.471176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.471195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.471217: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184154 baseclk=4296184154
          <idle>-0       [000] .Ns1  5167.471229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.471241: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.471249: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.471278: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.475102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.475110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167432081248
          <idle>-0       [000] d.h1  5167.475130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.479124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.479146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167436114352
          <idle>-0       [000] d.h1  5167.479189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.483115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.483136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167440104544
          <idle>-0       [000] d.h1  5167.483177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.487111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.487132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167444100640
          <idle>-0       [000] d.h1  5167.487172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.491109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.491130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167448098448
          <idle>-0       [000] d.h1  5167.491169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.495112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.495132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167452101376
          <idle>-0       [000] d.h1  5167.495171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.499124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.499144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167456113216
          <idle>-0       [000] d.h1  5167.499193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.503111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.503130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167460099440
          <idle>-0       [000] d.h1  5167.503169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.507113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.507132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167464101328
          <idle>-0       [000] d.h1  5167.507173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.511096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.511115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167468084480
          <idle>-0       [000] d.h1  5167.511154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.515113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.515132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167472101280
          <idle>-0       [000] d.h1  5167.515171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.519109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.519129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167476097792
          <idle>-0       [000] d.h1  5167.519167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.523115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.523136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167480105088
          <idle>-0       [000] d.h1  5167.523182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.527110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.527130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167484099104
          <idle>-0       [000] d.h1  5167.527170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.531110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.531130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167488098784
          <idle>-0       [000] d.h1  5167.531168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.535110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.535129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167492098464
          <idle>-0       [000] d.h1  5167.535165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.539096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.539115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167496084240
          <idle>-0       [000] d.h1  5167.539153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.543106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.543125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167500094512
          <idle>-0       [000] d.h1  5167.543164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.547109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.547128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167504097280
          <idle>-0       [000] d.h1  5167.547166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.551110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.551116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167508088400
          <idle>-0       [000] d.h1  5167.551130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.555094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.555113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167512082560
          <idle>-0       [000] d.h1  5167.555151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.559112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.559131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167516100496
          <idle>-0       [000] d.h1  5167.559170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.563110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.563130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167520099072
          <idle>-0       [000] d.h1  5167.563148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.563177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.563196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.563207: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184177 baseclk=4296184177
          <idle>-0       [000] .Ns1  5167.563247: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.563286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.563314: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.563383: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.567127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.567153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167524117824
          <idle>-0       [000] d.h1  5167.567203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.571111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.571132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167528100144
          <idle>-0       [000] d.h1  5167.571174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.575109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.575129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167532097952
          <idle>-0       [000] d.h1  5167.575168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.579111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.579130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167536099648
          <idle>-0       [000] d.h1  5167.579169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.583106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.583125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167540093936
          <idle>-0       [000] d.h1  5167.583164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.587111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.587130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167544099520
          <idle>-0       [000] d.h1  5167.587168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.591111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.591130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167548099168
          <idle>-0       [000] d.h1  5167.591147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.591177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.591195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.591209: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296184184 baseclk=4296184184
          <idle>-0       [000] dNs1  5167.591250: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296184184 baseclk=4296184184
          <idle>-0       [000] dNs1  5167.591261: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296184184 baseclk=4296184184
          <idle>-0       [000] dNs1  5167.591272: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296184184 baseclk=4296184184
          <idle>-0       [000] dNs1  5167.591281: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296184184 baseclk=4296184184
          <idle>-0       [000] .Ns1  5167.591291: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.591329: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5167.591378: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5167.591415: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5167.591421: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5167.591425: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5167.591429: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5167.591442: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5167.591457: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.595121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.595130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167552100560
          <idle>-0       [000] d.h1  5167.595152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.599114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.599136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167556104064
          <idle>-0       [000] d.h1  5167.599156: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.599190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.599209: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.599237: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184186 baseclk=4296184186
          <idle>-0       [000] .Ns1  5167.599276: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.599314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.599337: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.599424: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.603128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.603154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167560118672
          <idle>-0       [000] d.h1  5167.603207: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.607115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.607136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167564104528
          <idle>-0       [000] d.h1  5167.607179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.611113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.611134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167568102224
          <idle>-0       [000] d.h1  5167.611175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.615127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.615147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167572115760
          <idle>-0       [000] d.h1  5167.615187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.619108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.619128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167576097200
          <idle>-0       [000] d.h1  5167.619167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.623108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.623128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167580096768
          <idle>-0       [000] d.h1  5167.623167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.627110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.627129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167584098448
          <idle>-0       [000] d.h1  5167.627174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.631097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.631109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167588075664
          <idle>-0       [000] d.h1  5167.631124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.635103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.635122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167592091472
          <idle>-0       [000] d.h1  5167.635161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.639108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.639127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167596096160
          <idle>-0       [000] d.h1  5167.639166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.643107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.643126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167600095424
          <idle>-0       [000] d.h1  5167.643165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.647109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.647128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167604097248
          <idle>-0       [000] d.h1  5167.647175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.651102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.651108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167608080704
          <idle>-0       [000] d.h1  5167.651122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.655103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.655122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167612091360
          <idle>-0       [000] d.h1  5167.655139: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.655169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.655187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5167.655212: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184200 baseclk=4296184200
          <idle>-0       [000] .Ns1  5167.655246: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.655284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5167.655370: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.659124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.659150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167616115312
          <idle>-0       [000] d.h1  5167.659172: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.659211: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.659235: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5167.659238: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184201 baseclk=4296184201
          <idle>-0       [000] .Ns1  5167.659252: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.659265: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.659273: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5167.659297: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5167.659324: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.663114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.663139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167620109472
          <idle>-0       [000] d.h1  5167.663161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.667105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.667112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167624084336
          <idle>-0       [000] d.h1  5167.667119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.667131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.667136: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.667140: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184203 baseclk=4296184203
          <idle>-0       [000] .Ns1  5167.667166: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.667179: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.667187: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.667205: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.671123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.671150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167628114608
          <idle>-0       [000] d.h1  5167.671201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.675110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.675131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167632099760
          <idle>-0       [000] d.h1  5167.675176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.679104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.679124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167636093280
          <idle>-0       [000] d.h1  5167.679174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.683107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.683127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167640096048
          <idle>-0       [000] d.h1  5167.683166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.687096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.687116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167644084784
          <idle>-0       [000] d.h1  5167.687174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.691112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.691132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167648101008
          <idle>-0       [000] d.h1  5167.691171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.695105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.695124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167652093616
          <idle>-0       [000] d.h1  5167.695163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.699118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.699138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167656106896
          <idle>-0       [000] d.h1  5167.699175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.703102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.703108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167660080576
          <idle>-0       [000] d.h1  5167.703122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.707078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.707098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167664066912
          <idle>-0       [000] d.h1  5167.707136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.711079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.711099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167668068064
          <idle>-0       [000] d.h1  5167.711137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.715083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.715089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167672061520
          <idle>-0       [000] d.h1  5167.715103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.719083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.719089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167676061840
          <idle>-0       [000] d.h1  5167.719104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.723083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.723089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167680061440
          <idle>-0       [000] d.h1  5167.723103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.727083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.727089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167684061760
          <idle>-0       [000] d.h1  5167.727095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.727106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.727120: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.727125: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184218 baseclk=4296184218
          <idle>-0       [000] .Ns1  5167.727138: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.727150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.727158: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.727188: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.731088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.731097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167688068224
          <idle>-0       [000] d.h1  5167.731117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.735088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.735095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167692067584
          <idle>-0       [000] d.h1  5167.735112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.739084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.739090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167696062880
          <idle>-0       [000] d.h1  5167.739106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.743083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.743090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167700062192
          <idle>-0       [000] d.h1  5167.743104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.747083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.747090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167704062128
          <idle>-0       [000] d.h1  5167.747104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.751059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.751065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167708037792
          <idle>-0       [000] d.h1  5167.751079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.755085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.755092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167712064192
          <idle>-0       [000] d.h1  5167.755105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.759083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.759090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167716062192
          <idle>-0       [000] d.h1  5167.759103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.763084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.763090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167720062384
          <idle>-0       [000] d.h1  5167.763113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.767086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.767092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167724064624
          <idle>-0       [000] d.h1  5167.767106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.771090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.771097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167728069840
          <idle>-0       [000] d.h1  5167.771103: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.771115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.771120: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.771124: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184229 baseclk=4296184229
          <idle>-0       [000] .Ns1  5167.771152: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.771165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.771173: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.771191: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.775091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.775100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167732070944
          <idle>-0       [000] d.h1  5167.775119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.779087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.779093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167736065776
          <idle>-0       [000] d.h1  5167.779109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.783087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.783093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167740065888
          <idle>-0       [000] d.h1  5167.783108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.787083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.787090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167744062080
          <idle>-0       [000] d.h1  5167.787104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.791083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.791090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167748062080
          <idle>-0       [000] d.h1  5167.791104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.795083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.795089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167752061824
          <idle>-0       [000] d.h1  5167.795104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.799083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.799089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167756061776
          <idle>-0       [000] d.h1  5167.799103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.803110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.803116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167760088672
          <idle>-0       [000] d.h1  5167.803130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.807108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.807127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167764096224
          <idle>-0       [000] d.h1  5167.807164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.811105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.811125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167768094272
          <idle>-0       [000] d.h1  5167.811162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.815111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.815130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167772099168
          <idle>-0       [000] d.h1  5167.815168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.819110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.819129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167776098240
          <idle>-0       [000] d.h1  5167.819167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.823114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.823120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167780092224
          <idle>-0       [000] d.h1  5167.823134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.827098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.827117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167784086496
          <idle>-0       [000] d.h1  5167.827158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.831110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.831129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167788098304
          <idle>-0       [000] d.h1  5167.831168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.835111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.835131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167792100080
          <idle>-0       [000] d.h1  5167.835169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.839118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.839124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167796096304
          <idle>-0       [000] d.h1  5167.839138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.843104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.843123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167800092560
          <idle>-0       [000] d.h1  5167.843161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.847110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.847130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167804098960
          <idle>-0       [000] d.h1  5167.847167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.851108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.851127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167808096048
          <idle>-0       [000] d.h1  5167.851165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.855105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.855111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167812083360
          <idle>-0       [000] d.h1  5167.855117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.855128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.855133: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.855137: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184250 baseclk=4296184250
          <idle>-0       [000] .Ns1  5167.855166: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.855180: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.855189: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.855220: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.859126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.859152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167816116768
          <idle>-0       [000] d.h1  5167.859204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.863113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.863134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167820102544
          <idle>-0       [000] d.h1  5167.863153: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.863186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.863217: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5167.863240: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184252 baseclk=4296184252
          <idle>-0       [000] .Ns1  5167.863257: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.863269: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.863277: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5167.863306: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5167.863337: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.867116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.867126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167824096128
          <idle>-0       [000] d.h1  5167.867148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.871125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.871146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167828114272
          <idle>-0       [000] d.h1  5167.871190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.875110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.875131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167832099376
          <idle>-0       [000] d.h1  5167.875149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.875181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.875200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.875223: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184255 baseclk=4296184255
          <idle>-0       [000] .Ns1  5167.875236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.875248: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.875256: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.875274: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.879124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.879150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167836114592
          <idle>-0       [000] d.h1  5167.879172: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.879209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.879229: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.879244: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296184256 baseclk=4296184256
          <idle>-0       [000] .Ns1  5167.879277: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.879314: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.879337: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5167.879417: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.883122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.883149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167840113600
          <idle>-0       [000] d.h1  5167.883200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.887097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.887120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167844087200
          <idle>-0       [000] d.h1  5167.887166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.891104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.891124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167848093072
          <idle>-0       [000] d.h1  5167.891166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.895106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.895142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167852094960
          <idle>-0       [000] d.h1  5167.895185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.899108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.899114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167856086624
          <idle>-0       [000] d.h1  5167.899129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.903105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.903125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167860093856
          <idle>-0       [000] d.h1  5167.903166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.907096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.907115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167864084384
          <idle>-0       [000] d.h1  5167.907154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.911109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.911128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167868097216
          <idle>-0       [000] d.h1  5167.911167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.915111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.915130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167872099296
          <idle>-0       [000] d.h1  5167.915169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.919089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.919095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167876067392
          <idle>-0       [000] d.h1  5167.919109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.923103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.923122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167880091648
          <idle>-0       [000] d.h1  5167.923161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.927085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.927104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167884073152
          <idle>-0       [000] d.h1  5167.927143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.931083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.931089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167888061616
          <idle>-0       [000] d.h1  5167.931103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.935079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.935098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167892067456
          <idle>-0       [000] d.h1  5167.935136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.939083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.939112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167896084560
          <idle>-0       [000] d.h1  5167.939126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.943079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.943099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167900068032
          <idle>-0       [000] d.h1  5167.943136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.947083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.947116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167904071696
          <idle>-0       [000] d.h1  5167.947129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.951113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.951132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167908101712
          <idle>-0       [000] d.h1  5167.951171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.955079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.955099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167912068032
          <idle>-0       [000] d.h1  5167.955137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.959114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.959133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167916102656
          <idle>-0       [000] d.h1  5167.959174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.963108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.963127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167920096144
          <idle>-0       [000] d.h1  5167.963165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.967106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.967125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167924094576
          <idle>-0       [000] d.h1  5167.967157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.971102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.971121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167928090768
          <idle>-0       [000] d.h1  5167.971151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.975117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.975136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167932105584
          <idle>-0       [000] d.h1  5167.975173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.979084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.979103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167936072480
          <idle>-0       [000] d.h1  5167.979120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.979148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.979180: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.979192: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184281 baseclk=4296184281
          <idle>-0       [000] .Ns1  5167.979226: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.979239: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.979248: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5167.979269: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.983099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.983125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167940089440
          <idle>-0       [000] d.h1  5167.983146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5167.983200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5167.983218: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5167.983230: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184282 baseclk=4296184282
          <idle>-0       [000] .Ns1  5167.983262: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5167.983299: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5167.983326: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5167.983413: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5167.987097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.987123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167944088144
          <idle>-0       [000] d.h1  5167.987165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.991087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.991109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167948076816
          <idle>-0       [000] d.h1  5167.991152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.995087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.995107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167952076112
          <idle>-0       [000] d.h1  5167.995147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5167.999086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5167.999106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167956074688
          <idle>-0       [000] d.h1  5167.999145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.003089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.003096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167960067968
          <idle>-0       [000] d.h1  5168.003110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.007087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.007107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167964075568
          <idle>-0       [000] d.h1  5168.007149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.011085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.011105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167968073872
          <idle>-0       [000] d.h1  5168.011142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.015109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.015128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167972097152
          <idle>-0       [000] d.h1  5168.015167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.019107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.019127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167976095904
          <idle>-0       [000] d.h1  5168.019168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.023114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.023120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167980092752
          <idle>-0       [000] d.h1  5168.023134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.027103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.027122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167984091344
          <idle>-0       [000] d.h1  5168.027160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.031117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.031124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167988095984
          <idle>-0       [000] d.h1  5168.031138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.035101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.035107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167992079984
          <idle>-0       [000] d.h1  5168.035122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.039104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.039123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5167996092192
          <idle>-0       [000] d.h1  5168.039161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.043107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.043126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168000095104
          <idle>-0       [000] d.h1  5168.043164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.047105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.047111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168004083856
          <idle>-0       [000] d.h1  5168.047126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.051083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.051089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168008061920
          <idle>-0       [000] d.h1  5168.051104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.055083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.055089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168012061520
          <idle>-0       [000] d.h1  5168.055117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.059084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.059090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168016062720
          <idle>-0       [000] d.h1  5168.059106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.063094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.063101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168020073392
          <idle>-0       [000] d.h1  5168.063115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.067084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.067090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168024063024
          <idle>-0       [000] d.h1  5168.067097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.067110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.067125: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5168.067133: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184303 baseclk=4296184303
          <idle>-0       [000] .Ns1  5168.067160: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.067175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.067185: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5168.067220: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5168.067260: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.071089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.071100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168028069616
          <idle>-0       [000] d.h1  5168.071122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.075095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.075102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168032073968
          <idle>-0       [000] d.h1  5168.075118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.079098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.079105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168036077072
          <idle>-0       [000] d.h1  5168.079119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.083089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.083096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168040068160
          <idle>-0       [000] d.h1  5168.083102: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.083116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.083132: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.083139: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184307 baseclk=4296184307
          <idle>-0       [000] .Ns1  5168.083160: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.083175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.083184: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.083208: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.087091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.087100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168044070368
          <idle>-0       [000] d.h1  5168.087119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.091109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.091116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168048088304
          <idle>-0       [000] d.h1  5168.091131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.095114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.095134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168052102832
          <idle>-0       [000] d.h1  5168.095175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.099104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.099123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168056092288
          <idle>-0       [000] d.h1  5168.099163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.103097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.103116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168060084896
          <idle>-0       [000] d.h1  5168.103155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.107110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.107129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168064098192
          <idle>-0       [000] d.h1  5168.107168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.111117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.111123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168068095504
          <idle>-0       [000] d.h1  5168.111129: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.111140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.111145: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.111150: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184314 baseclk=4296184314
          <idle>-0       [000] .Ns1  5168.111178: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.111190: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.111199: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5168.111231: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.115116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.115141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168072106368
          <idle>-0       [000] d.h1  5168.115193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.119125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.119146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168076114224
          <idle>-0       [000] d.h1  5168.119189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.123111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.123132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168080100368
          <idle>-0       [000] d.h1  5168.123172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.127110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.127130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168084098864
          <idle>-0       [000] d.h1  5168.127171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.131108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.131128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168088096816
          <idle>-0       [000] d.h1  5168.131167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.135107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.135128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168092100976
          <idle>-0       [000] d.h1  5168.135143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.139104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.139123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168096092464
          <idle>-0       [000] d.h1  5168.139162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.143108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.143128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168100096704
          <idle>-0       [000] d.h1  5168.143166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.147109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.147128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168104097280
          <idle>-0       [000] d.h1  5168.147167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.151109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.151129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168108097824
          <idle>-0       [000] d.h1  5168.151167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.155113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.155120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168112092480
          <idle>-0       [000] d.h1  5168.155134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.159105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.159124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168116092816
          <idle>-0       [000] d.h1  5168.159162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.163109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.163128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168120097120
          <idle>-0       [000] d.h1  5168.163166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.167108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.167128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168124096768
          <idle>-0       [000] d.h1  5168.167145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.167174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.167192: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5168.167227: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184328 baseclk=4296184328
          <idle>-0       [000] .Ns1  5168.167263: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.167288: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5168.167326: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.171119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.171156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168128111904
          <idle>-0       [000] d.h1  5168.171175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.175111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.175131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168132099648
          <idle>-0       [000] d.h1  5168.175174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.179107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.179127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168136095840
          <idle>-0       [000] d.h1  5168.179167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.183111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.183131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168140099664
          <idle>-0       [000] d.h1  5168.183170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.187085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.187091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168144063584
          <idle>-0       [000] d.h1  5168.187097: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.187108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.187123: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.187129: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184333 baseclk=4296184333
          <idle>-0       [000] .Ns1  5168.187143: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.187163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.187172: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.187190: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.191119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.191145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168148109648
          <idle>-0       [000] d.h1  5168.191211: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.195109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.195129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168152097968
          <idle>-0       [000] d.h1  5168.195172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.199110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.199130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168156098816
          <idle>-0       [000] d.h1  5168.199171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.203109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.203129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168160098336
          <idle>-0       [000] d.h1  5168.203169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.207107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.207113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168164085664
          <idle>-0       [000] d.h1  5168.207127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.211109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.211115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168168087552
          <idle>-0       [000] d.h1  5168.211129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.215105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.215125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168172094096
          <idle>-0       [000] d.h1  5168.215172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.219125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.219148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168176116704
          <idle>-0       [000] d.h1  5168.219200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.223109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.223129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168180097872
          <idle>-0       [000] d.h1  5168.223169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.227110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.227129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168184098368
          <idle>-0       [000] d.h1  5168.227168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.231092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.231111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168188080464
          <idle>-0       [000] d.h1  5168.231149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.235126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.235145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168192114336
          <idle>-0       [000] d.h1  5168.235184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.239108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.239127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168196096576
          <idle>-0       [000] d.h1  5168.239145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.239175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.239208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.239223: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184346 baseclk=4296184346
          <idle>-0       [000] .Ns1  5168.239268: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.239309: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.239337: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5168.239425: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.243127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.243154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168200118336
          <idle>-0       [000] d.h1  5168.243220: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.247103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.247110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168204081872
          <idle>-0       [000] d.h1  5168.247126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.251105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.251125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168208093872
          <idle>-0       [000] d.h1  5168.251165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.255115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.255122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168212094144
          <idle>-0       [000] d.h1  5168.255136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.259103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.259123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168216091808
          <idle>-0       [000] d.h1  5168.259161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.263124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.263144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168220112752
          <idle>-0       [000] d.h1  5168.263181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.267105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.267124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168224093648
          <idle>-0       [000] d.h1  5168.267162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.271107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.271127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168228095984
          <idle>-0       [000] d.h1  5168.271144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.271174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.271202: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5168.271220: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184354 baseclk=4296184354
          <idle>-0       [000] .Ns1  5168.271239: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.271251: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.271260: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5168.271292: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5168.271326: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.275117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.275146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168232108960
          <idle>-0       [000] d.h1  5168.275202: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.279109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.279130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168236098256
          <idle>-0       [000] d.h1  5168.279173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.283109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.283130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168240098480
          <idle>-0       [000] d.h1  5168.283181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.287111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.287131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168244099584
          <idle>-0       [000] d.h1  5168.287169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.291116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.291145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168248117520
          <idle>-0       [000] d.h1  5168.291151: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.291163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.291168: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.291172: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184359 baseclk=4296184359
          <idle>-0       [000] .Ns1  5168.291211: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.291223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.291231: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.291249: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.295108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.295117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168252087744
          <idle>-0       [000] d.h1  5168.295135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.299107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.299128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168256096416
          <idle>-0       [000] d.h1  5168.299172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.303105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.303125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168260093984
          <idle>-0       [000] d.h1  5168.303166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.307097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.307103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168264075424
          <idle>-0       [000] d.h1  5168.307118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.311101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.311107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168268079872
          <idle>-0       [000] d.h1  5168.311123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.315104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.315123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168272092128
          <idle>-0       [000] d.h1  5168.315163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.319108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.319128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168276096688
          <idle>-0       [000] d.h1  5168.319166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.323103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.323110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168280082096
          <idle>-0       [000] d.h1  5168.323121: hrtimer_expire_entry: hrtimer=0000000004a23cb3 function=hrtimer_wakeup now=5168280082096
          <idle>-0       [000] dNh1  5168.323145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5168.323171: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rpcbind next_pid=146 next_prio=120
         rpcbind-146     [000] d..2  5168.323572: sched_switch: prev_comm=rpcbind prev_pid=146 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.327189: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.327258: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168284202240
          <idle>-0       [000] d.h1  5168.327434: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.331131: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.331154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168288121264
          <idle>-0       [000] d.h1  5168.331204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.335099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.335120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168292088336
          <idle>-0       [000] d.h1  5168.335162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.339097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.339129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168296085520
          <idle>-0       [000] d.h1  5168.339144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.343104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.343124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168300093056
          <idle>-0       [000] d.h1  5168.343163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.347108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.347128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168304096832
          <idle>-0       [000] d.h1  5168.347166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.351107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.351127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168308096064
          <idle>-0       [000] d.h1  5168.351166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.355121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.355127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168312099968
          <idle>-0       [000] d.h1  5168.355142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.359107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.359126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168316095392
          <idle>-0       [000] d.h1  5168.359165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.363109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.363129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168320097744
          <idle>-0       [000] d.h1  5168.363167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.367105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.367124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168324093568
          <idle>-0       [000] d.h1  5168.367150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.367186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.367218: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.367251: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184378 baseclk=4296184378
          <idle>-0       [000] .Ns1  5168.367356: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.367422: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.367481: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5168.367528: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.371127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.371154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168328118688
          <idle>-0       [000] d.h1  5168.371209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.375115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.375136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168332104128
          <idle>-0       [000] d.h1  5168.375180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.379113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.379133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168336102176
          <idle>-0       [000] d.h1  5168.379175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.383113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.383133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168340101536
          <idle>-0       [000] d.h1  5168.383173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.387112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.387132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168344100768
          <idle>-0       [000] d.h1  5168.387172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.391111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.391131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168348100400
          <idle>-0       [000] d.h1  5168.391149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.391179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.391198: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.391220: timer_expire_entry: timer=000000000ed5fb1a function=delayed_work_timer_fn now=4296184384 baseclk=4296184384
          <idle>-0       [000] .Ns1  5168.391256: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.391292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.391316: workqueue_execute_start: work struct 0000000094882d62: function ovs_dp_masks_rebalance [openvswitch]
     kworker/0:2-112     [000] d..2  5168.391345: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.395124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.395150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168352115488
          <idle>-0       [000] d.h1  5168.395172: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.395210: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.395230: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.395259: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184385 baseclk=4296184385
          <idle>-0       [000] .Ns1  5168.395296: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.395336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.395344: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.395365: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.399130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.399156: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168356120720
          <idle>-0       [000] d.h1  5168.399206: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.403110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.403132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168360100144
          <idle>-0       [000] d.h1  5168.403174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.407105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.407127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168364095104
          <idle>-0       [000] d.h1  5168.407171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.411121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.411141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168368109920
          <idle>-0       [000] d.h1  5168.411181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.415109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.415130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168372098400
          <idle>-0       [000] d.h1  5168.415170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.419110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.419130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168376098752
          <idle>-0       [000] d.h1  5168.419170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.423085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.423106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168380074464
          <idle>-0       [000] d.h1  5168.423144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.427107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.427127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168384095952
          <idle>-0       [000] d.h1  5168.427166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.431109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.431129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168388097568
          <idle>-0       [000] d.h1  5168.431167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.435111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.435118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168392090192
          <idle>-0       [000] d.h1  5168.435132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.439103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.439122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168396091328
          <idle>-0       [000] d.h1  5168.439161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.443107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.443127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168400095680
          <idle>-0       [000] d.h1  5168.443164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.447107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.447127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168404095824
          <idle>-0       [000] d.h1  5168.447166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.451108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.451127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168408096432
          <idle>-0       [000] d.h1  5168.451166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.455110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.455129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168412098208
          <idle>-0       [000] d.h1  5168.455169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.459104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.459111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168416083088
          <idle>-0       [000] d.h1  5168.459125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.463105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.463125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168420093744
          <idle>-0       [000] d.h1  5168.463163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.467109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.467128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168424097344
          <idle>-0       [000] d.h1  5168.467167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.471107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.471126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168428095520
          <idle>-0       [000] d.h1  5168.471194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.475110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.475130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168432099264
          <idle>-0       [000] d.h1  5168.475148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.475178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.475200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5168.475205: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184405 baseclk=4296184405
          <idle>-0       [000] .Ns1  5168.475224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.475237: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.475246: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5168.475318: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5168.475382: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.479119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.479129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168436098496
          <idle>-0       [000] d.h1  5168.479152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.483113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.483135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168440102704
          <idle>-0       [000] d.h1  5168.483178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.487106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.487127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168444095056
          <idle>-0       [000] d.h1  5168.487167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.491105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.491125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168448093904
          <idle>-0       [000] d.h1  5168.491164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.495109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.495129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168452098160
          <idle>-0       [000] d.h1  5168.495147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.495176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.495196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.495224: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184410 baseclk=4296184410
          <idle>-0       [000] .Ns1  5168.495263: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.495300: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.495324: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5168.495370: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.499126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.499153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168456117776
          <idle>-0       [000] d.h1  5168.499183: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.499198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.499203: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.499207: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184411 baseclk=4296184411
          <idle>-0       [000] .Ns1  5168.499231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.499244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.499252: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.499269: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.503125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.503134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168460104880
          <idle>-0       [000] d.h1  5168.503153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.507111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.507133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168464100848
          <idle>-0       [000] d.h1  5168.507175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.511106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.511127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168468095616
          <idle>-0       [000] d.h1  5168.511167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.515108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.515128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168472096720
          <idle>-0       [000] d.h1  5168.515167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.519112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.519132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168476101168
          <idle>-0       [000] d.h1  5168.519172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.523109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.523129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168480098368
          <idle>-0       [000] d.h1  5168.523171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.527110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.527130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168484098384
          <idle>-0       [000] d.h1  5168.527168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.531123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.531143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168488112032
          <idle>-0       [000] d.h1  5168.531181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.535109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.535129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168492097808
          <idle>-0       [000] d.h1  5168.535166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.539103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.539109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168496081856
          <idle>-0       [000] d.h1  5168.539123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.543100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.543106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168500078736
          <idle>-0       [000] d.h1  5168.543120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.547105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.547124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168504093504
          <idle>-0       [000] d.h1  5168.547161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.551106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.551125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168508094096
          <idle>-0       [000] d.h1  5168.551164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.555109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.555128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168512097216
          <idle>-0       [000] d.h1  5168.555167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.559116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.559122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168516094832
          <idle>-0       [000] d.h1  5168.559136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.563104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.563123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168520092368
          <idle>-0       [000] d.h1  5168.563161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.567118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.567138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168524106720
          <idle>-0       [000] d.h1  5168.567176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.571119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.571138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168528107488
          <idle>-0       [000] d.h1  5168.571177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.575105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.575111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168532083696
          <idle>-0       [000] d.h1  5168.575126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.579105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.579124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168536093088
          <idle>-0       [000] d.h1  5168.579161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.583108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.583127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168540096192
          <idle>-0       [000] d.h1  5168.583164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.587111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.587118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168544089984
          <idle>-0       [000] d.h1  5168.587132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.591107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.591126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168548094928
          <idle>-0       [000] d.h1  5168.591163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.595109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.595128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168552097200
          <idle>-0       [000] d.h1  5168.595167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.599108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.599128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168556096608
          <idle>-0       [000] d.h1  5168.599166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.603116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.603122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168560094912
          <idle>-0       [000] d.h1  5168.603128: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.603140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.603155: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.603161: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184437 baseclk=4296184437
          <idle>-0       [000] .Ns1  5168.603175: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.603187: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.603196: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.603215: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.607113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.607138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168564103712
          <idle>-0       [000] d.h1  5168.607193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.611125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.611146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168568114960
          <idle>-0       [000] d.h1  5168.611190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.615111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.615131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168572100320
          <idle>-0       [000] d.h1  5168.615150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.615181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.615199: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.615217: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296184440 baseclk=4296184440
          <idle>-0       [000] dNs1  5168.615258: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296184440 baseclk=4296184440
          <idle>-0       [000] dNs1  5168.615263: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296184440 baseclk=4296184440
          <idle>-0       [000] dNs1  5168.615266: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296184440 baseclk=4296184440
          <idle>-0       [000] dNs1  5168.615269: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296184440 baseclk=4296184440
          <idle>-0       [000] .Ns1  5168.615272: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.615284: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5168.615310: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5168.615324: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5168.615333: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5168.615340: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5168.615346: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5168.615363: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5168.615382: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.619124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.619151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168576115680
          <idle>-0       [000] d.h1  5168.619218: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.623113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.623135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168580103536
          <idle>-0       [000] d.h1  5168.623154: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.623189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.623208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.623221: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184442 baseclk=4296184442
          <idle>-0       [000] .Ns1  5168.623257: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.623292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.623316: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5168.623401: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.627111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.627137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168584101664
          <idle>-0       [000] d.h1  5168.627204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.631105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.631112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168588084048
          <idle>-0       [000] d.h1  5168.631128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.635106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.635127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168592095696
          <idle>-0       [000] d.h1  5168.635168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.639119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.639125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168596097648
          <idle>-0       [000] d.h1  5168.639140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.643102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.643122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168600090944
          <idle>-0       [000] d.h1  5168.643160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.647107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.647126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168604095488
          <idle>-0       [000] d.h1  5168.647165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.651110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.651141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168608098656
          <idle>-0       [000] d.h1  5168.651155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.655104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.655124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168612092656
          <idle>-0       [000] d.h1  5168.655162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.659107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.659127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168616096128
          <idle>-0       [000] d.h1  5168.659166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.663088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.663094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168620066912
          <idle>-0       [000] d.h1  5168.663109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.667104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.667137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168624092368
          <idle>-0       [000] d.h1  5168.667151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.671105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.671124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168628093488
          <idle>-0       [000] d.h1  5168.671163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.675104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.675110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168632082320
          <idle>-0       [000] d.h1  5168.675124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.679113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.679132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168636101072
          <idle>-0       [000] d.h1  5168.679149: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.679179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.679211: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5168.679225: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184456 baseclk=4296184456
          <idle>-0       [000] .Ns1  5168.679263: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184456 baseclk=4296184456
          <idle>-0       [000] .Ns1  5168.679300: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.679337: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5168.679438: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.679445: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5168.679469: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5168.679497: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.683119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.683151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168640111088
          <idle>-0       [000] d.h1  5168.683208: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.687116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.687138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168644105664
          <idle>-0       [000] d.h1  5168.687181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.691105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.691126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168648094256
          <idle>-0       [000] d.h1  5168.691168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.695105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.695125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168652093600
          <idle>-0       [000] d.h1  5168.695165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.699110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.699131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168656099584
          <idle>-0       [000] d.h1  5168.699171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.703085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.703105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168660074000
          <idle>-0       [000] d.h1  5168.703144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.707110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.707130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168664098592
          <idle>-0       [000] d.h1  5168.707147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.707184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.707188: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.707192: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184463 baseclk=4296184463
          <idle>-0       [000] .Ns1  5168.707219: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.707232: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.707240: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.707258: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.711135: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.711143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168668114352
          <idle>-0       [000] d.h1  5168.711162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.715111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.715145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168672100480
          <idle>-0       [000] d.h1  5168.715161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.719108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.719128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168676096944
          <idle>-0       [000] d.h1  5168.719167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.723104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.723124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168680092800
          <idle>-0       [000] d.h1  5168.723163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.727139: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.727146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168684118416
          <idle>-0       [000] d.h1  5168.727161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.731113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.731133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168688101504
          <idle>-0       [000] d.h1  5168.731171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.735105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.735125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168692094032
          <idle>-0       [000] d.h1  5168.735164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.739105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.739111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168696083744
          <idle>-0       [000] d.h1  5168.739126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.743103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.743122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168700091136
          <idle>-0       [000] d.h1  5168.743160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.747112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.747132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168704100800
          <idle>-0       [000] d.h1  5168.747171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.751108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.751127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168708096624
          <idle>-0       [000] d.h1  5168.751145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.751175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.751194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.751205: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184474 baseclk=4296184474
          <idle>-0       [000] .Ns1  5168.751242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.751283: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.751292: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5168.751323: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.755112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.755139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168712103680
          <idle>-0       [000] d.h1  5168.755190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.759110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.759131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168716099344
          <idle>-0       [000] d.h1  5168.759174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.763109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.763130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168720098416
          <idle>-0       [000] d.h1  5168.763170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.767115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.767136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168724104688
          <idle>-0       [000] d.h1  5168.767178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.771112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.771132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168728101104
          <idle>-0       [000] d.h1  5168.771172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.775105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.775125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168732093712
          <idle>-0       [000] d.h1  5168.775176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.779109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.779128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168736097344
          <idle>-0       [000] d.h1  5168.779167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.783109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.783129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168740097952
          <idle>-0       [000] d.h1  5168.783168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.787112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.787132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168744100560
          <idle>-0       [000] d.h1  5168.787171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.791110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.791116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168748088784
          <idle>-0       [000] d.h1  5168.791131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.795104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.795124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168752092912
          <idle>-0       [000] d.h1  5168.795163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.799103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.799123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168756091936
          <idle>-0       [000] d.h1  5168.799161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.803107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.803127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168760096048
          <idle>-0       [000] d.h1  5168.803167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.807096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.807116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168764085264
          <idle>-0       [000] d.h1  5168.807154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.811109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.811129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168768098000
          <idle>-0       [000] d.h1  5168.811146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.811176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.811195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.811219: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184489 baseclk=4296184489
          <idle>-0       [000] .Ns1  5168.811258: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.811293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.811316: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.811367: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.815126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.815152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168772116576
          <idle>-0       [000] d.h1  5168.815201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.819112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.819134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168776101792
          <idle>-0       [000] d.h1  5168.819176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.823109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.823129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168780097552
          <idle>-0       [000] d.h1  5168.823169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.827104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.827125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168784093232
          <idle>-0       [000] d.h1  5168.827167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.831109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.831129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168788098336
          <idle>-0       [000] d.h1  5168.831170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.835109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.835129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168792097680
          <idle>-0       [000] d.h1  5168.835167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.839110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.839130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168796098896
          <idle>-0       [000] d.h1  5168.839168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.843107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.843126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168800095200
          <idle>-0       [000] d.h1  5168.843165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.847108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.847128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168804096912
          <idle>-0       [000] d.h1  5168.847166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.851110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.851129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168808097936
          <idle>-0       [000] d.h1  5168.851167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.855104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.855123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168812092528
          <idle>-0       [000] d.h1  5168.855162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.859107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.859127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168816095920
          <idle>-0       [000] d.h1  5168.859165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.863108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.863127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168820096528
          <idle>-0       [000] d.h1  5168.863166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.867109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.867128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168824097248
          <idle>-0       [000] d.h1  5168.867159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.871103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.871123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168828091952
          <idle>-0       [000] d.h1  5168.871140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.871170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.871189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.871219: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296184504 baseclk=4296184504
          <idle>-0       [000] .Ns1  5168.871257: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.871293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.871319: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5168.871440: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.875120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.875159: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168832111328
          <idle>-0       [000] d.h1  5168.875214: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.879119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.879140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168836108720
          <idle>-0       [000] d.h1  5168.879160: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.879193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.879208: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.879221: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184506 baseclk=4296184506
          <idle>-0       [000] .Ns1  5168.879258: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.879295: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.879318: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5168.879387: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.883101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.883110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168840081424
          <idle>-0       [000] d.h1  5168.883118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.883132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.883146: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5168.883150: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184507 baseclk=4296184507
          <idle>-0       [000] .Ns1  5168.883165: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.883178: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.883185: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5168.883208: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5168.883235: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.887123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.887152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168844115296
          <idle>-0       [000] d.h1  5168.887224: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.891111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.891132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168848100544
          <idle>-0       [000] d.h1  5168.891186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.895106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.895127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168852095328
          <idle>-0       [000] d.h1  5168.895169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.899108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.899129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168856097360
          <idle>-0       [000] d.h1  5168.899169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.903118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.903139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168860107552
          <idle>-0       [000] d.h1  5168.903169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.907112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.907132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168864101168
          <idle>-0       [000] d.h1  5168.907167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.911105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.911125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168868094384
          <idle>-0       [000] d.h1  5168.911165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.915108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.915128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168872097072
          <idle>-0       [000] d.h1  5168.915145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5168.915175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5168.915195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5168.915229: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184515 baseclk=4296184515
          <idle>-0       [000] .Ns1  5168.915244: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5168.915256: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5168.915264: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5168.915283: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.919116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.919142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168876107152
          <idle>-0       [000] d.h1  5168.919192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.923115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.923136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168880104816
          <idle>-0       [000] d.h1  5168.923177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.927108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.927129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168884097552
          <idle>-0       [000] d.h1  5168.927169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.931117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.931124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168888096080
          <idle>-0       [000] d.h1  5168.931138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.935102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.935122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168892091360
          <idle>-0       [000] d.h1  5168.935171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.939125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.939145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168896113552
          <idle>-0       [000] d.h1  5168.939183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.943106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.943126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168900095120
          <idle>-0       [000] d.h1  5168.943165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.947107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.947128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168904096544
          <idle>-0       [000] d.h1  5168.947166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.951094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.951113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168908082192
          <idle>-0       [000] d.h1  5168.951144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.955103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.955123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168912091824
          <idle>-0       [000] d.h1  5168.955161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.959107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.959126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168916095440
          <idle>-0       [000] d.h1  5168.959166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.959710: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.959730: hrtimer_expire_entry: hrtimer=0000000056a168fb function=it_real_fn now=5168916698480
          <idle>-0       [000] dNh1  5168.959985: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5168.960013: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rdisc next_pid=252 next_prio=120
           rdisc-252     [000] d..2  5168.961319: sched_switch: prev_comm=rdisc prev_pid=252 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5168.963159: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.963177: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168920142864
          <idle>-0       [000] d.h1  5168.963223: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.967115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.967139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168924106752
          <idle>-0       [000] d.h1  5168.967191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.971114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.971135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168928104288
          <idle>-0       [000] d.h1  5168.971179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.975114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.975134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168932103520
          <idle>-0       [000] d.h1  5168.975174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.979082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.979102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168936071408
          <idle>-0       [000] d.h1  5168.979141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.983080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.983099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168940068512
          <idle>-0       [000] d.h1  5168.983137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.987091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.987097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168944069600
          <idle>-0       [000] d.h1  5168.987111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.991080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.991100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168948069440
          <idle>-0       [000] d.h1  5168.991139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.995082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.995102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168952071472
          <idle>-0       [000] d.h1  5168.995133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5168.999081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5168.999100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168956069280
          <idle>-0       [000] d.h1  5168.999138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.003084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.003103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168960072336
          <idle>-0       [000] d.h1  5169.003140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.007084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.007103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168964072512
          <idle>-0       [000] d.h1  5169.007124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.007154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.007191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.007216: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184538 baseclk=4296184538
          <idle>-0       [000] .Ns1  5169.007284: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.007333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.007350: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5169.007390: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.011093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.011103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168968074112
          <idle>-0       [000] d.h1  5169.011123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.015109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.015131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168972099120
          <idle>-0       [000] d.h1  5169.015176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.019107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.019114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168976086096
          <idle>-0       [000] d.h1  5169.019122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.019135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.019140: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.019144: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184541 baseclk=4296184541
          <idle>-0       [000] .Ns1  5169.019169: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.019182: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.019192: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.019212: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.023098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.023125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168980091888
          <idle>-0       [000] d.h1  5169.023193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.027084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.027106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168984074384
          <idle>-0       [000] d.h1  5169.027150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.031107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.031128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168988097104
          <idle>-0       [000] d.h1  5169.031169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.035101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.035121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168992090496
          <idle>-0       [000] d.h1  5169.035162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.039106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.039112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5168996084720
          <idle>-0       [000] d.h1  5169.039127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.043095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.043115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169000083936
          <idle>-0       [000] d.h1  5169.043154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.047109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.047129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169004097840
          <idle>-0       [000] d.h1  5169.047168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.051109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.051130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169008098704
          <idle>-0       [000] d.h1  5169.051169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.055109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.055129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169012098368
          <idle>-0       [000] d.h1  5169.055169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.059116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.059136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169016104944
          <idle>-0       [000] d.h1  5169.059185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.063114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.063120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169020092896
          <idle>-0       [000] d.h1  5169.063135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.067105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.067125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169024094608
          <idle>-0       [000] d.h1  5169.067164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.071118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.071138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169028107104
          <idle>-0       [000] d.h1  5169.071176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.075106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.075126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169032094848
          <idle>-0       [000] d.h1  5169.075161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.079104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.079124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169036093568
          <idle>-0       [000] d.h1  5169.079162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.083110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.083130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169040099008
          <idle>-0       [000] d.h1  5169.083167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.087111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.087131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169044100096
          <idle>-0       [000] d.h1  5169.087148: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.087185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.087190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5169.087195: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184558 baseclk=4296184558
          <idle>-0       [000] .Ns1  5169.087225: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.087238: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.087247: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5169.087296: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5169.087346: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.091130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.091159: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169048122848
          <idle>-0       [000] d.h1  5169.091217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.095100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.095122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169052090928
          <idle>-0       [000] d.h1  5169.095167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.099111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.099132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169056101168
          <idle>-0       [000] d.h1  5169.099173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.103105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.103126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169060094880
          <idle>-0       [000] d.h1  5169.103165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.107122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.107129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169064101456
          <idle>-0       [000] d.h1  5169.107144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.111104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.111124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169068093360
          <idle>-0       [000] d.h1  5169.111168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.115096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.115116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169072084784
          <idle>-0       [000] d.h1  5169.115155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.119109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.119129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169076097920
          <idle>-0       [000] d.h1  5169.119168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.123107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.123127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169080096256
          <idle>-0       [000] d.h1  5169.123145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.123175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.123195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.123208: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184567 baseclk=4296184567
          <idle>-0       [000] .Ns1  5169.123242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.123255: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.123264: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.123283: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.127114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.127139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169084105936
          <idle>-0       [000] d.h1  5169.127191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.131122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.131144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169088112400
          <idle>-0       [000] d.h1  5169.131189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.135111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.135132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169092100704
          <idle>-0       [000] d.h1  5169.135150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.135182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.135201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.135215: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184570 baseclk=4296184570
          <idle>-0       [000] .Ns1  5169.135250: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.135286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.135322: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5169.135352: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.139116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.139129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169096095264
          <idle>-0       [000] d.h1  5169.139149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.143108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.143130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169100098272
          <idle>-0       [000] d.h1  5169.143173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.147111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.147131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169104099600
          <idle>-0       [000] d.h1  5169.147171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.151109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.151129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169108098128
          <idle>-0       [000] d.h1  5169.151169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.155108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.155128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169112096752
          <idle>-0       [000] d.h1  5169.155161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.159104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.159124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169116093072
          <idle>-0       [000] d.h1  5169.159162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.163087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.163093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169120065344
          <idle>-0       [000] d.h1  5169.163107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.167106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.167125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169124094016
          <idle>-0       [000] d.h1  5169.167162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.171117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.171136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169128105568
          <idle>-0       [000] d.h1  5169.171175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.175105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.175124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169132093328
          <idle>-0       [000] d.h1  5169.175163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.179109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.179115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169136087584
          <idle>-0       [000] d.h1  5169.179129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.183103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.183122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169140091504
          <idle>-0       [000] d.h1  5169.183160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.187111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.187130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169144099200
          <idle>-0       [000] d.h1  5169.187167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.191110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.191129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169148098320
          <idle>-0       [000] d.h1  5169.191146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.191175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.191194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5169.191209: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184584 baseclk=4296184584
          <idle>-0       [000] .Ns1  5169.191246: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.191286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5169.191321: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.195118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.195127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169152097936
          <idle>-0       [000] d.h1  5169.195146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.199107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.199128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169156096624
          <idle>-0       [000] d.h1  5169.199169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.203111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.203130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169160099632
          <idle>-0       [000] d.h1  5169.203170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.207109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.207129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169164098096
          <idle>-0       [000] d.h1  5169.207168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.211109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.211129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169168097488
          <idle>-0       [000] d.h1  5169.211168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.215108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.215128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169172097216
          <idle>-0       [000] d.h1  5169.215166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.219107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.219127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169176096128
          <idle>-0       [000] d.h1  5169.219168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.223109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.223128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169180097376
          <idle>-0       [000] d.h1  5169.223166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.227108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.227128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169184096784
          <idle>-0       [000] d.h1  5169.227145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.227179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.227183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.227187: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184593 baseclk=4296184593
          <idle>-0       [000] .Ns1  5169.227213: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.227226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.227235: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.227254: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.231114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.231138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169188104384
          <idle>-0       [000] d.h1  5169.231188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.235130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.235151: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169192119728
          <idle>-0       [000] d.h1  5169.235192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.239112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.239132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169196101424
          <idle>-0       [000] d.h1  5169.239173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.243099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.243119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169200088064
          <idle>-0       [000] d.h1  5169.243158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.247124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.247143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169204112704
          <idle>-0       [000] d.h1  5169.247182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.251109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.251129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169208098080
          <idle>-0       [000] d.h1  5169.251167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.255108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.255127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169212096528
          <idle>-0       [000] d.h1  5169.255166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.259117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.259136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169216105536
          <idle>-0       [000] d.h1  5169.259175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.263107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.263127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169220095856
          <idle>-0       [000] d.h1  5169.263144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.263173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.263193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.263205: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184602 baseclk=4296184602
          <idle>-0       [000] .Ns1  5169.263236: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.263268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.263290: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5169.263349: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.267112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.267136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169224103232
          <idle>-0       [000] d.h1  5169.267186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.271115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.271122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169228093840
          <idle>-0       [000] d.h1  5169.271137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.275102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.275108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169232080640
          <idle>-0       [000] d.h1  5169.275123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.279105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.279125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169236093808
          <idle>-0       [000] d.h1  5169.279164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.283122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.283142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169240110672
          <idle>-0       [000] d.h1  5169.283183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.287111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.287134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169244106352
          <idle>-0       [000] d.h1  5169.287148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.291119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.291140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169248109216
          <idle>-0       [000] d.h1  5169.291158: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.291188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.291207: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5169.291232: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184609 baseclk=4296184609
          <idle>-0       [000] .Ns1  5169.291281: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.291318: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.291342: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5169.291407: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5169.291503: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.295111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.295120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169252090864
          <idle>-0       [000] d.h1  5169.295141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.299109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.299132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169256104848
          <idle>-0       [000] d.h1  5169.299149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.303105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.303125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169260094544
          <idle>-0       [000] d.h1  5169.303166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.307111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.307131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169264099568
          <idle>-0       [000] d.h1  5169.307160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.311096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.311116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169268084976
          <idle>-0       [000] d.h1  5169.311154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.315108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.315128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169272097088
          <idle>-0       [000] d.h1  5169.315179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.319108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.319127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169276096464
          <idle>-0       [000] d.h1  5169.319165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.323112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.323118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169280090752
          <idle>-0       [000] d.h1  5169.323132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.327123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.327143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169284111808
          <idle>-0       [000] d.h1  5169.327186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.331105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.331124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169288093312
          <idle>-0       [000] d.h1  5169.331142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.331172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.331191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.331205: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184619 baseclk=4296184619
          <idle>-0       [000] .Ns1  5169.331246: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.331285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.331311: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.331366: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.335115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.335139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169292106448
          <idle>-0       [000] d.h1  5169.335189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.339108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.339128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169296096800
          <idle>-0       [000] d.h1  5169.339170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.343107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.343129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169300101552
          <idle>-0       [000] d.h1  5169.343144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.347119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.347138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169304107680
          <idle>-0       [000] d.h1  5169.347178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.351108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.351128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169308096944
          <idle>-0       [000] d.h1  5169.351166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.355109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.355128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169312097376
          <idle>-0       [000] d.h1  5169.355166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.359114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.359133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169316102304
          <idle>-0       [000] d.h1  5169.359171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.363120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.363139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169320108128
          <idle>-0       [000] d.h1  5169.363177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.367089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.367095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169324067360
          <idle>-0       [000] d.h1  5169.367109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.371106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.371112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169328084704
          <idle>-0       [000] d.h1  5169.371126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.375103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.375123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169332091776
          <idle>-0       [000] d.h1  5169.375161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.379121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.379141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169336110080
          <idle>-0       [000] d.h1  5169.379179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.383108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.383114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169340086672
          <idle>-0       [000] d.h1  5169.383128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.387097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.387104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169344076112
          <idle>-0       [000] d.h1  5169.387118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.391103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.391122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169348091664
          <idle>-0       [000] d.h1  5169.391140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.391169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.391187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.391200: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184634 baseclk=4296184634
          <idle>-0       [000] .Ns1  5169.391231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.391264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.391287: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5169.391370: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.395112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.395136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169352102624
          <idle>-0       [000] d.h1  5169.395187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.399111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.399131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169356100096
          <idle>-0       [000] d.h1  5169.399173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.403112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.403131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169360100288
          <idle>-0       [000] d.h1  5169.403169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.407108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.407128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169364096960
          <idle>-0       [000] d.h1  5169.407167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.411112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.411131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169368100544
          <idle>-0       [000] d.h1  5169.411170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.415109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.415129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169372098080
          <idle>-0       [000] d.h1  5169.415166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.419111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.419130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169376099056
          <idle>-0       [000] d.h1  5169.419167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.423105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.423112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169380084096
          <idle>-0       [000] d.h1  5169.423126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.427079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.427098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169384067488
          <idle>-0       [000] d.h1  5169.427135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.431084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.431103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169388072048
          <idle>-0       [000] d.h1  5169.431140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.435083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.435102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169392071056
          <idle>-0       [000] d.h1  5169.435119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.435147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.435183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.435193: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184645 baseclk=4296184645
          <idle>-0       [000] .Ns1  5169.435224: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.435261: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.435285: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.435336: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.439095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.439119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169396085856
          <idle>-0       [000] d.h1  5169.439184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.443085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.443105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169400074048
          <idle>-0       [000] d.h1  5169.443147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.447095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.447101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169404073472
          <idle>-0       [000] d.h1  5169.447115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.451079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.451099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169408068560
          <idle>-0       [000] d.h1  5169.451160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.455080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.455100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169412069024
          <idle>-0       [000] d.h1  5169.455138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.459084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.459104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169416073152
          <idle>-0       [000] d.h1  5169.459142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.463083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.463103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169420071856
          <idle>-0       [000] d.h1  5169.463140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.467082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.467101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169424070528
          <idle>-0       [000] d.h1  5169.467138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.471085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.471104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169428073152
          <idle>-0       [000] d.h1  5169.471142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.475084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.475103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169432071952
          <idle>-0       [000] d.h1  5169.475140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.479094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.479100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169436072528
          <idle>-0       [000] d.h1  5169.479114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.483080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.483099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169440068320
          <idle>-0       [000] d.h1  5169.483136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.487084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.487112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169444084640
          <idle>-0       [000] d.h1  5169.487126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.491080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.491099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169448068192
          <idle>-0       [000] d.h1  5169.491135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.495087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.495093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169452066000
          <idle>-0       [000] d.h1  5169.495099: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.495111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.495115: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5169.495119: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184660 baseclk=4296184660
          <idle>-0       [000] .Ns1  5169.495146: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.495157: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.495164: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5169.495187: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5169.495215: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.499097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.499105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169456076384
          <idle>-0       [000] d.h1  5169.499127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.503088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.503094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169460066736
          <idle>-0       [000] d.h1  5169.503110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.507080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.507100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169464069152
          <idle>-0       [000] d.h1  5169.507139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.511081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.511101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169468070416
          <idle>-0       [000] d.h1  5169.511146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.515080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.515099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169472068736
          <idle>-0       [000] d.h1  5169.515132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.519060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.519066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169476038880
          <idle>-0       [000] d.h1  5169.519072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.519083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.519099: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.519105: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184666 baseclk=4296184666
          <idle>-0       [000] .Ns1  5169.519118: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.519131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.519139: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5169.519168: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.523065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.523073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169480044720
          <idle>-0       [000] d.h1  5169.523092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.527060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.527067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169484039472
          <idle>-0       [000] d.h1  5169.527082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.531059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.531066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169488038432
          <idle>-0       [000] d.h1  5169.531080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.535060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.535066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169492038400
          <idle>-0       [000] d.h1  5169.535080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.539060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.539066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169496038544
          <idle>-0       [000] d.h1  5169.539072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.539083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.539098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.539104: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184671 baseclk=4296184671
          <idle>-0       [000] .Ns1  5169.539117: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.539127: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.539135: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.539152: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.543089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.543097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169500068336
          <idle>-0       [000] d.h1  5169.543115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.547085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.547105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169504073936
          <idle>-0       [000] d.h1  5169.547147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.551083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.551103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169508071952
          <idle>-0       [000] d.h1  5169.551142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.555083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.555103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169512071808
          <idle>-0       [000] d.h1  5169.555140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.559085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.559104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169516073520
          <idle>-0       [000] d.h1  5169.559142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.563083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.563103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169520071920
          <idle>-0       [000] d.h1  5169.563140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.567083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.567102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169524071216
          <idle>-0       [000] d.h1  5169.567140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.571067: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.571073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169528045808
          <idle>-0       [000] d.h1  5169.571087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.575080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.575115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169532069136
          <idle>-0       [000] d.h1  5169.575163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.579081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.579100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169536069488
          <idle>-0       [000] d.h1  5169.579138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.583083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.583102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169540071136
          <idle>-0       [000] d.h1  5169.583139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.587111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.587130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169544099760
          <idle>-0       [000] d.h1  5169.587167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.591102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.591108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169548080880
          <idle>-0       [000] d.h1  5169.591122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.595095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.595114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169552083328
          <idle>-0       [000] d.h1  5169.595151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.599106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.599124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169556094016
          <idle>-0       [000] d.h1  5169.599162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.603108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.603127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169560096112
          <idle>-0       [000] d.h1  5169.603165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.607107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.607126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169564095488
          <idle>-0       [000] d.h1  5169.607163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.611107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.611130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169568102240
          <idle>-0       [000] d.h1  5169.611144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.615103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.615122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169572091136
          <idle>-0       [000] d.h1  5169.615159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.619107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.619126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169576095792
          <idle>-0       [000] d.h1  5169.619164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.623106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.623126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169580095104
          <idle>-0       [000] d.h1  5169.623164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.627108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.627141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169584096688
          <idle>-0       [000] d.h1  5169.627155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.631102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.631122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169588091328
          <idle>-0       [000] d.h1  5169.631159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.635107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.635126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169592095728
          <idle>-0       [000] d.h1  5169.635164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.639115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.639134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169596103664
          <idle>-0       [000] d.h1  5169.639151: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.639180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.639210: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.639234: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296184696 baseclk=4296184696
          <idle>-0       [000] dNs1  5169.639253: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296184696 baseclk=4296184696
          <idle>-0       [000] dNs1  5169.639258: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296184696 baseclk=4296184696
          <idle>-0       [000] dNs1  5169.639262: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296184696 baseclk=4296184696
          <idle>-0       [000] dNs1  5169.639265: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296184696 baseclk=4296184696
          <idle>-0       [000] .Ns1  5169.639268: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.639280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5169.639303: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5169.639317: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5169.639326: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5169.639333: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5169.639340: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5169.639357: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5169.639376: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.643124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.643150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169600116016
          <idle>-0       [000] d.h1  5169.643172: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.643214: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.643259: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.643272: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184697 baseclk=4296184697
          <idle>-0       [000] .Ns1  5169.643308: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.643336: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.643343: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.643360: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.647119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.647143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169604110128
          <idle>-0       [000] d.h1  5169.647165: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.647220: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.647237: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.647249: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184698 baseclk=4296184698
          <idle>-0       [000] .Ns1  5169.647278: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.647311: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.647331: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5169.647417: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.651119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.651144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169608110832
          <idle>-0       [000] d.h1  5169.651215: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.655108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.655130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169612098016
          <idle>-0       [000] d.h1  5169.655173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.659110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.659131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169616099504
          <idle>-0       [000] d.h1  5169.659173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.663109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.663129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169620097712
          <idle>-0       [000] d.h1  5169.663168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.667113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.667119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169624091488
          <idle>-0       [000] d.h1  5169.667134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.671094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.671126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169628082912
          <idle>-0       [000] d.h1  5169.671140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.675103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.675122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169632091568
          <idle>-0       [000] d.h1  5169.675170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.679103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.679122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169636091664
          <idle>-0       [000] d.h1  5169.679160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.683110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.683129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169640098752
          <idle>-0       [000] d.h1  5169.683166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.687110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.687129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169644098592
          <idle>-0       [000] d.h1  5169.687167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.691105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.691133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169648105920
          <idle>-0       [000] d.h1  5169.691147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.695097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.695104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169652076256
          <idle>-0       [000] d.h1  5169.695118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.699104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.699123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169656092736
          <idle>-0       [000] d.h1  5169.699140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.699170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.699188: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5169.699212: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184711 baseclk=4296184711
          <idle>-0       [000] .Ns1  5169.699260: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.699297: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.699334: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5169.699402: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5169.699489: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.703119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.703145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169660111120
          <idle>-0       [000] d.h1  5169.703169: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.703209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.703231: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5169.703259: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184712 baseclk=4296184712
          <idle>-0       [000] .Ns1  5169.703295: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.703335: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5169.703421: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.707132: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.707158: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169664123968
          <idle>-0       [000] d.h1  5169.707209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.711108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.711129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169668097408
          <idle>-0       [000] d.h1  5169.711173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.715110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.715131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169672100048
          <idle>-0       [000] d.h1  5169.715174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.719109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.719129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169676098096
          <idle>-0       [000] d.h1  5169.719169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.723109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.723129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169680098240
          <idle>-0       [000] d.h1  5169.723169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.727108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.727127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169684096464
          <idle>-0       [000] d.h1  5169.727167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.731118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.731138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169688106720
          <idle>-0       [000] d.h1  5169.731175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.735110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.735117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169692089104
          <idle>-0       [000] d.h1  5169.735131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.739119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.739138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169696107296
          <idle>-0       [000] d.h1  5169.739176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.743108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.743128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169700097168
          <idle>-0       [000] d.h1  5169.743166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.747115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.747122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169704094192
          <idle>-0       [000] d.h1  5169.747127: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.747138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.747155: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.747160: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184723 baseclk=4296184723
          <idle>-0       [000] .Ns1  5169.747174: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.747186: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.747194: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.747212: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.751117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.751141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169708107456
          <idle>-0       [000] d.h1  5169.751195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.755110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.755131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169712099584
          <idle>-0       [000] d.h1  5169.755175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.759112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.759133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169716101488
          <idle>-0       [000] d.h1  5169.759173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.763106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.763126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169720094992
          <idle>-0       [000] d.h1  5169.763166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.767116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.767136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169724104992
          <idle>-0       [000] d.h1  5169.767176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.771107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.771127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169728095952
          <idle>-0       [000] d.h1  5169.771167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.775063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.775070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169732042368
          <idle>-0       [000] d.h1  5169.775076: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.775087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.775091: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.775102: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184730 baseclk=4296184730
          <idle>-0       [000] .Ns1  5169.775114: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.775125: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.775132: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5169.775163: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.779062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.779070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169736041792
          <idle>-0       [000] d.h1  5169.779089: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.783096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.783103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169740075088
          <idle>-0       [000] d.h1  5169.783119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.787082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.787102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169744070880
          <idle>-0       [000] d.h1  5169.787142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.791081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.791101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169748069664
          <idle>-0       [000] d.h1  5169.791139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.795082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.795102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169752070992
          <idle>-0       [000] d.h1  5169.795149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.799081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.799101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169756070208
          <idle>-0       [000] d.h1  5169.799139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.803082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.803102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169760071168
          <idle>-0       [000] d.h1  5169.803140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.807086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.807092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169764064560
          <idle>-0       [000] d.h1  5169.807106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.811080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.811099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169768068608
          <idle>-0       [000] d.h1  5169.811137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.815083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.815102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169772071424
          <idle>-0       [000] d.h1  5169.815139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.819083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.819102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169776071744
          <idle>-0       [000] d.h1  5169.819140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.823083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.823102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169780071824
          <idle>-0       [000] d.h1  5169.823140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.827089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.827096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169784068016
          <idle>-0       [000] d.h1  5169.827111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.831083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.831090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169788062512
          <idle>-0       [000] d.h1  5169.831104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.835126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.835132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169792104416
          <idle>-0       [000] d.h1  5169.835145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.839105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.839124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169796093664
          <idle>-0       [000] d.h1  5169.839161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.843108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.843128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169800097232
          <idle>-0       [000] d.h1  5169.843165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.847108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.847143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169804096640
          <idle>-0       [000] d.h1  5169.847183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.851108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.851127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169808096560
          <idle>-0       [000] d.h1  5169.851145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.851177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.851182: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.851186: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184749 baseclk=4296184749
          <idle>-0       [000] .Ns1  5169.851215: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.851229: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.851238: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.851257: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.855105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.855113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169812084896
          <idle>-0       [000] d.h1  5169.855132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.859108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.859129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169816097584
          <idle>-0       [000] d.h1  5169.859169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.863097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.863118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169820086528
          <idle>-0       [000] d.h1  5169.863135: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.863165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.863183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.863200: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296184752 baseclk=4296184752
          <idle>-0       [000] .Ns1  5169.863232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.863264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.863286: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5169.863393: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.867114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.867139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169824105424
          <idle>-0       [000] d.h1  5169.867193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.871112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.871134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169828101968
          <idle>-0       [000] d.h1  5169.871178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.875114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.875135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169832103536
          <idle>-0       [000] d.h1  5169.875176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.879119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.879139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169836107760
          <idle>-0       [000] d.h1  5169.879178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.883109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.883129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169840098048
          <idle>-0       [000] d.h1  5169.883160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.887106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.887126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169844094896
          <idle>-0       [000] d.h1  5169.887160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.891106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.891125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169848094464
          <idle>-0       [000] d.h1  5169.891164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.895111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.895131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169852099872
          <idle>-0       [000] d.h1  5169.895169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.899112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.899131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169856100816
          <idle>-0       [000] d.h1  5169.899180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.903106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.903125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169860094208
          <idle>-0       [000] d.h1  5169.903142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.903179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.903183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5169.903187: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184762 baseclk=4296184762
          <idle>-0       [000] dNs1  5169.903232: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184762 baseclk=4296184762
          <idle>-0       [000] .Ns1  5169.903237: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.903249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.903257: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5169.903279: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] ....  5169.903296: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5169.903325: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.907108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.907117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169864088400
          <idle>-0       [000] d.h1  5169.907140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.911105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.911112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169868083904
          <idle>-0       [000] d.h1  5169.911129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.915105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.915126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169872094112
          <idle>-0       [000] d.h1  5169.915166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.919108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.919128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169876097120
          <idle>-0       [000] d.h1  5169.919168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.923121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.923127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169880099664
          <idle>-0       [000] d.h1  5169.923142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.927107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.927126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169884095424
          <idle>-0       [000] d.h1  5169.927173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.931095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.931115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169888084000
          <idle>-0       [000] d.h1  5169.931153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.935108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.935127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169892096912
          <idle>-0       [000] d.h1  5169.935165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.939107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.939126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169896095888
          <idle>-0       [000] d.h1  5169.939163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.943120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.943139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169900108560
          <idle>-0       [000] d.h1  5169.943177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.947109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.947128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169904097568
          <idle>-0       [000] d.h1  5169.947166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.951108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.951127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169908096480
          <idle>-0       [000] d.h1  5169.951164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.955113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.955133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169912101872
          <idle>-0       [000] d.h1  5169.955150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5169.955178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5169.955209: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5169.955220: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184775 baseclk=4296184775
          <idle>-0       [000] .Ns1  5169.955270: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5169.955283: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5169.955291: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5169.955310: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5169.959117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.959141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169916107984
          <idle>-0       [000] d.h1  5169.959194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.963105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.963125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169920094016
          <idle>-0       [000] d.h1  5169.963167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.967109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.967129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169924098320
          <idle>-0       [000] d.h1  5169.967174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.971101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.971108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169928080304
          <idle>-0       [000] d.h1  5169.971122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.975096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.975115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169932084128
          <idle>-0       [000] d.h1  5169.975153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.979106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.979125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169936094448
          <idle>-0       [000] d.h1  5169.979194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.983063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.983069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169940041472
          <idle>-0       [000] d.h1  5169.983083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.987084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.987090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169944062272
          <idle>-0       [000] d.h1  5169.987104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.991080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.991100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169948068928
          <idle>-0       [000] d.h1  5169.991136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.995083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.995102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169952071056
          <idle>-0       [000] d.h1  5169.995138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5169.999082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5169.999101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169956070496
          <idle>-0       [000] d.h1  5169.999138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.003083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.003102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169960070944
          <idle>-0       [000] d.h1  5170.003144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.007080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.007099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169964068336
          <idle>-0       [000] d.h1  5170.007136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.011079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.011098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169968067776
          <idle>-0       [000] d.h1  5170.011135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.015080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.015099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169972068048
          <idle>-0       [000] d.h1  5170.015136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.019106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.019124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169976093984
          <idle>-0       [000] d.h1  5170.019165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.023108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.023128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169980097104
          <idle>-0       [000] d.h1  5170.023178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.027106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.027125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169984094672
          <idle>-0       [000] d.h1  5170.027162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.031108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.031127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169988096416
          <idle>-0       [000] d.h1  5170.031144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.031173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.031219: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.031238: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184794 baseclk=4296184794
          <idle>-0       [000] .Ns1  5170.031272: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.031304: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.031312: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.031344: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.035119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.035143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169992109856
          <idle>-0       [000] d.h1  5170.035194: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.039110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.039131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5169996099712
          <idle>-0       [000] d.h1  5170.039173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.043112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.043132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170000100688
          <idle>-0       [000] d.h1  5170.043172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.047106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.047126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170004095184
          <idle>-0       [000] d.h1  5170.047166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.051110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.051129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170008098272
          <idle>-0       [000] d.h1  5170.051168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.055110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.055129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170012098304
          <idle>-0       [000] d.h1  5170.055166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.059108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.059127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170016096144
          <idle>-0       [000] d.h1  5170.059144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.059173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.059191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.059205: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184801 baseclk=4296184801
          <idle>-0       [000] .Ns1  5170.059243: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.059277: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.059301: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.059352: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.063115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.063138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170020104864
          <idle>-0       [000] d.h1  5170.063189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.067113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.067134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170024102256
          <idle>-0       [000] d.h1  5170.067176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.071104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.071124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170028093344
          <idle>-0       [000] d.h1  5170.071165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.075107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.075113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170032085424
          <idle>-0       [000] d.h1  5170.075128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.079110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.079117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170036089248
          <idle>-0       [000] d.h1  5170.079131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.083103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.083123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170040092048
          <idle>-0       [000] d.h1  5170.083162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.087087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.087093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170044065904
          <idle>-0       [000] d.h1  5170.087108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.091080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.091104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170048077072
          <idle>-0       [000] d.h1  5170.091126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.095079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.095099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170052067968
          <idle>-0       [000] d.h1  5170.095137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.099098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.099105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170056077168
          <idle>-0       [000] d.h1  5170.099119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.103083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.103089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170060061536
          <idle>-0       [000] d.h1  5170.103103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.107084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.107090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170064062768
          <idle>-0       [000] d.h1  5170.107096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.107108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.107112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.107116: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184813 baseclk=4296184813
          <idle>-0       [000] .Ns1  5170.107148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.107160: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.107168: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5170.107194: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5170.107223: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.111092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.111101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170068072240
          <idle>-0       [000] d.h1  5170.111123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.115097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.115103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170072075616
          <idle>-0       [000] d.h1  5170.115119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.119087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.119093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170076065952
          <idle>-0       [000] d.h1  5170.119108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.123087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.123094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170080066240
          <idle>-0       [000] d.h1  5170.123108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.127086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.127092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170084064352
          <idle>-0       [000] d.h1  5170.127106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.131099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.131106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170088078208
          <idle>-0       [000] d.h1  5170.131120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.135094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.135101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170092073120
          <idle>-0       [000] d.h1  5170.135114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.139091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.139097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170096069984
          <idle>-0       [000] d.h1  5170.139111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.143092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.143111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170100080768
          <idle>-0       [000] d.h1  5170.143149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.147081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.147100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170104070032
          <idle>-0       [000] d.h1  5170.147138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.151081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.151100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170108069984
          <idle>-0       [000] d.h1  5170.151138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.155081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.155100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170112070032
          <idle>-0       [000] d.h1  5170.155138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.159081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.159100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170116069664
          <idle>-0       [000] d.h1  5170.159123: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.159134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.159150: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.159157: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184826 baseclk=4296184826
          <idle>-0       [000] .Ns1  5170.159171: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.159185: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.159193: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.159227: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.163095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.163120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170120086768
          <idle>-0       [000] d.h1  5170.163141: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.163193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.163211: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.163222: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184827 baseclk=4296184827
          <idle>-0       [000] .Ns1  5170.163258: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.163272: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.163278: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.163295: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.167089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.167097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170124068560
          <idle>-0       [000] d.h1  5170.167116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.171088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.171095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170128067312
          <idle>-0       [000] d.h1  5170.171111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.175083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.175089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170132061904
          <idle>-0       [000] d.h1  5170.175104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.179083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.179090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170136062224
          <idle>-0       [000] d.h1  5170.179104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.183083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.183089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170140061408
          <idle>-0       [000] d.h1  5170.183094: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.183106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.183111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.183135: timer_expire_entry: timer=0000000069ffd954 function=process_timeout now=4296184832 baseclk=4296184832
          <idle>-0       [000] .Ns1  5170.183153: timer_expire_entry: timer=000000004e45ef35 function=process_timeout now=4296184832 baseclk=4296184832
          <idle>-0       [000] .Ns1  5170.183161: timer_expire_entry: timer=00000000c184b43c function=process_timeout now=4296184832 baseclk=4296184832
          <idle>-0       [000] .Ns1  5170.183170: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.183181: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=systemd-userwor next_pid=488 next_prio=120
 systemd-userwor-488     [000] d..2  5170.184027: sched_switch: prev_comm=systemd-userwor prev_pid=488 prev_prio=120 prev_state=S ==> next_comm=systemd-userwor next_pid=489 next_prio=120
 systemd-userwor-489     [000] d..2  5170.184408: sched_switch: prev_comm=systemd-userwor prev_pid=489 prev_prio=120 prev_state=S ==> next_comm=systemd-userwor next_pid=487 next_prio=120
 systemd-userwor-487     [000] d..2  5170.184746: sched_switch: prev_comm=systemd-userwor prev_pid=487 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.187124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.187144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170144108832
          <idle>-0       [000] d.h1  5170.187170: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5170.187203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.187221: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] .Ns1  5170.187266: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d..2  5170.187290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5170.187352: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.191089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.191098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170148069136
          <idle>-0       [000] d.h1  5170.191109: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5170.191126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.191132: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] ..s1  5170.191154: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5170.195089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.195096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170152068128
          <idle>-0       [000] d.h1  5170.195103: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.195117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.195122: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.195127: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296184835 baseclk=4296184835
          <idle>-0       [000] .Ns1  5170.195155: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.195168: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5170.195225: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.199120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.199144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170156110864
          <idle>-0       [000] d.h1  5170.199169: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5170.199205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.199224: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] ..s1  5170.199431: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5170.203123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.203132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170160103008
          <idle>-0       [000] d.h1  5170.203152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.207107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.207128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170164096000
          <idle>-0       [000] d.h1  5170.207171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.211097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.211117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170168085888
          <idle>-0       [000] d.h1  5170.211158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.215096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.215102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170172075024
          <idle>-0       [000] d.h1  5170.215108: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.215120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.215125: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.215130: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184840 baseclk=4296184840
          <idle>-0       [000] .Ns1  5170.215149: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.215164: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5170.215205: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.219119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.219145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170176111552
          <idle>-0       [000] d.h1  5170.219201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.223112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.223133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170180101840
          <idle>-0       [000] d.h1  5170.223177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.227116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.227136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170184104944
          <idle>-0       [000] d.h1  5170.227175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.231109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.231129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170188098208
          <idle>-0       [000] d.h1  5170.231170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.235081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.235100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170192069712
          <idle>-0       [000] d.h1  5170.235139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.239157: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.239179: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170196147952
          <idle>-0       [000] d.h1  5170.239228: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.243098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.243118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170200087360
          <idle>-0       [000] d.h1  5170.243158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.247114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.247121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170204093024
          <idle>-0       [000] d.h1  5170.247135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.251113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.251132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170208101392
          <idle>-0       [000] d.h1  5170.251170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.255100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.255119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170212088464
          <idle>-0       [000] d.h1  5170.255157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.259110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.259130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170216098608
          <idle>-0       [000] d.h1  5170.259168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.263106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.263112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170220084272
          <idle>-0       [000] d.h1  5170.263126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.267079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.267098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170224067696
          <idle>-0       [000] d.h1  5170.267115: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.267144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.267176: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.267187: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184853 baseclk=4296184853
          <idle>-0       [000] .Ns1  5170.267232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.267245: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.267260: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.267287: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.271100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.271125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170228091472
          <idle>-0       [000] d.h1  5170.271179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.275098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.275119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170232087440
          <idle>-0       [000] d.h1  5170.275161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.279112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.279133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170236101760
          <idle>-0       [000] d.h1  5170.279172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.283122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.283128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170240100896
          <idle>-0       [000] d.h1  5170.283142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.287107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.287127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170244095680
          <idle>-0       [000] d.h1  5170.287144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.287174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.287193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.287211: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184858 baseclk=4296184858
          <idle>-0       [000] .Ns1  5170.287249: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.287285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.287309: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.287407: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.291128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.291152: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170248119296
          <idle>-0       [000] d.h1  5170.291219: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.295111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.295132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170252100048
          <idle>-0       [000] d.h1  5170.295175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.299109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.299129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170256098528
          <idle>-0       [000] d.h1  5170.299165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.303096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.303116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170260085264
          <idle>-0       [000] d.h1  5170.303155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.307111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.307130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170264099888
          <idle>-0       [000] d.h1  5170.307169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.311109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.311128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170268097600
          <idle>-0       [000] d.h1  5170.311146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.311175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.311194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.311209: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184864 baseclk=4296184864
          <idle>-0       [000] .Ns1  5170.311258: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.311293: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.311316: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5170.311415: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5170.311467: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.315124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.315133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170272104144
          <idle>-0       [000] d.h1  5170.315155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.319120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.319141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170276109568
          <idle>-0       [000] d.h1  5170.319184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.323116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.323136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170280104944
          <idle>-0       [000] d.h1  5170.323176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.327105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.327125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170284093808
          <idle>-0       [000] d.h1  5170.327164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.331113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.331134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170288103040
          <idle>-0       [000] d.h1  5170.331175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.335110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.335130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170292098960
          <idle>-0       [000] d.h1  5170.335168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.339110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.339129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170296098352
          <idle>-0       [000] d.h1  5170.339168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.343100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.343106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170300078720
          <idle>-0       [000] d.h1  5170.343121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.347104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.347123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170304092528
          <idle>-0       [000] d.h1  5170.347160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.351108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.351128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170308096832
          <idle>-0       [000] d.h1  5170.351165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.355115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.355121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170312093376
          <idle>-0       [000] d.h1  5170.355134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.359105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.359124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170316093808
          <idle>-0       [000] d.h1  5170.359162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.363101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.363120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170320089504
          <idle>-0       [000] d.h1  5170.363156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.367105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.367124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170324093472
          <idle>-0       [000] d.h1  5170.367156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.371107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.371126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170328095216
          <idle>-0       [000] d.h1  5170.371143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.371171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.371201: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.371218: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184879 baseclk=4296184879
          <idle>-0       [000] .Ns1  5170.371235: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.371249: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.371258: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.371278: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.375115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.375131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170332094720
          <idle>-0       [000] d.h1  5170.375152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.379109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.379130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170336099152
          <idle>-0       [000] d.h1  5170.379173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.383112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.383133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170340102224
          <idle>-0       [000] d.h1  5170.383170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.387104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.387110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170344082832
          <idle>-0       [000] d.h1  5170.387125: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.391083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.391089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170348062016
          <idle>-0       [000] d.h1  5170.391104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.395116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.395122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170352094368
          <idle>-0       [000] d.h1  5170.395136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.399095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.399115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170356084144
          <idle>-0       [000] d.h1  5170.399152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.403121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.403140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170360109520
          <idle>-0       [000] d.h1  5170.403177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.407106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.407126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170364094992
          <idle>-0       [000] d.h1  5170.407164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.411096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.411115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170368084608
          <idle>-0       [000] d.h1  5170.411153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.415109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.415128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170372097728
          <idle>-0       [000] d.h1  5170.415145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.415175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.415194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.415221: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184890 baseclk=4296184890
          <idle>-0       [000] .Ns1  5170.415261: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.415298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.415332: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.415362: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.419113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.419140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170376106800
          <idle>-0       [000] d.h1  5170.419192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.423113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.423135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170380102992
          <idle>-0       [000] d.h1  5170.423179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.427107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.427127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170384095856
          <idle>-0       [000] d.h1  5170.427168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.431108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.431129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170388097456
          <idle>-0       [000] d.h1  5170.431169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.435110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.435116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170392088704
          <idle>-0       [000] d.h1  5170.435131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.439104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.439124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170396092448
          <idle>-0       [000] d.h1  5170.439162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.443088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.443095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170400067008
          <idle>-0       [000] d.h1  5170.443110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.447083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.447089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170404061296
          <idle>-0       [000] d.h1  5170.447103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.451083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.451089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170408061744
          <idle>-0       [000] d.h1  5170.451103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.455082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.455089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170412061344
          <idle>-0       [000] d.h1  5170.455103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.459083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.459089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170416061424
          <idle>-0       [000] d.h1  5170.459103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.463082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.463089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170420061456
          <idle>-0       [000] d.h1  5170.463103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.467084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.467090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170424062576
          <idle>-0       [000] d.h1  5170.467104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.471082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.471089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170428061248
          <idle>-0       [000] d.h1  5170.471103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.475083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.475089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170432061584
          <idle>-0       [000] d.h1  5170.475095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.475106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.475111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.475114: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184905 baseclk=4296184905
          <idle>-0       [000] .Ns1  5170.475140: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.475152: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.475160: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.475178: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.479091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.479100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170436071488
          <idle>-0       [000] d.h1  5170.479119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.483087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.483094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170440066288
          <idle>-0       [000] d.h1  5170.483109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.487087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.487093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170444065888
          <idle>-0       [000] d.h1  5170.487108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.491086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.491092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170448064560
          <idle>-0       [000] d.h1  5170.491106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.495093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.495100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170452072304
          <idle>-0       [000] d.h1  5170.495113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.499093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.499099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170456071696
          <idle>-0       [000] d.h1  5170.499113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.503084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.503090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170460062960
          <idle>-0       [000] d.h1  5170.503105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.507083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.507089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170464061632
          <idle>-0       [000] d.h1  5170.507103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.511082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.511089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170468061248
          <idle>-0       [000] d.h1  5170.511103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.515083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.515089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170472061600
          <idle>-0       [000] d.h1  5170.515095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.515107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.515111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.515115: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184915 baseclk=4296184915
          <idle>-0       [000] .Ns1  5170.515142: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.515154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.515162: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5170.515188: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5170.515218: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.519097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.519107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170476077456
          <idle>-0       [000] d.h1  5170.519128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.523085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.523098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170480064096
          <idle>-0       [000] d.h1  5170.523115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.527083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.527090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170484062768
          <idle>-0       [000] d.h1  5170.527106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.531083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.531090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170488062080
          <idle>-0       [000] d.h1  5170.531105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.535084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.535090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170492062608
          <idle>-0       [000] d.h1  5170.535105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.539095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.539101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170496073792
          <idle>-0       [000] d.h1  5170.539115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.543084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.543090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170500062848
          <idle>-0       [000] d.h1  5170.543096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.543108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.543113: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.543117: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184922 baseclk=4296184922
          <idle>-0       [000] .Ns1  5170.543146: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.543159: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.543167: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.543198: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.547092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.547100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170504072144
          <idle>-0       [000] d.h1  5170.547120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.551084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.551091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170508063632
          <idle>-0       [000] d.h1  5170.551108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.555083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.555090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170512062416
          <idle>-0       [000] d.h1  5170.555105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.559083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.559089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170516061552
          <idle>-0       [000] d.h1  5170.559104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.563083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.563090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170520062144
          <idle>-0       [000] d.h1  5170.563104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.567083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.567089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170524061936
          <idle>-0       [000] d.h1  5170.567104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.571094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.571101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170528073136
          <idle>-0       [000] d.h1  5170.571114: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.575083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.575089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170532061872
          <idle>-0       [000] d.h1  5170.575104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.579084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.579090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170536062672
          <idle>-0       [000] d.h1  5170.579096: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.579108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.579112: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.579116: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184931 baseclk=4296184931
          <idle>-0       [000] .Ns1  5170.579144: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.579156: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.579164: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.579182: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.583067: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.583075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170540046784
          <idle>-0       [000] d.h1  5170.583094: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.587089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.587096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170544068480
          <idle>-0       [000] d.h1  5170.587112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.591087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.591094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170548066128
          <idle>-0       [000] d.h1  5170.591109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.595102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.595108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170552080464
          <idle>-0       [000] d.h1  5170.595123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.599085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.599091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170556063504
          <idle>-0       [000] d.h1  5170.599106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.603083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.603089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170560061712
          <idle>-0       [000] d.h1  5170.603103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.607084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.607090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170564062752
          <idle>-0       [000] d.h1  5170.607104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.611084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.611091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170568063088
          <idle>-0       [000] d.h1  5170.611104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.615083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.615089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170572061440
          <idle>-0       [000] d.h1  5170.615103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.619082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.619089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170576061120
          <idle>-0       [000] d.h1  5170.619103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.623082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.623089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170580061184
          <idle>-0       [000] d.h1  5170.623103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.627057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.627064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170584036128
          <idle>-0       [000] d.h1  5170.627077: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.631083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.631090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170588062448
          <idle>-0       [000] d.h1  5170.631103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.635057: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.635064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170592036096
          <idle>-0       [000] d.h1  5170.635077: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.639083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.639089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170596061872
          <idle>-0       [000] d.h1  5170.639104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.643083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.643089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170600061936
          <idle>-0       [000] d.h1  5170.643103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.647082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.647089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170604061328
          <idle>-0       [000] d.h1  5170.647103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.651082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.651088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170608060832
          <idle>-0       [000] d.h1  5170.651102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.655082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.655089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170612061200
          <idle>-0       [000] d.h1  5170.655103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.659082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.659089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170616061216
          <idle>-0       [000] d.h1  5170.659103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.663083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.663089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170620061744
          <idle>-0       [000] d.h1  5170.663095: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.663107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.663111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.663118: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296184952 baseclk=4296184952
          <idle>-0       [000] dNs1  5170.663146: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296184952 baseclk=4296184952
          <idle>-0       [000] dNs1  5170.663152: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296184952 baseclk=4296184952
          <idle>-0       [000] dNs1  5170.663156: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296184952 baseclk=4296184952
          <idle>-0       [000] dNs1  5170.663159: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296184952 baseclk=4296184952
          <idle>-0       [000] .Ns1  5170.663163: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.663175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5170.663196: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5170.663210: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5170.663219: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5170.663232: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5170.663239: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5170.663256: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5170.663276: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.667094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.667104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170624075536
          <idle>-0       [000] d.h1  5170.667127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.671089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.671096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170628068336
          <idle>-0       [000] d.h1  5170.671103: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.671116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.671128: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.671134: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184954 baseclk=4296184954
          <idle>-0       [000] .Ns1  5170.671147: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.671159: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.671168: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.671198: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.675064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.675073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170632044496
          <idle>-0       [000] d.h1  5170.675093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.679060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.679067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170636039360
          <idle>-0       [000] d.h1  5170.679084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.683059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.683066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170640038016
          <idle>-0       [000] d.h1  5170.683072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.683084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.683099: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.683105: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184957 baseclk=4296184957
          <idle>-0       [000] .Ns1  5170.683118: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.683130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.683138: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.683155: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.687064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.687073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170644044800
          <idle>-0       [000] d.h1  5170.687093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.691089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.691097: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170648068944
          <idle>-0       [000] d.h1  5170.691113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.695082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.695104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170652072704
          <idle>-0       [000] d.h1  5170.695146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.699083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.699104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170656072992
          <idle>-0       [000] d.h1  5170.699144: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.703087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.703108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170660077168
          <idle>-0       [000] d.h1  5170.703139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.707082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.707103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170664071696
          <idle>-0       [000] d.h1  5170.707142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.711081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.711102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170668070928
          <idle>-0       [000] d.h1  5170.711141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.715085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.715108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170672080720
          <idle>-0       [000] d.h1  5170.715122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.719082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.719103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170676071696
          <idle>-0       [000] d.h1  5170.719121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.719151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.719185: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.719195: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296184966 baseclk=4296184966
          <idle>-0       [000] .Ns1  5170.719241: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.719278: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.719303: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5170.719374: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5170.719455: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.723105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.723135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170680099152
          <idle>-0       [000] d.h1  5170.723208: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.727085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.727108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170684076272
          <idle>-0       [000] d.h1  5170.727129: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.727163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.727183: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.727194: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296184968 baseclk=4296184968
          <idle>-0       [000] .Ns1  5170.727229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.727267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5170.727356: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.731098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.731125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170688091744
          <idle>-0       [000] d.h1  5170.731178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.735084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.735107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170692075408
          <idle>-0       [000] d.h1  5170.735152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.739083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.739105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170696074272
          <idle>-0       [000] d.h1  5170.739148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.743083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.743104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170700072704
          <idle>-0       [000] d.h1  5170.743166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.747083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.747103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170704072240
          <idle>-0       [000] d.h1  5170.747143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.751084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.751105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170708074016
          <idle>-0       [000] d.h1  5170.751137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.755083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.755090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170712062544
          <idle>-0       [000] d.h1  5170.755105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.759092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.759099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170716071712
          <idle>-0       [000] d.h1  5170.759113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.763081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.763102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170720071216
          <idle>-0       [000] d.h1  5170.763147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.767089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.767110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170724079552
          <idle>-0       [000] d.h1  5170.767150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.771102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.771124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170728092544
          <idle>-0       [000] d.h1  5170.771163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.775085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.775105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170732074720
          <idle>-0       [000] d.h1  5170.775145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.779080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.779101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170736069968
          <idle>-0       [000] d.h1  5170.779140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.783085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.783106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170740075504
          <idle>-0       [000] d.h1  5170.783145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.787086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.787107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170744076032
          <idle>-0       [000] d.h1  5170.787125: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.787155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.787187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.787198: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296184983 baseclk=4296184983
          <idle>-0       [000] .Ns1  5170.787237: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.787279: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.787289: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.787309: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.791101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.791126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170748092320
          <idle>-0       [000] d.h1  5170.791179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.795083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.795115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170752072864
          <idle>-0       [000] d.h1  5170.795130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.799061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.799067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170756039520
          <idle>-0       [000] d.h1  5170.799073: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.799084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.799100: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.799105: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296184986 baseclk=4296184986
          <idle>-0       [000] .Ns1  5170.799119: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.799130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.799138: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.799168: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.803093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.803118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170760084432
          <idle>-0       [000] d.h1  5170.803184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.807085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.807106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170764074320
          <idle>-0       [000] d.h1  5170.807149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.811086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.811106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170768075280
          <idle>-0       [000] d.h1  5170.811147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.815082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.815102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170772070800
          <idle>-0       [000] d.h1  5170.815139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.819083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.819103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170776072224
          <idle>-0       [000] d.h1  5170.819140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.823083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.823102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170780071280
          <idle>-0       [000] d.h1  5170.823140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.827084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.827103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170784072416
          <idle>-0       [000] d.h1  5170.827141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.831086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.831106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170788075056
          <idle>-0       [000] d.h1  5170.831146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.835085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.835105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170792073776
          <idle>-0       [000] d.h1  5170.835142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.839085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.839105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170796073840
          <idle>-0       [000] d.h1  5170.839142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.843084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.843103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170800072176
          <idle>-0       [000] d.h1  5170.843140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.847084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.847103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170804072672
          <idle>-0       [000] d.h1  5170.847141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.851085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.851104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170808073152
          <idle>-0       [000] d.h1  5170.851141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.855084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.855103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170812072352
          <idle>-0       [000] d.h1  5170.855140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.859083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.859102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170816071536
          <idle>-0       [000] d.h1  5170.859139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.863083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.863102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170820071408
          <idle>-0       [000] d.h1  5170.863139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.867085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.867104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170824073360
          <idle>-0       [000] d.h1  5170.867141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.871082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.871102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170828070928
          <idle>-0       [000] d.h1  5170.871139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.875084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.875103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170832072304
          <idle>-0       [000] d.h1  5170.875140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.879083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.879102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170836071376
          <idle>-0       [000] d.h1  5170.879139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.883083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.883102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170840071600
          <idle>-0       [000] d.h1  5170.883139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.887082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.887101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170844070256
          <idle>-0       [000] d.h1  5170.887118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.887146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.887178: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.887197: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296185008 baseclk=4296185008
          <idle>-0       [000] .Ns1  5170.887230: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.887266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.887289: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5170.887402: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.891099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.891122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170848089296
          <idle>-0       [000] d.h1  5170.891144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.891184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.891204: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.891213: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185009 baseclk=4296185009
          <idle>-0       [000] .Ns1  5170.891255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.891268: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.891275: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.891292: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.895103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.895111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170852082464
          <idle>-0       [000] d.h1  5170.895130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.899084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.899104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170856073120
          <idle>-0       [000] d.h1  5170.899146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.903086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.903106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170860074480
          <idle>-0       [000] d.h1  5170.903145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.907086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.907106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170864075504
          <idle>-0       [000] d.h1  5170.907145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.911085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.911104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170868073376
          <idle>-0       [000] d.h1  5170.911148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.915081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.915100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170872069184
          <idle>-0       [000] d.h1  5170.915138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.919088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.919094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170876066848
          <idle>-0       [000] d.h1  5170.919108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.923082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.923101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170880070448
          <idle>-0       [000] d.h1  5170.923119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.923148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.923180: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5170.923191: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185017 baseclk=4296185017
          <idle>-0       [000] .Ns1  5170.923234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.923282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.923305: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5170.923370: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5170.923451: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.927103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.927128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170884094976
          <idle>-0       [000] d.h1  5170.927152: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.927208: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.927227: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.927240: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185018 baseclk=4296185018
          <idle>-0       [000] .Ns1  5170.927276: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.927316: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.927339: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5170.927410: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.931099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.931108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170888079424
          <idle>-0       [000] d.h1  5170.931128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.935443: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.935463: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170892431392
          <idle>-0       [000] d.h1  5170.935507: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.939121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.939133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170896103792
          <idle>-0       [000] d.h1  5170.939162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.943095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.943102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170900074432
          <idle>-0       [000] d.h1  5170.943120: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.947105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.947126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170904094784
          <idle>-0       [000] d.h1  5170.947166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.951109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.951129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170908098032
          <idle>-0       [000] d.h1  5170.951169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.955110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.955130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170912098976
          <idle>-0       [000] d.h1  5170.955168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.959110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.959130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170916099088
          <idle>-0       [000] d.h1  5170.959168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.963106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.963126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170920094624
          <idle>-0       [000] d.h1  5170.963164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.967084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.967104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170924073280
          <idle>-0       [000] d.h1  5170.967141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.971085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.971104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170928073440
          <idle>-0       [000] d.h1  5170.971142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.975084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.975103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170932072224
          <idle>-0       [000] d.h1  5170.975140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.979085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.979104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170936073232
          <idle>-0       [000] d.h1  5170.979141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.983090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.983096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170940068256
          <idle>-0       [000] d.h1  5170.983109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.987090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.987096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170944068880
          <idle>-0       [000] d.h1  5170.987110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.991060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.991066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170948038528
          <idle>-0       [000] d.h1  5170.991079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5170.995060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.995066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170952038400
          <idle>-0       [000] d.h1  5170.995072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5170.995084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5170.995099: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5170.995108: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185035 baseclk=4296185035
          <idle>-0       [000] .Ns1  5170.995134: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5170.995155: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5170.995171: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5170.995204: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5170.999078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5170.999086: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170956057472
          <idle>-0       [000] d.h1  5170.999106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.003061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.003067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170960039600
          <idle>-0       [000] d.h1  5171.003083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.007060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.007067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170964039568
          <idle>-0       [000] d.h1  5171.007081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.011061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.011068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170968040352
          <idle>-0       [000] d.h1  5171.011083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.015060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.015067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170972039584
          <idle>-0       [000] d.h1  5171.015082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.019061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.019067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170976039760
          <idle>-0       [000] d.h1  5171.019084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.023061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.023067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170980039536
          <idle>-0       [000] d.h1  5171.023082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.027060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.027066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170984038496
          <idle>-0       [000] d.h1  5171.027080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.031059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.031066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170988038592
          <idle>-0       [000] d.h1  5171.031080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.035094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.035101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170992073072
          <idle>-0       [000] d.h1  5171.035115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.039087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.039094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5170996066368
          <idle>-0       [000] d.h1  5171.039108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.043061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.043067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171000039792
          <idle>-0       [000] d.h1  5171.043082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.047060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.047066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171004038688
          <idle>-0       [000] d.h1  5171.047081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.051060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.051066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171008038512
          <idle>-0       [000] d.h1  5171.051080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.055059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.055065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171012037760
          <idle>-0       [000] d.h1  5171.055072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.055083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.055098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.055108: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185050 baseclk=4296185050
          <idle>-0       [000] .Ns1  5171.055130: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.055150: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.055161: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.055200: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.059067: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.059075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171016046656
          <idle>-0       [000] d.h1  5171.059096: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.063073: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.063079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171020051552
          <idle>-0       [000] d.h1  5171.063095: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.067059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.067076: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171024038032
          <idle>-0       [000] d.h1  5171.067091: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.071061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.071068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171028040112
          <idle>-0       [000] d.h1  5171.071082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.075081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.075101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171032070464
          <idle>-0       [000] d.h1  5171.075139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.079087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.079093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171036065568
          <idle>-0       [000] d.h1  5171.079107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.083080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.083100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171040069152
          <idle>-0       [000] d.h1  5171.083137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.087083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.087103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171044071792
          <idle>-0       [000] d.h1  5171.087140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.091084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.091104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171048073008
          <idle>-0       [000] d.h1  5171.091142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.095085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.095104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171052073392
          <idle>-0       [000] d.h1  5171.095142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.099080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.099099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171056068912
          <idle>-0       [000] d.h1  5171.099117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.099146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.099178: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.099189: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185061 baseclk=4296185061
          <idle>-0       [000] .Ns1  5171.099229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.099270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.099296: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.099362: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.103101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.103128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171060094624
          <idle>-0       [000] d.h1  5171.103178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.107084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.107105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171064074112
          <idle>-0       [000] d.h1  5171.107148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.111087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.111107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171068076128
          <idle>-0       [000] d.h1  5171.111162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.115081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.115101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171072070096
          <idle>-0       [000] d.h1  5171.115140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.119084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.119104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171076072976
          <idle>-0       [000] d.h1  5171.119142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.123081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.123100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171080069408
          <idle>-0       [000] d.h1  5171.123138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.127084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.127103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171084072000
          <idle>-0       [000] d.h1  5171.127129: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.127140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.127155: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5171.127162: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185068 baseclk=4296185068
          <idle>-0       [000] .Ns1  5171.127179: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.127193: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.127201: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5171.127242: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5171.127282: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.131102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.131130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171088093840
          <idle>-0       [000] d.h1  5171.131201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.135086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.135117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171092089552
          <idle>-0       [000] d.h1  5171.135133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.139082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.139102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171096070800
          <idle>-0       [000] d.h1  5171.139142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.143082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.143102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171100071072
          <idle>-0       [000] d.h1  5171.143141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.147085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.147104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171104073360
          <idle>-0       [000] d.h1  5171.147142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.151095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.151102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171108074064
          <idle>-0       [000] d.h1  5171.151116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.155080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.155100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171112068640
          <idle>-0       [000] d.h1  5171.155138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.159084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.159103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171116072816
          <idle>-0       [000] d.h1  5171.159141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.163083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.163116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171120071696
          <idle>-0       [000] d.h1  5171.163130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.167081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.167100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171124069344
          <idle>-0       [000] d.h1  5171.167138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.171083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.171103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171128072112
          <idle>-0       [000] d.h1  5171.171149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.175081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.175100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171132069792
          <idle>-0       [000] d.h1  5171.175138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.179089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.179095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171136067520
          <idle>-0       [000] d.h1  5171.179108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.183080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.183099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171140068272
          <idle>-0       [000] d.h1  5171.183116: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.183146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.183177: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.183191: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185082 baseclk=4296185082
          <idle>-0       [000] .Ns1  5171.183229: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.183266: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.183291: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.183339: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.187101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.187126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171144092208
          <idle>-0       [000] d.h1  5171.187191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.191085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.191107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171148075168
          <idle>-0       [000] d.h1  5171.191149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.195085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.195105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171152074384
          <idle>-0       [000] d.h1  5171.195145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.199087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.199094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171156066192
          <idle>-0       [000] d.h1  5171.199108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.203103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.203123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171160091664
          <idle>-0       [000] d.h1  5171.203140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.203169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.203190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.203215: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185087 baseclk=4296185087
          <idle>-0       [000] .Ns1  5171.203254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.203289: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.203297: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.203321: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.207094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.207102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171164073472
          <idle>-0       [000] d.h1  5171.207121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.211107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.211128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171168096416
          <idle>-0       [000] d.h1  5171.211170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.215109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.215129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171172098288
          <idle>-0       [000] d.h1  5171.215169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.219108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.219128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171176097520
          <idle>-0       [000] d.h1  5171.219166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.223110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.223130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171180098624
          <idle>-0       [000] d.h1  5171.223169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.227107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.227127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171184096176
          <idle>-0       [000] d.h1  5171.227165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.231106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.231112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171188084928
          <idle>-0       [000] d.h1  5171.231127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.235103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.235122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171192091472
          <idle>-0       [000] d.h1  5171.235160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.239107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.239126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171196095168
          <idle>-0       [000] d.h1  5171.239143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.239172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.239190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5171.239205: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296185096 baseclk=4296185096
          <idle>-0       [000] .Ns1  5171.239240: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.239275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5171.239332: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.243122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.243150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171200115200
          <idle>-0       [000] d.h1  5171.243200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.247110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.247131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171204099600
          <idle>-0       [000] d.h1  5171.247172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.251109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.251129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171208098224
          <idle>-0       [000] d.h1  5171.251168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.255109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.255129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171212097888
          <idle>-0       [000] d.h1  5171.255168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.259108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.259127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171216096448
          <idle>-0       [000] d.h1  5171.259166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.263098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.263117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171220086864
          <idle>-0       [000] d.h1  5171.263155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.267111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.267131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171224099904
          <idle>-0       [000] d.h1  5171.267169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.271112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.271131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171228100464
          <idle>-0       [000] d.h1  5171.271169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.275111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.275131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171232099712
          <idle>-0       [000] d.h1  5171.275169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.279113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.279132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171236101600
          <idle>-0       [000] d.h1  5171.279170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.283109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.283128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171240097200
          <idle>-0       [000] d.h1  5171.283166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.287112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.287132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171244100928
          <idle>-0       [000] d.h1  5171.287169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.291116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.291135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171248104224
          <idle>-0       [000] d.h1  5171.291172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.295109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.295128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171252097408
          <idle>-0       [000] d.h1  5171.295164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.299108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.299127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171256096352
          <idle>-0       [000] d.h1  5171.299164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.303107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.303126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171260095104
          <idle>-0       [000] d.h1  5171.303163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.307117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.307135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171264105056
          <idle>-0       [000] d.h1  5171.307166: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.307177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.307191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.307197: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185113 baseclk=4296185113
          <idle>-0       [000] .Ns1  5171.307211: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.307223: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.307231: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.307250: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.311117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.311141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171268108176
          <idle>-0       [000] d.h1  5171.311162: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.311212: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.311230: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.311242: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185114 baseclk=4296185114
          <idle>-0       [000] .Ns1  5171.311273: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.311306: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.311327: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.311407: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.315122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.315147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171272113696
          <idle>-0       [000] d.h1  5171.315212: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.319109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.319130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171276098432
          <idle>-0       [000] d.h1  5171.319175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.323118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.323138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171280106960
          <idle>-0       [000] d.h1  5171.323178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.327105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.327130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171284102176
          <idle>-0       [000] d.h1  5171.327145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.331108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.331131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171288103008
          <idle>-0       [000] d.h1  5171.331137: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.331152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.331156: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5171.331160: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185119 baseclk=4296185119
          <idle>-0       [000] .Ns1  5171.331189: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.331203: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.331213: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5171.331240: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5171.331274: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.335111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.335120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171292091312
          <idle>-0       [000] d.h1  5171.335142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.339112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.339133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171296101808
          <idle>-0       [000] d.h1  5171.339193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.343107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.343127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171300095888
          <idle>-0       [000] d.h1  5171.343170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.347104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.347124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171304093296
          <idle>-0       [000] d.h1  5171.347165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.351105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.351111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171308083856
          <idle>-0       [000] d.h1  5171.351126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.355107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.355126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171312095008
          <idle>-0       [000] d.h1  5171.355165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.359108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.359127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171316096304
          <idle>-0       [000] d.h1  5171.359166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.363108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.363127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171320096224
          <idle>-0       [000] d.h1  5171.363166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.367108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.367128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171324096432
          <idle>-0       [000] d.h1  5171.367166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.371109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.371128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171328097232
          <idle>-0       [000] d.h1  5171.371167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.375107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.375113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171332085696
          <idle>-0       [000] d.h1  5171.375128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.379103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.379123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171336091888
          <idle>-0       [000] d.h1  5171.379161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.383108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.383127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171340096544
          <idle>-0       [000] d.h1  5171.383166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.387105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.387112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171344084064
          <idle>-0       [000] d.h1  5171.387126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.391095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.391115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171348083760
          <idle>-0       [000] d.h1  5171.391152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.395108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.395114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171352086496
          <idle>-0       [000] d.h1  5171.395128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.399112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.399132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171356100944
          <idle>-0       [000] d.h1  5171.399169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.403108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.403127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171360096064
          <idle>-0       [000] d.h1  5171.403165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.407108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.407127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171364096624
          <idle>-0       [000] d.h1  5171.407165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.411089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.411095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171368067664
          <idle>-0       [000] d.h1  5171.411101: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.411113: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.411118: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.411122: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185139 baseclk=4296185139
          <idle>-0       [000] .Ns1  5171.411150: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.411163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.411172: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.411192: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.415115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.415142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171372113440
          <idle>-0       [000] d.h1  5171.415160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.419107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.419127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171376095824
          <idle>-0       [000] d.h1  5171.419170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.423110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.423116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171380088560
          <idle>-0       [000] d.h1  5171.423131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.427101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.427107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171384079568
          <idle>-0       [000] d.h1  5171.427122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.431119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.431138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171388107136
          <idle>-0       [000] d.h1  5171.431177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.435111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.435130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171392099200
          <idle>-0       [000] d.h1  5171.435169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.439107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.439127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171396095600
          <idle>-0       [000] d.h1  5171.439143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.439172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.439203: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.439216: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185146 baseclk=4296185146
          <idle>-0       [000] .Ns1  5171.439247: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.439274: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.439282: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.439310: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.443117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.443142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171400108576
          <idle>-0       [000] d.h1  5171.443195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.447103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.447124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171404092576
          <idle>-0       [000] d.h1  5171.447165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.451109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.451128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171408097632
          <idle>-0       [000] d.h1  5171.451168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.455108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.455114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171412086368
          <idle>-0       [000] d.h1  5171.455129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.459078: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.459098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171416067552
          <idle>-0       [000] d.h1  5171.459137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.463102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.463122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171420091648
          <idle>-0       [000] d.h1  5171.463162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.467110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.467130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171424099072
          <idle>-0       [000] d.h1  5171.467168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.471117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.471136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171428105520
          <idle>-0       [000] d.h1  5171.471175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.475107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.475126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171432095392
          <idle>-0       [000] d.h1  5171.475165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.479112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.479131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171436100480
          <idle>-0       [000] d.h1  5171.479169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.483110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.483130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171440099088
          <idle>-0       [000] d.h1  5171.483168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.487104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.487110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171444083008
          <idle>-0       [000] d.h1  5171.487124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.491103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.491122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171448091648
          <idle>-0       [000] d.h1  5171.491161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.495104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.495124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171452093232
          <idle>-0       [000] d.h1  5171.495161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.499099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.499119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171456088368
          <idle>-0       [000] d.h1  5171.499157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.503110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.503131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171460100176
          <idle>-0       [000] d.h1  5171.503170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.507111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.507130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171464099168
          <idle>-0       [000] d.h1  5171.507168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.511111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.511130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171468099680
          <idle>-0       [000] d.h1  5171.511169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.515107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.515125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171472094896
          <idle>-0       [000] d.h1  5171.515143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.515171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.515189: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.515214: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185165 baseclk=4296185165
          <idle>-0       [000] .Ns1  5171.515248: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.515286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.515294: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.515313: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.519126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.519150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171476116752
          <idle>-0       [000] d.h1  5171.519200: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.523112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.523133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171480101184
          <idle>-0       [000] d.h1  5171.523174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.527097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.527104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171484076416
          <idle>-0       [000] d.h1  5171.527119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.531121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.531142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171488110544
          <idle>-0       [000] d.h1  5171.531181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.535119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.535125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171492097888
          <idle>-0       [000] d.h1  5171.535131: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.535142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.535147: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5171.535150: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185170 baseclk=4296185170
          <idle>-0       [000] .Ns1  5171.535178: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.535189: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.535197: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5171.535219: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5171.535248: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.539117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.539142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171496108528
          <idle>-0       [000] d.h1  5171.539197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.543112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.543133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171500100976
          <idle>-0       [000] d.h1  5171.543176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.547118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.547139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171504107152
          <idle>-0       [000] d.h1  5171.547179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.551116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.551143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171508109616
          <idle>-0       [000] d.h1  5171.551201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.555109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.555130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171512098496
          <idle>-0       [000] d.h1  5171.555171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.559109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.559129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171516097968
          <idle>-0       [000] d.h1  5171.559169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.563098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.563118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171520087200
          <idle>-0       [000] d.h1  5171.563157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.567084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.567103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171524072624
          <idle>-0       [000] d.h1  5171.567121: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.567151: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.567181: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.567196: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185178 baseclk=4296185178
          <idle>-0       [000] .Ns1  5171.567235: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.567283: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.567311: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.567417: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.571092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.571100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171528071584
          <idle>-0       [000] d.h1  5171.571119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.575083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.575104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171532072368
          <idle>-0       [000] d.h1  5171.575146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.579086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.579106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171536074752
          <idle>-0       [000] d.h1  5171.579147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.583081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.583101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171540070128
          <idle>-0       [000] d.h1  5171.583139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.587063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.587070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171544042096
          <idle>-0       [000] d.h1  5171.587084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.591059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.591065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171548037824
          <idle>-0       [000] d.h1  5171.591079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.595061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.595067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171552039792
          <idle>-0       [000] d.h1  5171.595081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.599060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.599066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171556038448
          <idle>-0       [000] d.h1  5171.599080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.603059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.603065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171560037744
          <idle>-0       [000] d.h1  5171.603079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.607063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.607069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171564041472
          <idle>-0       [000] d.h1  5171.607083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.611059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.611066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171568038128
          <idle>-0       [000] d.h1  5171.611079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.615060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.615066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171572038816
          <idle>-0       [000] d.h1  5171.615080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.619059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.619065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171576037360
          <idle>-0       [000] d.h1  5171.619070: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.619081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.619097: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.619103: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185191 baseclk=4296185191
          <idle>-0       [000] .Ns1  5171.619116: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.619128: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.619135: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.619154: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.623064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.623071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171580043104
          <idle>-0       [000] d.h1  5171.623090: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.627059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.627066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171584038144
          <idle>-0       [000] d.h1  5171.627081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.631060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.631066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171588038528
          <idle>-0       [000] d.h1  5171.631080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.635064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.635070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171592042656
          <idle>-0       [000] d.h1  5171.635084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.639058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.639072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171596036944
          <idle>-0       [000] d.h1  5171.639086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.643059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.643065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171600037872
          <idle>-0       [000] d.h1  5171.643079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.647061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.647067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171604039376
          <idle>-0       [000] d.h1  5171.647080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.651058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.651064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171608037072
          <idle>-0       [000] d.h1  5171.651078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.655079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.655098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171612067856
          <idle>-0       [000] d.h1  5171.655135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.659087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.659093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171616065936
          <idle>-0       [000] d.h1  5171.659107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.663086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.663092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171620064480
          <idle>-0       [000] d.h1  5171.663106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.667083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.667090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171624062144
          <idle>-0       [000] d.h1  5171.667104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.671082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.671088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171628060672
          <idle>-0       [000] d.h1  5171.671102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.675082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.675088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171632060992
          <idle>-0       [000] d.h1  5171.675102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.679082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.679088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171636060704
          <idle>-0       [000] d.h1  5171.679102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.683082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.683088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171640060592
          <idle>-0       [000] d.h1  5171.683101: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.687082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.687088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171644060400
          <idle>-0       [000] d.h1  5171.687094: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.687105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.687110: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.687115: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296185208 baseclk=4296185208
          <idle>-0       [000] dNs1  5171.687134: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296185208 baseclk=4296185208
          <idle>-0       [000] dNs1  5171.687138: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296185208 baseclk=4296185208
          <idle>-0       [000] dNs1  5171.687141: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296185208 baseclk=4296185208
          <idle>-0       [000] dNs1  5171.687144: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296185208 baseclk=4296185208
          <idle>-0       [000] .Ns1  5171.687148: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.687161: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5171.687182: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5171.687195: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5171.687201: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5171.687205: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5171.687210: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5171.687226: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5171.687243: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.691063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.691072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171648043024
          <idle>-0       [000] d.h1  5171.691092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.695085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.695092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171652064128
          <idle>-0       [000] d.h1  5171.695099: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.695112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.695117: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.695121: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185210 baseclk=4296185210
          <idle>-0       [000] .Ns1  5171.695145: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.695158: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.695166: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.695197: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.699091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.699099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171656070960
          <idle>-0       [000] d.h1  5171.699118: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.703084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.703091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171660063616
          <idle>-0       [000] d.h1  5171.703108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.707084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.707090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171664062528
          <idle>-0       [000] d.h1  5171.707105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.711083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.711089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171668061680
          <idle>-0       [000] d.h1  5171.711104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.715060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.715066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171672038560
          <idle>-0       [000] d.h1  5171.715079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.719060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.719066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171676038432
          <idle>-0       [000] d.h1  5171.719072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.719083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.719098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.719105: timer_expire_entry: timer=0000000032f5e2dd function=delayed_work_timer_fn now=4296185216 baseclk=4296185216
          <idle>-0       [000] .Ns1  5171.719118: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.719130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5171.719138: workqueue_execute_start: work struct 00000000b561f7ea: function wb_workfn
   kworker/u12:1-498     [000] d..2  5171.719236: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.723065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.723073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171680044720
          <idle>-0       [000] d.h1  5171.723082: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.723097: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.723113: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.723118: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185217 baseclk=4296185217
          <idle>-0       [000] .Ns1  5171.723132: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.723146: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.723153: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.723171: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.727063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.727072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171684043136
          <idle>-0       [000] d.h1  5171.727092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.731060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.731067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171688039728
          <idle>-0       [000] d.h1  5171.731083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.735060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.735067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171692039328
          <idle>-0       [000] d.h1  5171.735081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.739082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.739102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171696071248
          <idle>-0       [000] d.h1  5171.739119: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.739149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.739180: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5171.739191: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185221 baseclk=4296185221
          <idle>-0       [000] .Ns1  5171.739231: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.739264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.739286: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5171.739380: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5171.739418: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.743107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.743116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171700086640
          <idle>-0       [000] d.h1  5171.743137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.747093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.747114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171704082576
          <idle>-0       [000] d.h1  5171.747174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.751082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.751102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171708070768
          <idle>-0       [000] d.h1  5171.751120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.751147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.751162: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5171.751169: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296185224 baseclk=4296185224
          <idle>-0       [000] .Ns1  5171.751184: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.751197: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5171.751234: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.755093: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.755117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171712084096
          <idle>-0       [000] d.h1  5171.755167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.759082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.759103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171716071648
          <idle>-0       [000] d.h1  5171.759150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.761612: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.761618: hrtimer_expire_entry: hrtimer=00000000ff8d7fdd function=it_real_fn now=5171718590672
          <idle>-0       [000] dNh1  5171.761780: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5171.761808: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rngd next_pid=169 next_prio=120
            rngd-169     [000] d.h.  5171.763116: irq_handler_entry: irq=11 name=arch_timer
            rngd-169     [000] d.h.  5171.763170: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171720124704
            rngd-169     [000] d.h.  5171.763342: irq_handler_exit: irq=11 ret=handled
            rngd-169     [000] d..2  5171.764728: sched_switch: prev_comm=rngd prev_pid=169 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.767118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.767131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171724099712
          <idle>-0       [000] d.h1  5171.767164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.771088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.771112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171728079424
          <idle>-0       [000] d.h1  5171.771162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.775086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.775109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171732076720
          <idle>-0       [000] d.h1  5171.775150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.779108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.779128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171736097104
          <idle>-0       [000] d.h1  5171.779168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.783107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.783114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171740086096
          <idle>-0       [000] d.h1  5171.783128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.787104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.787124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171744092624
          <idle>-0       [000] d.h1  5171.787163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.791109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.791128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171748097392
          <idle>-0       [000] d.h1  5171.791169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.795103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.795123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171752091968
          <idle>-0       [000] d.h1  5171.795162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.799123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.799142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171756111456
          <idle>-0       [000] d.h1  5171.799180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.803108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.803127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171760096208
          <idle>-0       [000] d.h1  5171.803166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.807109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.807129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171764097552
          <idle>-0       [000] d.h1  5171.807167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.811108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.811128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171768096752
          <idle>-0       [000] d.h1  5171.811166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.815107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.815138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171772095984
          <idle>-0       [000] d.h1  5171.815152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.819083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.819090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171776062080
          <idle>-0       [000] d.h1  5171.819104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.823097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.823116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171780085024
          <idle>-0       [000] d.h1  5171.823147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.823179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.823210: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.823275: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185242 baseclk=4296185242
          <idle>-0       [000] .Ns1  5171.823446: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.823497: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.823522: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.823588: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.827118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.827145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171784109056
          <idle>-0       [000] d.h1  5171.827168: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.827208: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.827239: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.827257: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185243 baseclk=4296185243
          <idle>-0       [000] .Ns1  5171.827273: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.827286: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.827295: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.827317: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.831126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.831154: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171788118176
          <idle>-0       [000] d.h1  5171.831224: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.835112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.835134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171792102160
          <idle>-0       [000] d.h1  5171.835178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.839088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.839108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171796076976
          <idle>-0       [000] d.h1  5171.839149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.843106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.843127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171800095504
          <idle>-0       [000] d.h1  5171.843166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.847105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.847111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171804083872
          <idle>-0       [000] d.h1  5171.847126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.851104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.851123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171808092560
          <idle>-0       [000] d.h1  5171.851162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.855107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.855127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171812095600
          <idle>-0       [000] d.h1  5171.855165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.859117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.859124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171816096160
          <idle>-0       [000] d.h1  5171.859138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.863103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.863122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171820091344
          <idle>-0       [000] d.h1  5171.863161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.867112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.867131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171824100560
          <idle>-0       [000] d.h1  5171.867169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.871106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.871112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171828084464
          <idle>-0       [000] d.h1  5171.871126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.875106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.875125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171832094576
          <idle>-0       [000] d.h1  5171.875163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.879082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.879101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171836070512
          <idle>-0       [000] d.h1  5171.879118: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.879147: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.879179: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.879197: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296185256 baseclk=4296185256
          <idle>-0       [000] .Ns1  5171.879233: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.879271: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.879297: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5171.879411: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.883092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.883101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171840072096
          <idle>-0       [000] d.h1  5171.883122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.887085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.887092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171844064032
          <idle>-0       [000] d.h1  5171.887108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.891084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.891090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171848062832
          <idle>-0       [000] d.h1  5171.891105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.895095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.895101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171852073824
          <idle>-0       [000] d.h1  5171.895115: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.899083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.899089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171856061872
          <idle>-0       [000] d.h1  5171.899104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.903084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.903090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171860062512
          <idle>-0       [000] d.h1  5171.903104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.907096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.907115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171864084080
          <idle>-0       [000] d.h1  5171.907153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.911108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.911127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171868096208
          <idle>-0       [000] d.h1  5171.911165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.915119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.915125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171872097776
          <idle>-0       [000] d.h1  5171.915139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.919113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.919120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171876092192
          <idle>-0       [000] d.h1  5171.919134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.923080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.923099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171880068416
          <idle>-0       [000] d.h1  5171.923133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.927121: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.927127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171884099648
          <idle>-0       [000] d.h1  5171.927141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.931102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.931108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171888080592
          <idle>-0       [000] d.h1  5171.931114: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.931126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.931131: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.931134: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185269 baseclk=4296185269
          <idle>-0       [000] .Ns1  5171.931163: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.931175: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.931184: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5171.931203: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.935120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.935145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171892110608
          <idle>-0       [000] d.h1  5171.935197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.939111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.939132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171896099984
          <idle>-0       [000] d.h1  5171.939175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.943114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.943134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171900103072
          <idle>-0       [000] d.h1  5171.943164: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.943175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.943180: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5171.943189: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185272 baseclk=4296185272
          <idle>-0       [000] .Ns1  5171.943210: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.943222: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.943230: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5171.943333: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5171.943408: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.947092: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.947103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171904072672
          <idle>-0       [000] d.h1  5171.947126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.951088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.951110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171908077520
          <idle>-0       [000] d.h1  5171.951130: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5171.951164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5171.951195: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5171.951208: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185274 baseclk=4296185274
          <idle>-0       [000] .Ns1  5171.951247: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5171.951283: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5171.951307: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5171.951396: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.955126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.955153: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171912117200
          <idle>-0       [000] d.h1  5171.955196: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.959099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.959106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171916077792
          <idle>-0       [000] d.h1  5171.959123: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.961282: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.961302: hrtimer_expire_entry: hrtimer=0000000056a168fb function=it_real_fn now=5171918270592
          <idle>-0       [000] dNh1  5171.961520: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5171.961546: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rdisc next_pid=252 next_prio=120
           rdisc-252     [000] d..2  5171.961892: sched_switch: prev_comm=rdisc prev_pid=252 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5171.963157: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.963206: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171920158928
          <idle>-0       [000] d.h1  5171.963271: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.967114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.967136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171924103808
          <idle>-0       [000] d.h1  5171.967187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.971112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.971133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171928101344
          <idle>-0       [000] d.h1  5171.971175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.975119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.975139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171932108160
          <idle>-0       [000] d.h1  5171.975178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.979113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.979119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171936091680
          <idle>-0       [000] d.h1  5171.979134: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.983079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.983098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171940067520
          <idle>-0       [000] d.h1  5171.983137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.987082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.987102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171944070944
          <idle>-0       [000] d.h1  5171.987139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.991083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.991102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171948071536
          <idle>-0       [000] d.h1  5171.991141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.995083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.995102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171952071376
          <idle>-0       [000] d.h1  5171.995141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5171.999082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5171.999101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171956070112
          <idle>-0       [000] d.h1  5171.999138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.003080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.003099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171960068352
          <idle>-0       [000] d.h1  5172.003136: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.007082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.007102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171964071136
          <idle>-0       [000] d.h1  5172.007139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.011087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.011093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171968065408
          <idle>-0       [000] d.h1  5172.011106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.015084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.015090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171972062672
          <idle>-0       [000] d.h1  5172.015104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.019119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.019139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171976108656
          <idle>-0       [000] d.h1  5172.019182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.023084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.023090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171980062512
          <idle>-0       [000] d.h1  5172.023104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.027114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.027133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171984102656
          <idle>-0       [000] d.h1  5172.027171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.031106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.031125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171988094624
          <idle>-0       [000] d.h1  5172.031163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.035120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.035140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171992109120
          <idle>-0       [000] d.h1  5172.035161: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.035193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.035235: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.035260: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185295 baseclk=4296185295
          <idle>-0       [000] .Ns1  5172.035329: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.035389: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.035405: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.035433: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.039138: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.039146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5171996117984
          <idle>-0       [000] d.h1  5172.039167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.043105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.043112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172000084368
          <idle>-0       [000] d.h1  5172.043128: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.047107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.047128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172004096880
          <idle>-0       [000] d.h1  5172.047178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.051106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.051125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172008094096
          <idle>-0       [000] d.h1  5172.051165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.055112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.055145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172012101104
          <idle>-0       [000] d.h1  5172.055159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.059107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.059126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172016095072
          <idle>-0       [000] d.h1  5172.059165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.063112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.063132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172020100928
          <idle>-0       [000] d.h1  5172.063170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.067107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.067126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172024095248
          <idle>-0       [000] d.h1  5172.067165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.071110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.071129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172028098608
          <idle>-0       [000] d.h1  5172.071168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.075111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.075130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172032099200
          <idle>-0       [000] d.h1  5172.075168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.079108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.079128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172036096768
          <idle>-0       [000] d.h1  5172.079145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.079174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.079193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.079211: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185306 baseclk=4296185306
          <idle>-0       [000] .Ns1  5172.079246: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.079282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.079307: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.079401: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.083115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.083140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172040106736
          <idle>-0       [000] d.h1  5172.083195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.087110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.087131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172044099888
          <idle>-0       [000] d.h1  5172.087175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.091097: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.091117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172048085600
          <idle>-0       [000] d.h1  5172.091157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.095111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.095144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172052100368
          <idle>-0       [000] d.h1  5172.095159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.099105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.099124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172056093328
          <idle>-0       [000] d.h1  5172.099163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.103101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.103120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172060089136
          <idle>-0       [000] d.h1  5172.103159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.107120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.107139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172064108400
          <idle>-0       [000] d.h1  5172.107178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.111123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.111143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172068111872
          <idle>-0       [000] d.h1  5172.111182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.115103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.115122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172072091392
          <idle>-0       [000] d.h1  5172.115161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.119106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.119125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172076094688
          <idle>-0       [000] d.h1  5172.119164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.123106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.123126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172080094784
          <idle>-0       [000] d.h1  5172.123164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.127107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.127127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172084096176
          <idle>-0       [000] d.h1  5172.127165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.131110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.131129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172088098576
          <idle>-0       [000] d.h1  5172.131167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.135107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.135113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172092085744
          <idle>-0       [000] d.h1  5172.135127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.139102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.139122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172096090752
          <idle>-0       [000] d.h1  5172.139139: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.139169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.139187: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.139211: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185321 baseclk=4296185321
          <idle>-0       [000] .Ns1  5172.139250: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.139280: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.139288: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.139307: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.143125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.143149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172100116128
          <idle>-0       [000] d.h1  5172.143203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.147127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.147148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172104116368
          <idle>-0       [000] d.h1  5172.147167: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.147199: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.147231: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5172.147250: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185323 baseclk=4296185323
          <idle>-0       [000] .Ns1  5172.147296: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.147308: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.147316: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5172.147368: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5172.147418: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.151109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.151119: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172108089264
          <idle>-0       [000] d.h1  5172.151142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.155114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.155150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172112103408
          <idle>-0       [000] d.h1  5172.155197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.159110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.159130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172116099456
          <idle>-0       [000] d.h1  5172.159183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.163086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.163106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172120075440
          <idle>-0       [000] d.h1  5172.163145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.167119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.167139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172124108272
          <idle>-0       [000] d.h1  5172.167177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.171108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.171128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172128096592
          <idle>-0       [000] d.h1  5172.171167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.175109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.175128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172132097136
          <idle>-0       [000] d.h1  5172.175166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.179106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.179125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172136094528
          <idle>-0       [000] d.h1  5172.179163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.183125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.183144: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172140113648
          <idle>-0       [000] d.h1  5172.183183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.187108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.187127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172144096288
          <idle>-0       [000] d.h1  5172.187156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.191103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.191122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172148091216
          <idle>-0       [000] d.h1  5172.191160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.195108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.195127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172152096320
          <idle>-0       [000] d.h1  5172.195165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.199107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.199127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172156096144
          <idle>-0       [000] d.h1  5172.199165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.203108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.203127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172160096512
          <idle>-0       [000] d.h1  5172.203165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.207111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.207130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172164099488
          <idle>-0       [000] d.h1  5172.207147: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.207176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.207196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.207209: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185338 baseclk=4296185338
          <idle>-0       [000] .Ns1  5172.207247: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.207283: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.207308: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.207397: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.211116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.211140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172168107264
          <idle>-0       [000] d.h1  5172.211197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.215115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.215136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172172104176
          <idle>-0       [000] d.h1  5172.215180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.219127: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.219147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172176115968
          <idle>-0       [000] d.h1  5172.219187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.223104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.223110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172180082416
          <idle>-0       [000] d.h1  5172.223127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.227084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.227091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172184063024
          <idle>-0       [000] d.h1  5172.227105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.231104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.231123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172188092400
          <idle>-0       [000] d.h1  5172.231162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.235122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.235128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172192100528
          <idle>-0       [000] d.h1  5172.235143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.239106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.239125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172196094000
          <idle>-0       [000] d.h1  5172.239164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.243108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.243127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172200096032
          <idle>-0       [000] d.h1  5172.243144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.243174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.243193: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.243217: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185347 baseclk=4296185347
          <idle>-0       [000] .Ns1  5172.243255: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.243267: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.243275: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.243292: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.247126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.247149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172204120880
          <idle>-0       [000] d.h1  5172.247169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.251109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.251130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172208098208
          <idle>-0       [000] d.h1  5172.251172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.255106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.255126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172212095408
          <idle>-0       [000] d.h1  5172.255166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.259109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.259129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172216097568
          <idle>-0       [000] d.h1  5172.259168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.263108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.263128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172220096864
          <idle>-0       [000] d.h1  5172.263145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.263175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.263200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5172.263205: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296185352 baseclk=4296185352
          <idle>-0       [000] .Ns1  5172.263234: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.263246: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5172.263284: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.267094: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.267103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172224073872
          <idle>-0       [000] d.h1  5172.267124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.271106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.271113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172228085360
          <idle>-0       [000] d.h1  5172.271129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.275103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.275124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172232092592
          <idle>-0       [000] d.h1  5172.275164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.279109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.279129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172236098320
          <idle>-0       [000] d.h1  5172.279170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.283108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.283129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172240097392
          <idle>-0       [000] d.h1  5172.283178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.287108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.287128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172244096544
          <idle>-0       [000] d.h1  5172.287167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.291112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.291132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172248101328
          <idle>-0       [000] d.h1  5172.291171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.295104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.295123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172252092880
          <idle>-0       [000] d.h1  5172.295162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.299104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.299123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172256092240
          <idle>-0       [000] d.h1  5172.299162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.303119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.303138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172260107200
          <idle>-0       [000] d.h1  5172.303177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.307120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.307141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172264110624
          <idle>-0       [000] d.h1  5172.307181: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.311107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.311127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172268095904
          <idle>-0       [000] d.h1  5172.311165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.315107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.315127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172272096224
          <idle>-0       [000] d.h1  5172.315166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.319108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.319127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172276096224
          <idle>-0       [000] d.h1  5172.319165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.323108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.323127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172280096576
          <idle>-0       [000] d.h1  5172.323165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.327102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.327121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172284089968
          <idle>-0       [000] d.h1  5172.327158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.331105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.331112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172288084512
          <idle>-0       [000] d.h1  5172.331129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.335103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.335122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172292091696
          <idle>-0       [000] d.h1  5172.335140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.335169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.335188: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.335202: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185370 baseclk=4296185370
          <idle>-0       [000] .Ns1  5172.335242: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.335282: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.335309: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.335403: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.339108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.339116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172296087920
          <idle>-0       [000] d.h1  5172.339137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.343125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.343146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172300114640
          <idle>-0       [000] d.h1  5172.343189: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.347101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.347109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172304081008
          <idle>-0       [000] d.h1  5172.347117: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.347132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.347137: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.347141: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185373 baseclk=4296185373
          <idle>-0       [000] .Ns1  5172.347169: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.347184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.347194: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.347216: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.351115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.351140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172308106320
          <idle>-0       [000] d.h1  5172.351162: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.351203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.351223: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5172.351248: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185374 baseclk=4296185374
          <idle>-0       [000] .Ns1  5172.351294: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.351333: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.351366: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5172.351390: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5172.351420: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.355116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.355143: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172312107408
          <idle>-0       [000] d.h1  5172.355209: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.359126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.359148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172316116352
          <idle>-0       [000] d.h1  5172.359193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.363113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.363133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172320101824
          <idle>-0       [000] d.h1  5172.363184: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.367110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.367130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172324099040
          <idle>-0       [000] d.h1  5172.367179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.371119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.371139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172328107840
          <idle>-0       [000] d.h1  5172.371180: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.375111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.375131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172332100016
          <idle>-0       [000] d.h1  5172.375179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.379106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.379126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172336095440
          <idle>-0       [000] d.h1  5172.379165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.383129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.383148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172340117840
          <idle>-0       [000] d.h1  5172.383187: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.387106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.387125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172344094240
          <idle>-0       [000] d.h1  5172.387176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.391109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.391115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172348087552
          <idle>-0       [000] d.h1  5172.391129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.395103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.395122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172352091168
          <idle>-0       [000] d.h1  5172.395174: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.399116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.399122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172356095008
          <idle>-0       [000] d.h1  5172.399137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.403104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.403123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172360091952
          <idle>-0       [000] d.h1  5172.403162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.407108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.407127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172364096512
          <idle>-0       [000] d.h1  5172.407166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.411112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.411131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172368100432
          <idle>-0       [000] d.h1  5172.411170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.415113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.415132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172372101168
          <idle>-0       [000] d.h1  5172.415170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.419126: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.419145: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172376114288
          <idle>-0       [000] d.h1  5172.419183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.423107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.423126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172380095520
          <idle>-0       [000] d.h1  5172.423164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.427123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.427142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172384111488
          <idle>-0       [000] d.h1  5172.427193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.431088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.431094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172388066656
          <idle>-0       [000] d.h1  5172.431108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.435112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.435118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172392090448
          <idle>-0       [000] d.h1  5172.435132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.439101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.439107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172396079216
          <idle>-0       [000] d.h1  5172.439121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.443103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.443130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172400103136
          <idle>-0       [000] d.h1  5172.443145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.447100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.447106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172404078768
          <idle>-0       [000] d.h1  5172.447121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.451108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.451114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172408086624
          <idle>-0       [000] d.h1  5172.451120: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.451131: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.451153: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.451158: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185399 baseclk=4296185399
          <idle>-0       [000] .Ns1  5172.451171: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.451184: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.451193: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.451212: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.455118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.455142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172412108688
          <idle>-0       [000] d.h1  5172.455197: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.459109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.459130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172416098448
          <idle>-0       [000] d.h1  5172.459173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.463110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.463131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172420099440
          <idle>-0       [000] d.h1  5172.463157: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.463169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.463174: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.463178: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185402 baseclk=4296185402
          <idle>-0       [000] .Ns1  5172.463202: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.463214: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.463222: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.463251: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.467122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.467146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172424112672
          <idle>-0       [000] d.h1  5172.467201: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.471112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.471132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172428100640
          <idle>-0       [000] d.h1  5172.471176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.475108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.475128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172432097232
          <idle>-0       [000] d.h1  5172.475168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.479117: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.479137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172436105744
          <idle>-0       [000] d.h1  5172.479179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.483106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.483126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172440094864
          <idle>-0       [000] d.h1  5172.483165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.487113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.487133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172444101744
          <idle>-0       [000] d.h1  5172.487150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.487179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.487198: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.487220: timer_expire_entry: timer=000000000ed5fb1a function=delayed_work_timer_fn now=4296185408 baseclk=4296185408
          <idle>-0       [000] .Ns1  5172.487232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.487243: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.487252: workqueue_execute_start: work struct 0000000094882d62: function ovs_dp_masks_rebalance [openvswitch]
     kworker/0:2-112     [000] d..2  5172.487273: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.491113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.491136: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172448103296
          <idle>-0       [000] d.h1  5172.491190: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.495110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.495130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172452098704
          <idle>-0       [000] d.h1  5172.495172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.499108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.499139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172456111088
          <idle>-0       [000] d.h1  5172.499154: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.503104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.503123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172460092496
          <idle>-0       [000] d.h1  5172.503163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.507109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.507128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172464097184
          <idle>-0       [000] d.h1  5172.507167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.511108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.511127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172468096576
          <idle>-0       [000] d.h1  5172.511166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.515108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.515127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172472096032
          <idle>-0       [000] d.h1  5172.515164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.519106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.519128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172476096800
          <idle>-0       [000] d.h1  5172.519175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.523108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.523127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172480096640
          <idle>-0       [000] d.h1  5172.523167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.527106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.527125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172484094592
          <idle>-0       [000] d.h1  5172.527163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.531112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.531131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172488100048
          <idle>-0       [000] d.h1  5172.531169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.535108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.535127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172492096368
          <idle>-0       [000] d.h1  5172.535165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.539111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.539130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172496098992
          <idle>-0       [000] d.h1  5172.539167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.543106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.543125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172500094240
          <idle>-0       [000] d.h1  5172.543162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.547123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.547141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172504110704
          <idle>-0       [000] d.h1  5172.547179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.551108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.551127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172508096208
          <idle>-0       [000] d.h1  5172.551166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.555114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.555120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172512092496
          <idle>-0       [000] d.h1  5172.555125: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.555137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.555142: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.555146: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185425 baseclk=4296185425
          <idle>-0       [000] .Ns1  5172.555172: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185425 baseclk=4296185425
          <idle>-0       [000] .Ns1  5172.555181: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.555195: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.555205: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] ....  5172.555211: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5172.555234: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5172.555264: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.559128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.559155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172516119392
          <idle>-0       [000] d.h1  5172.559217: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.563128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.563149: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172520117536
          <idle>-0       [000] d.h1  5172.563193: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.567116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.567123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172524095024
          <idle>-0       [000] d.h1  5172.567138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.571096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.571116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172528084752
          <idle>-0       [000] d.h1  5172.571155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.575105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.575124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172532093584
          <idle>-0       [000] d.h1  5172.575159: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.579111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.579118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172536090048
          <idle>-0       [000] d.h1  5172.579132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.583105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.583124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172540093424
          <idle>-0       [000] d.h1  5172.583161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.587107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.587127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172544095824
          <idle>-0       [000] d.h1  5172.587192: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.591106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.591126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172548094864
          <idle>-0       [000] d.h1  5172.591143: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.591175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.591194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.591235: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185434 baseclk=4296185434
          <idle>-0       [000] .Ns1  5172.591251: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.591264: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.591272: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.591302: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.595124: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.595148: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172552114800
          <idle>-0       [000] d.h1  5172.595204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.599111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.599132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172556099968
          <idle>-0       [000] d.h1  5172.599176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.603106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.603127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172560095328
          <idle>-0       [000] d.h1  5172.603169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.607109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.607129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172564097808
          <idle>-0       [000] d.h1  5172.607170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.611101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.611107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172568079712
          <idle>-0       [000] d.h1  5172.611122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.615106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.615126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172572094816
          <idle>-0       [000] d.h1  5172.615164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.619107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.619126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172576095376
          <idle>-0       [000] d.h1  5172.619165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.623112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.623118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172580090368
          <idle>-0       [000] d.h1  5172.623133: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.627106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.627112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172584084928
          <idle>-0       [000] d.h1  5172.627126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.631095: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.631114: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172588084112
          <idle>-0       [000] d.h1  5172.631152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.635090: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.635096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172592068720
          <idle>-0       [000] d.h1  5172.635110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.639100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.639106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172596078976
          <idle>-0       [000] d.h1  5172.639121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.643116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.643135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172600104144
          <idle>-0       [000] d.h1  5172.643173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.647107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.647139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172604095824
          <idle>-0       [000] d.h1  5172.647153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.651105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.651124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172608093168
          <idle>-0       [000] d.h1  5172.651161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.655119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.655138: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172612107552
          <idle>-0       [000] d.h1  5172.655175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.659105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.659124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172616093536
          <idle>-0       [000] d.h1  5172.659142: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.659170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.659188: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.659215: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185451 baseclk=4296185451
          <idle>-0       [000] .Ns1  5172.659254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.659290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.659326: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.659345: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.663129: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.663137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172620108320
          <idle>-0       [000] d.h1  5172.663157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.667114: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.667135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172624103488
          <idle>-0       [000] d.h1  5172.667177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.671108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.671128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172628097120
          <idle>-0       [000] d.h1  5172.671168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.675111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.675131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172632100064
          <idle>-0       [000] d.h1  5172.675169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.679107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.679127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172636096064
          <idle>-0       [000] d.h1  5172.679177: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.683104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.683110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172640082320
          <idle>-0       [000] d.h1  5172.683124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.687101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.687120: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172644089664
          <idle>-0       [000] d.h1  5172.687158: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.691115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.691134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172648103344
          <idle>-0       [000] d.h1  5172.691172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.695106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.695125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172652094528
          <idle>-0       [000] d.h1  5172.695172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.699112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.699131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172656100288
          <idle>-0       [000] d.h1  5172.699168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.703107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.703135: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172660108048
          <idle>-0       [000] d.h1  5172.703149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.707119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.707137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172664107008
          <idle>-0       [000] d.h1  5172.707175: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.711111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.711130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172668099104
          <idle>-0       [000] d.h1  5172.711146: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.711176: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.711194: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.711223: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296185464 baseclk=4296185464
          <idle>-0       [000] dNs1  5172.711274: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296185464 baseclk=4296185464
          <idle>-0       [000] dNs1  5172.711298: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296185464 baseclk=4296185464
          <idle>-0       [000] dNs1  5172.711303: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296185464 baseclk=4296185464
          <idle>-0       [000] dNs1  5172.711306: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296185464 baseclk=4296185464
          <idle>-0       [000] .Ns1  5172.711309: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.711322: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] ....  5172.711348: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5172.711366: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5172.711379: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5172.711389: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:1-498     [000] ....  5172.711399: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:1-498     [000] d..2  5172.711423: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] d..2  5172.711442: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.715107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.715116: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172672086976
          <idle>-0       [000] d.h1  5172.715138: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.719110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.719132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172676099968
          <idle>-0       [000] d.h1  5172.719150: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.719191: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.719196: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.719217: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185466 baseclk=4296185466
          <idle>-0       [000] .Ns1  5172.719232: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.719244: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.719253: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.719283: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.723139: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.723163: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172680130080
          <idle>-0       [000] d.h1  5172.723232: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.727108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.727130: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172684098048
          <idle>-0       [000] d.h1  5172.727172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.731108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.731115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172688086944
          <idle>-0       [000] d.h1  5172.731130: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.735105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.735125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172692094096
          <idle>-0       [000] d.h1  5172.735166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.739115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.739121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172696093536
          <idle>-0       [000] d.h1  5172.739135: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.743105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.743125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172700093648
          <idle>-0       [000] d.h1  5172.743164: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.747108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.747128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172704096912
          <idle>-0       [000] d.h1  5172.747166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.751109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.751129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172708097600
          <idle>-0       [000] d.h1  5172.751167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.755120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.755126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172712098800
          <idle>-0       [000] d.h1  5172.755140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.759103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.759123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172716091920
          <idle>-0       [000] d.h1  5172.759140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.759170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.759190: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5172.759214: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185476 baseclk=4296185476
          <idle>-0       [000] .Ns1  5172.759263: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.759298: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.759327: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5172.759350: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5172.759378: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.763128: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.763137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172720107568
          <idle>-0       [000] d.h1  5172.763145: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.763163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.763168: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.763172: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185477 baseclk=4296185477
          <idle>-0       [000] .Ns1  5172.763200: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.763213: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.763221: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.763238: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.767123: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.767147: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172724113856
          <idle>-0       [000] d.h1  5172.767203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.771120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.771141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172728109952
          <idle>-0       [000] d.h1  5172.771186: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.775122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.775129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172732101072
          <idle>-0       [000] d.h1  5172.775134: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.775146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.775162: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5172.775168: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296185480 baseclk=4296185480
          <idle>-0       [000] .Ns1  5172.775180: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.775192: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5172.775221: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.779110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.779134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172736101488
          <idle>-0       [000] d.h1  5172.779188: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.783122: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.783142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172740111152
          <idle>-0       [000] d.h1  5172.783185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.787111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.787131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172744099664
          <idle>-0       [000] d.h1  5172.787171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.791111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.791131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172748100144
          <idle>-0       [000] d.h1  5172.791170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.795108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.795128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172752096784
          <idle>-0       [000] d.h1  5172.795167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.799108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.799127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172756096384
          <idle>-0       [000] d.h1  5172.799166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.803112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.803131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172760100304
          <idle>-0       [000] d.h1  5172.803170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.807111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.807131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172764099712
          <idle>-0       [000] d.h1  5172.807179: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.811102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.811108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172768080592
          <idle>-0       [000] d.h1  5172.811122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.815102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.815122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172772090848
          <idle>-0       [000] d.h1  5172.815160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.819109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.819128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172776097424
          <idle>-0       [000] d.h1  5172.819171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.823104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.823123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172780092112
          <idle>-0       [000] d.h1  5172.823162: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.827107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.827126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172784095536
          <idle>-0       [000] d.h1  5172.827165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.831120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.831140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172788109168
          <idle>-0       [000] d.h1  5172.831183: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.835125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.835132: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172792104176
          <idle>-0       [000] d.h1  5172.835145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.839087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.839093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172796066032
          <idle>-0       [000] d.h1  5172.839108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.843120: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.843139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172800108176
          <idle>-0       [000] d.h1  5172.843182: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.847104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.847110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172804082416
          <idle>-0       [000] d.h1  5172.847116: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.847127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.847132: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.847136: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185498 baseclk=4296185498
          <idle>-0       [000] .Ns1  5172.847162: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.847176: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.847185: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.847217: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.851130: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.851155: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172808121872
          <idle>-0       [000] d.h1  5172.851211: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.855113: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.855134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172812102352
          <idle>-0       [000] d.h1  5172.855178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.859111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.859131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172816099952
          <idle>-0       [000] d.h1  5172.859171: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.863109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.863142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172820097488
          <idle>-0       [000] d.h1  5172.863157: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.867104: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.867123: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172824092480
          <idle>-0       [000] d.h1  5172.867140: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.867170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.867200: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.867212: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185503 baseclk=4296185503
          <idle>-0       [000] .Ns1  5172.867250: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.867285: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.867309: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.867364: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.871115: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.871139: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172828105536
          <idle>-0       [000] d.h1  5172.871160: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.871199: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.871225: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.871230: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296185504 baseclk=4296185504
          <idle>-0       [000] .Ns1  5172.871257: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.871270: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.871277: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] d..2  5172.871316: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.875125: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.875150: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172832116304
          <idle>-0       [000] d.h1  5172.875204: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.879107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.879129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172836097168
          <idle>-0       [000] d.h1  5172.879172: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.883105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.883125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172840094128
          <idle>-0       [000] d.h1  5172.883166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.887108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.887128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172844097360
          <idle>-0       [000] d.h1  5172.887168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.891109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.891137: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172848109088
          <idle>-0       [000] d.h1  5172.891152: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.895112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.895131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172852100832
          <idle>-0       [000] d.h1  5172.895170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.899107: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.899126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172856095232
          <idle>-0       [000] d.h1  5172.899166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.903108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.903127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172860096512
          <idle>-0       [000] d.h1  5172.903173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.907103: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.907122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172864091632
          <idle>-0       [000] d.h1  5172.907161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.911112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.911131: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172868100496
          <idle>-0       [000] d.h1  5172.911170: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.915105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.915124: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172872093744
          <idle>-0       [000] d.h1  5172.915163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.919099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.919118: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172876087520
          <idle>-0       [000] d.h1  5172.919156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.923108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.923127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172880096368
          <idle>-0       [000] d.h1  5172.923165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.927108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.927126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172884095872
          <idle>-0       [000] d.h1  5172.927165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.931110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.931129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172888098352
          <idle>-0       [000] d.h1  5172.931168: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.935110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.935129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172892098768
          <idle>-0       [000] d.h1  5172.935169: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.939105: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.939111: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172896083776
          <idle>-0       [000] d.h1  5172.939126: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.943102: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.943121: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172900090512
          <idle>-0       [000] d.h1  5172.943160: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.947108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.947127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172904096224
          <idle>-0       [000] d.h1  5172.947165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.951108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.951128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172908096816
          <idle>-0       [000] d.h1  5172.951166: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.955106: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.955125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172912094784
          <idle>-0       [000] d.h1  5172.955163: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.959109: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.959128: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172916097072
          <idle>-0       [000] d.h1  5172.959165: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.963108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.963127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172920096544
          <idle>-0       [000] d.h1  5172.963144: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.963173: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.963191: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5172.963206: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185527 baseclk=4296185527
          <idle>-0       [000] .Ns1  5172.963254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.963290: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.963314: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5172.963379: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5172.963461: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.967119: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.967146: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172924110464
          <idle>-0       [000] d.h1  5172.967205: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.971112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.971133: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172928101344
          <idle>-0       [000] d.h1  5172.971152: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.971185: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.971204: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.971216: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185529 baseclk=4296185529
          <idle>-0       [000] .Ns1  5172.971254: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.971292: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.971315: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5172.971368: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.975116: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.975140: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172932106688
          <idle>-0       [000] d.h1  5172.975162: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5172.975203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5172.975224: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5172.975250: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185530 baseclk=4296185530
          <idle>-0       [000] .Ns1  5172.975286: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5172.975324: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5172.975346: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5172.975442: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5172.979118: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.979142: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172936108800
          <idle>-0       [000] d.h1  5172.979198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.983112: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.983134: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172940102112
          <idle>-0       [000] d.h1  5172.983178: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.987086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.987113: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172944085152
          <idle>-0       [000] d.h1  5172.987127: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.991088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.991108: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172948077632
          <idle>-0       [000] d.h1  5172.991149: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.995079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.995098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172952067744
          <idle>-0       [000] d.h1  5172.995137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5172.999096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5172.999103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172956075248
          <idle>-0       [000] d.h1  5172.999117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.003079: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.003098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172960067920
          <idle>-0       [000] d.h1  5173.003137: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.007084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.007103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172964072384
          <idle>-0       [000] d.h1  5173.007141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.011058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.011064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172968036992
          <idle>-0       [000] d.h1  5173.011078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.015058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.015065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172972037152
          <idle>-0       [000] d.h1  5173.015079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.019065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.019072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172976044464
          <idle>-0       [000] d.h1  5173.019088: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.023085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.023091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172980063632
          <idle>-0       [000] d.h1  5173.023105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.027082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.027088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172984060960
          <idle>-0       [000] d.h1  5173.027102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.031083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.031089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172988061552
          <idle>-0       [000] d.h1  5173.031104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.035110: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.035129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172992098208
          <idle>-0       [000] d.h1  5173.035167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.039111: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.039117: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5172996089792
          <idle>-0       [000] d.h1  5173.039132: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.043089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.043095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173000067792
          <idle>-0       [000] d.h1  5173.043110: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.047108: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.047122: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173004092208
          <idle>-0       [000] d.h1  5173.047153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.051086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.051109: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173008076864
          <idle>-0       [000] d.h1  5173.051155: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.055084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.055105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173012074256
          <idle>-0       [000] d.h1  5173.055146: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.059091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.059110: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173016079456
          <idle>-0       [000] d.h1  5173.059150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.063085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.063105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173020074272
          <idle>-0       [000] d.h1  5173.063145: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.067082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.067115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173024070880
          <idle>-0       [000] d.h1  5173.067129: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.071080: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.071100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173028068704
          <idle>-0       [000] d.h1  5173.071140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.075084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.075103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173032072208
          <idle>-0       [000] d.h1  5173.075122: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.075153: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.075168: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.075177: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185555 baseclk=4296185555
          <idle>-0       [000] .Ns1  5173.075205: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.075226: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.075242: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.075273: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.079101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.079126: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173036092032
          <idle>-0       [000] d.h1  5173.079199: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.083088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.083095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173040067152
          <idle>-0       [000] d.h1  5173.083111: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.087082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.087102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173044070928
          <idle>-0       [000] d.h1  5173.087143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.091083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.091102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173048071616
          <idle>-0       [000] d.h1  5173.091142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.095087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.095093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173052065392
          <idle>-0       [000] d.h1  5173.095107: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.099082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.099102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173056071328
          <idle>-0       [000] d.h1  5173.099142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.103088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.103095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173060067152
          <idle>-0       [000] d.h1  5173.103100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.103112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.103128: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.103135: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185562 baseclk=4296185562
          <idle>-0       [000] .Ns1  5173.103150: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.103162: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.103172: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.103205: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.107100: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.107125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173064091520
          <idle>-0       [000] d.h1  5173.107198: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.111085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.111107: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173068075008
          <idle>-0       [000] d.h1  5173.111150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.115083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.115103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173072071984
          <idle>-0       [000] d.h1  5173.115143: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.119084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.119103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173076072416
          <idle>-0       [000] d.h1  5173.119142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.123084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.123103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173080072384
          <idle>-0       [000] d.h1  5173.123141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.127084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.127103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173084071856
          <idle>-0       [000] d.h1  5173.127141: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.131083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.131102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173088071296
          <idle>-0       [000] d.h1  5173.131140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.135083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.135103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173092071920
          <idle>-0       [000] d.h1  5173.135161: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.139081: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.139100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173096069504
          <idle>-0       [000] d.h1  5173.139140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.143082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.143101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173100069856
          <idle>-0       [000] d.h1  5173.143140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.147083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.147102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173104071344
          <idle>-0       [000] d.h1  5173.147140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.151083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.151102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173108070992
          <idle>-0       [000] d.h1  5173.151140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.155082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.155101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173112069856
          <idle>-0       [000] d.h1  5173.155139: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.159083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.159102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173116071392
          <idle>-0       [000] d.h1  5173.159140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.163084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.163103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173120071904
          <idle>-0       [000] d.h1  5173.163140: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.167089: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.167095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173124067264
          <idle>-0       [000] d.h1  5173.167100: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.167112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.167127: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.167133: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185578 baseclk=4296185578
          <idle>-0       [000] .Ns1  5173.167151: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.167163: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.167171: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5173.167207: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5173.167244: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.171099: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.171127: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173128090672
          <idle>-0       [000] d.h1  5173.171203: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.175085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.175106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173132074544
          <idle>-0       [000] d.h1  5173.175150: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.179086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.179106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173136074928
          <idle>-0       [000] d.h1  5173.179124: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.179156: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.179188: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.179202: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185581 baseclk=4296185581
          <idle>-0       [000] .Ns1  5173.179239: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.179275: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.179299: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.179353: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.183101: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.183125: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173140091840
          <idle>-0       [000] d.h1  5173.183195: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.187084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.187105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173144073520
          <idle>-0       [000] d.h1  5173.187148: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.191086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.191106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173148074768
          <idle>-0       [000] d.h1  5173.191167: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.195082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.195102: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173152070992
          <idle>-0       [000] d.h1  5173.195142: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.199075: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.199082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173156054224
          <idle>-0       [000] d.h1  5173.199096: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.203063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.203069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173160041696
          <idle>-0       [000] d.h1  5173.203083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.207059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.207066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173164038080
          <idle>-0       [000] d.h1  5173.207080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.211058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.211065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173168037040
          <idle>-0       [000] d.h1  5173.211078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.215059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.215066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173172038032
          <idle>-0       [000] d.h1  5173.215079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.219060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.219066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173176038976
          <idle>-0       [000] d.h1  5173.219077: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.223062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.223068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173180040816
          <idle>-0       [000] d.h1  5173.223082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.227060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.227066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173184038384
          <idle>-0       [000] d.h1  5173.227080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.231059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.231065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173188037744
          <idle>-0       [000] d.h1  5173.231071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.231082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.231097: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.231104: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185594 baseclk=4296185594
          <idle>-0       [000] .Ns1  5173.231120: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.231132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.231140: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.231171: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.235064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.235072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173192043536
          <idle>-0       [000] d.h1  5173.235093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.239061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.239068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173196040464
          <idle>-0       [000] d.h1  5173.239084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.243065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.243072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173200044256
          <idle>-0       [000] d.h1  5173.243086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.247059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.247065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173204038080
          <idle>-0       [000] d.h1  5173.247080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.251069: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.251075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173208047872
          <idle>-0       [000] d.h1  5173.251090: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.255063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.255069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173212041840
          <idle>-0       [000] d.h1  5173.255083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.259063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.259069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173216041920
          <idle>-0       [000] d.h1  5173.259083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.263059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.263065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173220037904
          <idle>-0       [000] d.h1  5173.263079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.267059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.267065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173224037728
          <idle>-0       [000] d.h1  5173.267079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.271060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.271066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173228038768
          <idle>-0       [000] d.h1  5173.271080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.275058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.275065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173232037264
          <idle>-0       [000] d.h1  5173.275079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.279059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.279065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173236037760
          <idle>-0       [000] d.h1  5173.279079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.283059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.283065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173240038016
          <idle>-0       [000] d.h1  5173.283071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.283098: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.283106: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.283109: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185607 baseclk=4296185607
          <idle>-0       [000] .Ns1  5173.283123: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.283135: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.283143: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.283162: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.287064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.287072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173244043744
          <idle>-0       [000] d.h1  5173.287080: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.287095: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.287111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.287117: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296185608 baseclk=4296185608
          <idle>-0       [000] .Ns1  5173.287130: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.287143: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5173.287177: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.291088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.291096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173248067968
          <idle>-0       [000] d.h1  5173.291117: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.295085: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.295092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173252064048
          <idle>-0       [000] d.h1  5173.295108: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.299083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.299090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173256062000
          <idle>-0       [000] d.h1  5173.299105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.303082: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.303089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173260061088
          <idle>-0       [000] d.h1  5173.303104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.307091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.307098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173264070208
          <idle>-0       [000] d.h1  5173.307112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.311083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.311090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173268062224
          <idle>-0       [000] d.h1  5173.311104: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.315083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.315089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173272061392
          <idle>-0       [000] d.h1  5173.315103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.319086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.319092: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173276064352
          <idle>-0       [000] d.h1  5173.319106: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.323083: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.323089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173280061712
          <idle>-0       [000] d.h1  5173.323103: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.327084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.327091: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173284063248
          <idle>-0       [000] d.h1  5173.327105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.331087: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.331094: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173288066416
          <idle>-0       [000] d.h1  5173.331112: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.335084: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.335090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173292062704
          <idle>-0       [000] d.h1  5173.335105: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.339060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.339066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173296038768
          <idle>-0       [000] d.h1  5173.339080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.343060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.343066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173300038448
          <idle>-0       [000] d.h1  5173.343080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.347060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.347066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173304038896
          <idle>-0       [000] d.h1  5173.347080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.351059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.351065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173308037888
          <idle>-0       [000] d.h1  5173.351079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.355060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.355066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173312038528
          <idle>-0       [000] d.h1  5173.355080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.359064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.359070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173316042240
          <idle>-0       [000] d.h1  5173.359075: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.359087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.359103: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.359110: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185626 baseclk=4296185626
          <idle>-0       [000] .Ns1  5173.359125: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.359138: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.359148: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.359181: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.363064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.363072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173320043632
          <idle>-0       [000] d.h1  5173.363093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.367061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.367068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173324040256
          <idle>-0       [000] d.h1  5173.367084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.371060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.371067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173328038912
          <idle>-0       [000] d.h1  5173.371072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.371084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.371100: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.371106: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185629 baseclk=4296185629
          <idle>-0       [000] .Ns1  5173.371123: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.371135: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.371143: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5173.371174: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5173.371208: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.375066: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.375075: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173332045472
          <idle>-0       [000] d.h1  5173.375097: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.379059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.379066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173336038656
          <idle>-0       [000] d.h1  5173.379083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.383061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.383067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173340039920
          <idle>-0       [000] d.h1  5173.383082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.387060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.387066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173344038480
          <idle>-0       [000] d.h1  5173.387072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.387083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.387099: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.387105: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185633 baseclk=4296185633
          <idle>-0       [000] .Ns1  5173.387119: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.387132: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.387140: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.387159: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.391065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.391073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173348044480
          <idle>-0       [000] d.h1  5173.391093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.395060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.395067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173352039440
          <idle>-0       [000] d.h1  5173.395083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.399060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.399066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173356038784
          <idle>-0       [000] d.h1  5173.399081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.403060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.403066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173360038896
          <idle>-0       [000] d.h1  5173.403081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.407060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.407066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173364038624
          <idle>-0       [000] d.h1  5173.407080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.411064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.411070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173368043024
          <idle>-0       [000] d.h1  5173.411099: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.415059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.415065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173372037776
          <idle>-0       [000] d.h1  5173.415080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.419059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.419066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173376038096
          <idle>-0       [000] d.h1  5173.419079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.423060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.423067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173380039040
          <idle>-0       [000] d.h1  5173.423080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.427059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.427065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173384037888
          <idle>-0       [000] d.h1  5173.427079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.431060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.431066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173388038336
          <idle>-0       [000] d.h1  5173.431079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.435059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.435065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173392037600
          <idle>-0       [000] d.h1  5173.435078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.439059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.439066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173396038192
          <idle>-0       [000] d.h1  5173.439079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.443061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.443067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173400039744
          <idle>-0       [000] d.h1  5173.443081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.447059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.447065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173404037632
          <idle>-0       [000] d.h1  5173.447078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.451059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.451065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173408038016
          <idle>-0       [000] d.h1  5173.451079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.455059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.455065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173412037376
          <idle>-0       [000] d.h1  5173.455078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.459059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.459065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173416037696
          <idle>-0       [000] d.h1  5173.459079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.463060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.463066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173420038800
          <idle>-0       [000] d.h1  5173.463080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.467060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.467066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173424038272
          <idle>-0       [000] d.h1  5173.467079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.471060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.471066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173428038352
          <idle>-0       [000] d.h1  5173.471080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.475059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.475065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173432037616
          <idle>-0       [000] d.h1  5173.475078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.479060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.479066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173436038976
          <idle>-0       [000] d.h1  5173.479080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.483059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.483065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173440037856
          <idle>-0       [000] d.h1  5173.483079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.487060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.487065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173444038176
          <idle>-0       [000] d.h1  5173.487071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.487082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.487097: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.487104: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185658 baseclk=4296185658
          <idle>-0       [000] .Ns1  5173.487117: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.487129: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.487137: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.487166: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.491064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.491072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173448043984
          <idle>-0       [000] d.h1  5173.491080: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.491096: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.491111: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.491117: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185659 baseclk=4296185659
          <idle>-0       [000] .Ns1  5173.491130: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.491142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.491149: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.491166: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.495065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.495073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173452044640
          <idle>-0       [000] d.h1  5173.495094: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.499061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.499068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173456040336
          <idle>-0       [000] d.h1  5173.499084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.503061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.503067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173460039744
          <idle>-0       [000] d.h1  5173.503082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.507059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.507066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173464038176
          <idle>-0       [000] d.h1  5173.507080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.511060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.511066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173468038864
          <idle>-0       [000] d.h1  5173.511080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.515060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.515066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173472038528
          <idle>-0       [000] d.h1  5173.515080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.519060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.519066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173476038672
          <idle>-0       [000] d.h1  5173.519080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.523060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.523066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173480038384
          <idle>-0       [000] d.h1  5173.523080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.527060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.527066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173484038704
          <idle>-0       [000] d.h1  5173.527080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.531063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.531069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173488041872
          <idle>-0       [000] d.h1  5173.531083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.535059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.535065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173492037520
          <idle>-0       [000] d.h1  5173.535078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.539060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.539066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173496038352
          <idle>-0       [000] d.h1  5173.539079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.543059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.543066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173500038240
          <idle>-0       [000] d.h1  5173.543080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.547060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.547066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173504038448
          <idle>-0       [000] d.h1  5173.547080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.551059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.551065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173508037536
          <idle>-0       [000] d.h1  5173.551079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.555059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.555065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173512037808
          <idle>-0       [000] d.h1  5173.555080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.559063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.559069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173516041328
          <idle>-0       [000] d.h1  5173.559083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.563059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.563065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173520037584
          <idle>-0       [000] d.h1  5173.563079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.567059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.567065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173524037920
          <idle>-0       [000] d.h1  5173.567079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.571059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.571065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173528038064
          <idle>-0       [000] d.h1  5173.571079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.575065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.575072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173532044560
          <idle>-0       [000] d.h1  5173.575078: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.575089: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.575104: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.575110: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185680 baseclk=4296185680
          <idle>-0       [000] .Ns1  5173.575127: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.575140: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.575149: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5173.575171: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5173.575201: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.579065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.579074: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173536045120
          <idle>-0       [000] d.h1  5173.579096: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.583062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.583069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173540040960
          <idle>-0       [000] d.h1  5173.583084: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.587059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.587066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173544038256
          <idle>-0       [000] d.h1  5173.587080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.591061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.591067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173548039472
          <idle>-0       [000] d.h1  5173.591081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.595060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.595066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173552038560
          <idle>-0       [000] d.h1  5173.595072: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.595083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.595098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.595104: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185685 baseclk=4296185685
          <idle>-0       [000] .Ns1  5173.595118: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.595130: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.595138: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.595157: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.599064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.599072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173556044128
          <idle>-0       [000] d.h1  5173.599093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.603064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.603070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173560042768
          <idle>-0       [000] d.h1  5173.603086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.607059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.607066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173564038224
          <idle>-0       [000] d.h1  5173.607080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.611059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.611065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173568038048
          <idle>-0       [000] d.h1  5173.611080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.615059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.615065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173572037744
          <idle>-0       [000] d.h1  5173.615071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.615082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.615097: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.615104: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185690 baseclk=4296185690
          <idle>-0       [000] .Ns1  5173.615117: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.615129: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.615137: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.615165: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.619065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.619073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173576044352
          <idle>-0       [000] d.h1  5173.619093: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.623061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.623067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173580039504
          <idle>-0       [000] d.h1  5173.623083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.627061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.627067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173584039472
          <idle>-0       [000] d.h1  5173.627081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.631060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.631066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173588038704
          <idle>-0       [000] d.h1  5173.631080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.635059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.635065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173592037824
          <idle>-0       [000] d.h1  5173.635080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.639059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.639065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173596037712
          <idle>-0       [000] d.h1  5173.639079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.643063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.643069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173600041600
          <idle>-0       [000] d.h1  5173.643083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.647059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.647065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173604037712
          <idle>-0       [000] d.h1  5173.647079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.651059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.651066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173608038192
          <idle>-0       [000] d.h1  5173.651080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.655059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.655065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173612037472
          <idle>-0       [000] d.h1  5173.655078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.659059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.659065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173616037856
          <idle>-0       [000] d.h1  5173.659079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.663059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.663066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173620038144
          <idle>-0       [000] d.h1  5173.663079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.667059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.667065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173624037728
          <idle>-0       [000] d.h1  5173.667079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.671060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.671066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173628038528
          <idle>-0       [000] d.h1  5173.671079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.675058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.675064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173632036928
          <idle>-0       [000] d.h1  5173.675078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.679058: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.679064: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173636036880
          <idle>-0       [000] d.h1  5173.679078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.683059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.683065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173640037664
          <idle>-0       [000] d.h1  5173.683079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.687059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.687065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173644037408
          <idle>-0       [000] d.h1  5173.687079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.691059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.691065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173648037440
          <idle>-0       [000] d.h1  5173.691078: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.695060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.695066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173652039088
          <idle>-0       [000] d.h1  5173.695080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.699060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.699066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173656038320
          <idle>-0       [000] d.h1  5173.699071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.699082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.699098: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.699103: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185711 baseclk=4296185711
          <idle>-0       [000] .Ns1  5173.699116: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.699127: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.699135: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.699153: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.703064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.703072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173660043904
          <idle>-0       [000] d.h1  5173.703092: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.707060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.707067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173664039328
          <idle>-0       [000] d.h1  5173.707082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.711060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.711073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173668039184
          <idle>-0       [000] d.h1  5173.711088: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.715060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.715066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173672038368
          <idle>-0       [000] d.h1  5173.715080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.719064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.719071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173676043056
          <idle>-0       [000] d.h1  5173.719085: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.723059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.723066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173680038144
          <idle>-0       [000] d.h1  5173.723080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.727059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.727065: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173684037824
          <idle>-0       [000] d.h1  5173.727079: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.731060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.731066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173688038560
          <idle>-0       [000] d.h1  5173.731080: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.735059: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.735066: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173692038208
          <idle>-0       [000] d.h1  5173.735071: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.735082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.735097: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.735104: timer_expire_entry: timer=000000000f0f324b function=delayed_work_timer_fn now=4296185720 baseclk=4296185720
          <idle>-0       [000] dNs1  5173.735119: timer_expire_entry: timer=0000000044b14648 function=delayed_work_timer_fn now=4296185720 baseclk=4296185720
          <idle>-0       [000] dNs1  5173.735123: timer_expire_entry: timer=00000000c0724eca function=delayed_work_timer_fn now=4296185720 baseclk=4296185720
          <idle>-0       [000] dNs1  5173.735126: timer_expire_entry: timer=00000000bec6a8e5 function=delayed_work_timer_fn now=4296185720 baseclk=4296185720
          <idle>-0       [000] dNs1  5173.735129: timer_expire_entry: timer=0000000086a624d1 function=delayed_work_timer_fn now=4296185720 baseclk=4296185720
          <idle>-0       [000] .Ns1  5173.735132: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.735145: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/u12:0 next_pid=430 next_prio=120
   kworker/u12:0-430     [000] ....  5173.735164: workqueue_execute_start: work struct 00000000f3ab268c: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5173.735175: workqueue_execute_start: work struct 000000008ef0561e: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5173.735181: workqueue_execute_start: work struct 00000000222ef7ed: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5173.735186: workqueue_execute_start: work struct 00000000d96593ad: function sched_tick_remote
   kworker/u12:0-430     [000] ....  5173.735190: workqueue_execute_start: work struct 000000006b62eb26: function sched_tick_remote
   kworker/u12:0-430     [000] d..2  5173.735205: sched_switch: prev_comm=kworker/u12:0 prev_pid=430 prev_prio=120 prev_state=I ==> next_comm=kworker/u12:1 next_pid=498 next_prio=120
   kworker/u12:1-498     [000] d..2  5173.735221: sched_switch: prev_comm=kworker/u12:1 prev_pid=498 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.739065: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.739074: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173696045104
          <idle>-0       [000] d.h1  5173.739095: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.743060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.743067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173700039472
          <idle>-0       [000] d.h1  5173.743074: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.743086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.743102: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.743108: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185722 baseclk=4296185722
          <idle>-0       [000] .Ns1  5173.743120: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.743133: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.743141: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.743170: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.747096: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.747104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173704075376
          <idle>-0       [000] d.h1  5173.747124: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.751064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.751071: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173708042912
          <idle>-0       [000] d.h1  5173.751087: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.755060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.755067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173712039584
          <idle>-0       [000] d.h1  5173.755082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.759060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.759067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173716039632
          <idle>-0       [000] d.h1  5173.759081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.763061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.763068: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173720040352
          <idle>-0       [000] d.h1  5173.763082: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.767061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.767067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173724039808
          <idle>-0       [000] d.h1  5173.767081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.771062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.771069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173728041184
          <idle>-0       [000] d.h1  5173.771083: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.775060: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.775067: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173732039632
          <idle>-0       [000] d.h1  5173.775081: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.779061: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.779069: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173736040976
          <idle>-0       [000] d.h1  5173.779074: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.779086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.779090: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.779101: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185731 baseclk=4296185731
          <idle>-0       [000] .Ns1  5173.779119: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.779131: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.779139: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5173.779167: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5173.779197: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.783067: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.783078: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173740048176
          <idle>-0       [000] d.h1  5173.783102: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.787063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.787070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173744042096
          <idle>-0       [000] d.h1  5173.787086: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.791086: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.791093: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173748065680
          <idle>-0       [000] d.h1  5173.791109: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.795098: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.795105: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173752077744
          <idle>-0       [000] d.h1  5173.795119: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d.h1  5173.799091: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.799099: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173756071248
          <idle>-0       [000] d.h1  5173.799105: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.799116: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.799121: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.799125: timer_expire_entry: timer=0000000083843761 function=process_timeout now=4296185736 baseclk=4296185736
          <idle>-0       [000] .Ns1  5173.799139: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.799154: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kcompactd0 next_pid=54 next_prio=120
      kcompactd0-54      [000] d..2  5173.799189: sched_switch: prev_comm=kcompactd0 prev_pid=54 prev_prio=120 prev_state=S ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.803088: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.803098: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173760068688
          <idle>-0       [000] d.h1  5173.803105: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.803121: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.803136: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.803141: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185737 baseclk=4296185737
          <idle>-0       [000] .Ns1  5173.803153: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.803166: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.803174: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.803193: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.806825: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.806834: hrtimer_expire_entry: hrtimer=000000002b865dd2 function=hrtimer_wakeup now=5173763804928
          <idle>-0       [000] dNh1  5173.806852: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] d..2  5173.806881: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=sleep next_pid=509 next_prio=120
           <...>-509     [000] d.h.  5173.807111: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5173.807141: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173764099568
           <...>-509     [000] d.h.  5173.807224: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] d.h.  5173.814506: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5173.814528: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173771494800
           <...>-509     [000] d.h.  5173.814587: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] d.h.  5173.815073: irq_handler_entry: irq=11 name=arch_timer
           <...>-509     [000] d.h.  5173.815088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173772053824
           <...>-509     [000] d.h.  5173.815117: irq_handler_exit: irq=11 ret=handled
           <...>-509     [000] d..2  5173.815927: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=R+ ==> next_comm=sh next_pid=507 next_prio=120
           <...>-507     [000] d.h.  5173.819087: irq_handler_entry: irq=11 name=arch_timer
           <...>-507     [000] d.h.  5173.819112: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173776076720
           <...>-507     [000] d.h.  5173.819145: softirq_raise: vec=9 [action=RCU]
           <...>-507     [000] d.h.  5173.819191: irq_handler_exit: irq=11 ret=handled
           <...>-507     [000] ..s.  5173.819203: softirq_entry: vec=9 [action=RCU]
           <...>-507     [000] .Ns.  5173.819239: softirq_exit: vec=9 [action=RCU]
           <...>-507     [000] d..2  5173.819264: sched_switch: prev_comm=sh prev_pid=507 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5173.819317: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=sh next_pid=507 next_prio=120
           <...>-507     [000] d..2  5173.820037: sched_switch: prev_comm=sh prev_pid=507 prev_prio=120 prev_state=S ==> next_comm=sleep next_pid=509 next_prio=120
           <...>-509     [000] d..2  5173.820071: sched_switch: prev_comm=sleep prev_pid=509 prev_prio=120 prev_state=X ==> next_comm=sh next_pid=510 next_prio=120
             cat-510     [000] d.h.  5173.823090: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.823115: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173780079392
             cat-510     [000] d.h.  5173.823147: softirq_raise: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.823197: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.823209: softirq_entry: vec=9 [action=RCU]
             cat-510     [000] ..s.  5173.823225: softirq_exit: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.827103: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.827129: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173784092752
             cat-510     [000] d.h.  5173.827156: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5173.827210: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.827221: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] ..s.  5173.827231: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296185743 baseclk=4296185743
             cat-510     [000] .Ns.  5173.827258: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5173.827281: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5173.827361: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5173.831065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.831081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173788049040
             cat-510     [000] d.h.  5173.831099: softirq_raise: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.831124: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.831140: softirq_entry: vec=9 [action=RCU]
             cat-510     [000] ..s.  5173.831244: softirq_exit: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.835068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.835086: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173792054464
             cat-510     [000] d.h.  5173.835103: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5173.835132: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.835147: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] ..s.  5173.835153: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296185745 baseclk=4296185745
             cat-510     [000] .Ns.  5173.835170: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5173.835189: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5173.835241: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5173.839069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.839087: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173796054192
             cat-510     [000] d.h.  5173.839106: softirq_raise: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.839136: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.839150: softirq_entry: vec=9 [action=RCU]
             cat-510     [000] ..s.  5173.839258: softirq_exit: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.843065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.843083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173800050304
             cat-510     [000] d.h.  5173.843100: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5173.843128: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.843144: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] ..s.  5173.843152: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296185747 baseclk=4296185747
             cat-510     [000] .Ns.  5173.843171: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5173.843188: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5173.843237: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5173.847071: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.847089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173804055792
             cat-510     [000] d.h.  5173.847109: softirq_raise: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.847137: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.847155: softirq_entry: vec=9 [action=RCU]
             cat-510     [000] ..s.  5173.847184: softirq_exit: vec=9 [action=RCU]
             cat-510     [000] d.h.  5173.851066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.851084: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173808051328
             cat-510     [000] d.h.  5173.851101: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5173.851128: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.851145: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] ..s.  5173.851152: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296185749 baseclk=4296185749
             cat-510     [000] .Ns.  5173.851169: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5173.851187: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5173.851236: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d..2  5173.851985: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=D ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.855072: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.855086: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173812054768
          <idle>-0       [000] d.h1  5173.855101: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5173.855122: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.855137: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] ..s1  5173.855165: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5173.859064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.859073: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173816043680
          <idle>-0       [000] d.h1  5173.859081: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.859096: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.859103: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.859109: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296185751 baseclk=4296185751
          <idle>-0       [000] .Ns1  5173.859123: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.859142: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5173.859187: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.863063: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.863072: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173820043104
          <idle>-0       [000] d.h1  5173.863081: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.863084: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5173.863098: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.863105: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.863110: timer_expire_entry: timer=000000009036eed5 function=delayed_work_timer_fn now=4296185752 baseclk=4296185752
          <idle>-0       [000] .Ns1  5173.863133: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] .Ns1  5173.863135: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] .Ns1  5173.863150: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d..2  5173.863165: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.863180: workqueue_execute_start: work struct 00000000e989235a: function vmstat_shepherd
     kworker/0:2-112     [000] ....  5173.863214: workqueue_execute_start: work struct 000000006fcdae5f: function vmstat_update
     kworker/0:2-112     [000] d..2  5173.863251: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.867064: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.867074: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173824044304
          <idle>-0       [000] d.h1  5173.867083: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.867099: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.867114: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] ..s1  5173.867120: timer_expire_entry: timer=000000009409400e function=process_timeout now=4296185753 baseclk=4296185753
          <idle>-0       [000] .Ns1  5173.867130: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] d..2  5173.867144: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=rcu_preempt next_pid=14 next_prio=120
     rcu_preempt-14      [000] d..2  5173.867174: sched_switch: prev_comm=rcu_preempt prev_pid=14 prev_prio=120 prev_state=I ==> next_comm=swapper/0 next_pid=0 next_prio=120
          <idle>-0       [000] d.h1  5173.871062: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [000] d.h1  5173.871070: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173828041904
          <idle>-0       [000] d.h1  5173.871078: softirq_raise: vec=1 [action=TIMER]
          <idle>-0       [000] d.h1  5173.871082: softirq_raise: vec=9 [action=RCU]
          <idle>-0       [000] d.h1  5173.871095: irq_handler_exit: irq=11 ret=handled
          <idle>-0       [000] ..s1  5173.871102: softirq_entry: vec=1 [action=TIMER]
          <idle>-0       [000] d.s1  5173.871108: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185754 baseclk=4296185754
          <idle>-0       [000] .Ns1  5173.871120: softirq_exit: vec=1 [action=TIMER]
          <idle>-0       [000] .Ns1  5173.871122: softirq_entry: vec=9 [action=RCU]
          <idle>-0       [000] .Ns1  5173.871139: softirq_exit: vec=9 [action=RCU]
          <idle>-0       [000] d..2  5173.871151: sched_switch: prev_comm=swapper/0 prev_pid=0 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.871160: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.871191: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5173.875071: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.875088: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173832056704
             cat-510     [000] d.h.  5173.875134: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.879076: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.879090: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173836058896
             cat-510     [000] d.h.  5173.879130: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.883070: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.883084: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173840053264
             cat-510     [000] d.h.  5173.883124: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.887069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.887084: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173844052928
             cat-510     [000] d.h.  5173.887121: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.891067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.891082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173848050672
             cat-510     [000] d.h.  5173.891118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.895067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.895082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173852051712
             cat-510     [000] d.h.  5173.895117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.899067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.899081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173856051264
             cat-510     [000] d.h.  5173.899118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.903068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.903081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173860050832
             cat-510     [000] d.h.  5173.903118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.907067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.907081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173864050336
             cat-510     [000] d.h.  5173.907095: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5173.907121: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.907137: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] d.s.  5173.907143: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185763 baseclk=4296185763
             cat-510     [000] .Ns.  5173.907166: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5173.907185: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.907203: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5173.907226: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5173.911068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.911082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173868051952
             cat-510     [000] d.h.  5173.911122: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.915067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.915081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173872049712
             cat-510     [000] d.h.  5173.915119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.919067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.919082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173876051728
             cat-510     [000] d.h.  5173.919118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5173.923067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5173.923082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173880051456
             cat-510     [000] d.h1  5173.923119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.927068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.927081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173884050608
             cat-510     [000] d.h.  5173.927119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.931066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.931079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173888049120
             cat-510     [000] d.h.  5173.931116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.935067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.935081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173892049712
             cat-510     [000] d.h.  5173.935117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.939067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.939081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173896050160
             cat-510     [000] d.h.  5173.939117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.943066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.943080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173900049584
             cat-510     [000] d.h.  5173.943117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.947067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.947080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173904049648
             cat-510     [000] d.h.  5173.947116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5173.951066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5173.951080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173908049280
             cat-510     [000] d.h1  5173.951117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.955066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.955080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173912050096
             cat-510     [000] d.h.  5173.955117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.959067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.959081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173916050048
             cat-510     [000] d.h.  5173.959119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.963067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.963080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173920050080
             cat-510     [000] d.h.  5173.963117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.967066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.967079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173924049168
             cat-510     [000] d.h.  5173.967117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.971067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.971080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173928049824
             cat-510     [000] d.h.  5173.971116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.975066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.975080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173932049952
             cat-510     [000] d.h.  5173.975116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5173.979066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5173.979082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173936050848
             cat-510     [000] d.h1  5173.979116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.983065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.983079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173940048416
             cat-510     [000] d.h.  5173.983094: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5173.983119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.983135: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] ..s.  5173.983142: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185782 baseclk=4296185782
             cat-510     [000] .Ns.  5173.983170: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5173.983186: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.983202: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5173.983268: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5173.983330: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5173.987069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.987083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173944051760
             cat-510     [000] d.h.  5173.987123: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.991066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.991079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173948049120
             cat-510     [000] d.h.  5173.991117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.995066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.995079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173952048880
             cat-510     [000] d.h.  5173.995118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5173.999066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5173.999079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173956048912
             cat-510     [000] d.h.  5173.999094: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5173.999120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5173.999136: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] d.s.  5173.999141: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185786 baseclk=4296185786
             cat-510     [000] .Ns.  5173.999162: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5173.999178: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5173.999193: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5173.999226: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5174.003068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.003082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173960051200
             cat-510     [000] d.h.  5174.003122: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.007066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.007080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173964048976
             cat-510     [000] d.h.  5174.007119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.011065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.011079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173968048528
             cat-510     [000] d.h.  5174.011094: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5174.011120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5174.011136: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] d.s.  5174.011142: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185789 baseclk=4296185789
             cat-510     [000] .Ns.  5174.011161: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5174.011176: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5174.011191: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5174.011210: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5174.015067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.015087: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173972051856
             cat-510     [000] d.h.  5174.015128: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.019066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.019081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173976050816
             cat-510     [000] d.h.  5174.019120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5174.023071: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.023085: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173980054656
             cat-510     [000] d.h1  5174.023120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.027065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.027080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173984049024
             cat-510     [000] d.h.  5174.027117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.031065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.031079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173988048384
             cat-510     [000] d.h.  5174.031115: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.035069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.035082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173992051680
             cat-510     [000] d.h.  5174.035118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5174.039066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.039080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5173996049200
             cat-510     [000] d.h1  5174.039116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.043070: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.043083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174000052784
             cat-510     [000] d.h.  5174.043120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.047068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.047082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174004051472
             cat-510     [000] d.h.  5174.047119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5174.051069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.051083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174008052448
             cat-510     [000] d.h1  5174.051120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.055066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.055079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174012048624
             cat-510     [000] d.h.  5174.055116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.059067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.059081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174016050560
             cat-510     [000] d.h.  5174.059118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5174.063065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.063080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174020049648
             cat-510     [000] d.h1  5174.063115: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.067067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.067080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174024049728
             cat-510     [000] d.h.  5174.067118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.071066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.071080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174028049440
             cat-510     [000] d.h.  5174.071115: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.075070: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.075085: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174032054256
             cat-510     [000] d.h.  5174.075125: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.079067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.079080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174036050000
             cat-510     [000] d.h.  5174.079119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.083066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.083080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174040049328
             cat-510     [000] d.h.  5174.083117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.087066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.087080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174044049312
             cat-510     [000] d.h.  5174.087117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.091066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.091080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174048049664
             cat-510     [000] d.h.  5174.091116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.095066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.095079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174052048784
             cat-510     [000] d.h.  5174.095115: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.099066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.099079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174056048608
             cat-510     [000] d.h.  5174.099117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.103089: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.103103: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174060072384
             cat-510     [000] d.h.  5174.103141: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.107090: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.107104: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174064073328
             cat-510     [000] d.h.  5174.107142: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.111075: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.111089: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174068058368
             cat-510     [000] d.h.  5174.111126: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.115082: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.115096: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174072065568
             cat-510     [000] d.h.  5174.115111: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5174.115136: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5174.115156: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] d.s.  5174.115164: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185815 baseclk=4296185815
             cat-510     [000] .Ns.  5174.115186: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5174.115205: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5174.115223: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5174.115245: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5174.119092: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.119106: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174076075072
             cat-510     [000] d.h.  5174.119147: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.123081: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.123095: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174080063760
             cat-510     [000] d.h.  5174.123133: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.127087: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.127101: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174084070480
             cat-510     [000] d.h.  5174.127116: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5174.127142: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5174.127163: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] d.s.  5174.127171: timer_expire_entry: timer=00000000be69ac58 function=delayed_work_timer_fn now=4296185818 baseclk=4296185818
             cat-510     [000] .Ns.  5174.127190: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5174.127207: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5174.127222: workqueue_execute_start: work struct 00000000ac13faeb: function gc_worker [nf_conntrack]
     kworker/0:2-112     [000] d..2  5174.127253: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h1  5174.131085: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.131100: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174088069440
             cat-510     [000] d.h1  5174.131138: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.135067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.135081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174092051008
             cat-510     [000] d.h.  5174.135119: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.139067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.139080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174096050224
             cat-510     [000] d.h.  5174.139117: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.143067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.143081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174100049712
             cat-510     [000] d.h.  5174.143118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.147067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.147080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174104049664
             cat-510     [000] d.h.  5174.147116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5174.151068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.151082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174108051440
             cat-510     [000] d.h1  5174.151118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.155073: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.155087: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174112056448
             cat-510     [000] d.h.  5174.155127: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.159067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.159081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174116050576
             cat-510     [000] d.h.  5174.159118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.163066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.163080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174120049328
             cat-510     [000] d.h.  5174.163118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.167065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.167079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174124048336
             cat-510     [000] d.h.  5174.167115: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.171067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.171081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174128050400
             cat-510     [000] d.h.  5174.171118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.175067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.175082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174132051472
             cat-510     [000] d.h.  5174.175174: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5174.179066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.179080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174136049408
             cat-510     [000] d.h1  5174.179116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.183070: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.183084: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174140053504
             cat-510     [000] d.h.  5174.183123: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.187067: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.187081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174144050784
             cat-510     [000] d.h.  5174.187096: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5174.187122: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5174.187138: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] ..s.  5174.187143: timer_expire_entry: timer=000000005a8b7de5 function=cursor_timer_handler now=4296185833 baseclk=4296185833
             cat-510     [000] .Ns.  5174.187170: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5174.187186: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5174.187201: workqueue_execute_start: work struct 000000001def49e5: function fb_flashcursor
     kworker/0:2-112     [000] ....  5174.187244: workqueue_execute_start: work struct 00000000dc74ed3a: function drm_fb_helper_damage_work
     kworker/0:2-112     [000] d..2  5174.187292: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h.  5174.191069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.191084: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174148052288
             cat-510     [000] d.h.  5174.191124: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.195065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.195079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174152048416
             cat-510     [000] d.h.  5174.195116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.199066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.199080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174156049184
             cat-510     [000] d.h.  5174.199118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.203065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.203079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174160048912
             cat-510     [000] d.h.  5174.203116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.207066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.207080: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174164050032
             cat-510     [000] d.h.  5174.207118: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.211069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.211083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174168052736
             cat-510     [000] d.h.  5174.211120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.215066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.215081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174172050032
             cat-510     [000] d.h.  5174.215220: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.219068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.219081: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174176050672
             cat-510     [000] d.h.  5174.219097: softirq_raise: vec=1 [action=TIMER]
             cat-510     [000] d.h.  5174.219124: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] ..s.  5174.219140: softirq_entry: vec=1 [action=TIMER]
             cat-510     [000] d.s.  5174.219146: timer_expire_entry: timer=00000000cba1d8c8 function=delayed_work_timer_fn now=4296185841 baseclk=4296185841
             cat-510     [000] .Ns.  5174.219168: softirq_exit: vec=1 [action=TIMER]
             cat-510     [000] d..2  5174.219185: sched_switch: prev_comm=cat prev_pid=510 prev_prio=120 prev_state=R+ ==> next_comm=kworker/0:2 next_pid=112 next_prio=120
     kworker/0:2-112     [000] ....  5174.219200: workqueue_execute_start: work struct 000000007d8c6904: function toggle_allocation_gate
     kworker/0:2-112     [000] d..2  5174.219220: sched_switch: prev_comm=kworker/0:2 prev_pid=112 prev_prio=120 prev_state=I ==> next_comm=cat next_pid=510 next_prio=120
             cat-510     [000] d.h1  5174.223069: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.223083: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174180052784
             cat-510     [000] d.h1  5174.223122: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.227066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.227079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174184049072
             cat-510     [000] d.h.  5174.227116: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.231065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.231078: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174188048208
             cat-510     [000] d.h.  5174.231115: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h1  5174.235065: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h1  5174.235079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174192048864
             cat-510     [000] d.h1  5174.235115: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.239068: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.239082: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174196051680
             cat-510     [000] d.h.  5174.239120: irq_handler_exit: irq=11 ret=handled
             cat-510     [000] d.h.  5174.243066: irq_handler_entry: irq=11 name=arch_timer
             cat-510     [000] d.h.  5174.243079: hrtimer_expire_entry: hrtimer=000000004453b0af function=tick_sched_timer now=5174200048880
             cat-510     [000] d.h.  5174.243117: irq_handler_exit: irq=11 ret=handled

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v2] timers: Recalculate next timer interrupt only when necessary
  2021-07-09  5:37     ` He Zhe
@ 2021-07-09  8:43       ` Frederic Weisbecker
  2021-07-09  9:25         ` He Zhe
  0 siblings, 1 reply; 16+ messages in thread
From: Frederic Weisbecker @ 2021-07-09  8:43 UTC (permalink / raw)
  To: He Zhe; +Cc: anna-maria, linux-kernel, tglx

On Fri, Jul 09, 2021 at 01:37:11PM +0800, He Zhe wrote:
> 
> 
> On 7/8/21 11:36 PM, Frederic Weisbecker wrote:
> > On Thu, Jul 08, 2021 at 02:43:01PM +0800, He Zhe wrote:
> >> Hi,
> >>
> >> Ever since this commit merged in, when nohz_full enabled, the counts of arch_timer interrupt on arm64 arches keep increasing on cores that have been isolated. This can be reproduced on several arm64 boards. After reverting the commit, the counts would stop increasing after boot. my .config is attached.
> >>
> >> root@qemuarm64:~# uname -a
> >> Linux qemuarm64 5.13.0 #1 SMP PREEMPT Mon Jul 5 07:11:27 UTC 2021 aarch64 aarch64 aarch64 GNU/Linux
> >> root@qemuarm64:~# cat /proc/cmdline
> >> root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0  earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5
> >> root@qemuarm64:~# cat /proc/interrupts
> > And I'm not observing that on default aarch64 on qemu either.
> > Are you emulating a specific machine?
> 
> Here is my qemu configuration.
> 
> qemu-system-aarch64 --version
> QEMU emulator version 6.0.0
> Copyright (c) 2003-2021 Fabrice Bellard and the QEMU Project developers
> 
> qemu-system-aarch64 -device virtio-net-device,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/qemuarm64 -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 -drive id=disk0,file=/qemuarm64/qemuarm64.rootfs.ext4,if=none,format=raw -device virtio-blk-device,drive=disk0 -device qemu-xhci -device usb-tablet -device usb-kbd  -machine virt -cpu cortex-a57 -smp 4 -m 2048  -smp 6 -m 2048 -serial mon:stdio -serial null -nographic -device VGA,edid=on -kernel /qemuarm64/Image.bin -append 'root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0 earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5'
> 
> >
> > Can you enable the following trace events and send me the output from
> > one of the isolated CPU trace, say CPU 3 for example:
> 
> output_to_send is attached.
> I can confirm that during the sleep the count of arch_timer increases one on
> each isolated core.

Oh that's the trace from CPU 0, precisely the only one I don't need :o)

It's my fault, the last line of the script should have been:

cat $DIR/per_cpu/cpu3/trace > ~/output_to_send

Sorry...

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v2] timers: Recalculate next timer interrupt only when necessary
  2021-07-09  8:43       ` Frederic Weisbecker
@ 2021-07-09  9:25         ` He Zhe
  2021-07-09 14:06           ` Nicolas Saenz Julienne
  0 siblings, 1 reply; 16+ messages in thread
From: He Zhe @ 2021-07-09  9:25 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: anna-maria, linux-kernel, tglx



On 7/9/21 4:43 PM, Frederic Weisbecker wrote:
> On Fri, Jul 09, 2021 at 01:37:11PM +0800, He Zhe wrote:
>>
>> On 7/8/21 11:36 PM, Frederic Weisbecker wrote:
>>> On Thu, Jul 08, 2021 at 02:43:01PM +0800, He Zhe wrote:
>>>> Hi,
>>>>
>>>> Ever since this commit merged in, when nohz_full enabled, the counts of arch_timer interrupt on arm64 arches keep increasing on cores that have been isolated. This can be reproduced on several arm64 boards. After reverting the commit, the counts would stop increasing after boot. my .config is attached.
>>>>
>>>> root@qemuarm64:~# uname -a
>>>> Linux qemuarm64 5.13.0 #1 SMP PREEMPT Mon Jul 5 07:11:27 UTC 2021 aarch64 aarch64 aarch64 GNU/Linux
>>>> root@qemuarm64:~# cat /proc/cmdline
>>>> root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0  earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5
>>>> root@qemuarm64:~# cat /proc/interrupts
>>> And I'm not observing that on default aarch64 on qemu either.
>>> Are you emulating a specific machine?
>> Here is my qemu configuration.
>>
>> qemu-system-aarch64 --version
>> QEMU emulator version 6.0.0
>> Copyright (c) 2003-2021 Fabrice Bellard and the QEMU Project developers
>>
>> qemu-system-aarch64 -device virtio-net-device,netdev=net0,mac=52:54:00:12:35:02 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::2323-:23,tftp=/qemuarm64 -object rng-random,filename=/dev/urandom,id=rng0 -device virtio-rng-pci,rng=rng0 -drive id=disk0,file=/qemuarm64/qemuarm64.rootfs.ext4,if=none,format=raw -device virtio-blk-device,drive=disk0 -device qemu-xhci -device usb-tablet -device usb-kbd  -machine virt -cpu cortex-a57 -smp 4 -m 2048  -smp 6 -m 2048 -serial mon:stdio -serial null -nographic -device VGA,edid=on -kernel /qemuarm64/Image.bin -append 'root=/dev/vda rw  mem=2048M ip=dhcp console=ttyAMA0 console=hvc0 earlyprintk isolcpus=1-5 nohz_full=1-5 rcu_nocbs=1-5'
>>
>>> Can you enable the following trace events and send me the output from
>>> one of the isolated CPU trace, say CPU 3 for example:
>> output_to_send is attached.
>> I can confirm that during the sleep the count of arch_timer increases one on
>> each isolated core.
> Oh that's the trace from CPU 0, precisely the only one I don't need :o)
>
> It's my fault, the last line of the script should have been:
>
> cat $DIR/per_cpu/cpu3/trace > ~/output_to_send
>
> Sorry...

No problem. I didn't notice that either...

Then here is the result of cpu3
root@qemuarm64:~# cat output_to_send
# tracer: nop
#
# entries-in-buffer/entries-written: 19704/19704   #P:6
#
#                                _-----=> irqs-off
#                               / _----=> need-resched
#                              | / _---=> hardirq/softirq
#                              || / _--=> preempt-depth
#                              ||| /     delay
#           TASK-PID     CPU#  ||||   TIMESTAMP  FUNCTION
#              | |         |   ||||      |         |
          <idle>-0       [003] d.h1   346.216802: irq_handler_entry: irq=11 name=arch_timer
          <idle>-0       [003] d.h1   346.216862: irq_handler_exit: irq=11 ret=handled

Zhe



^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH v2] timers: Recalculate next timer interrupt only when necessary
  2021-07-09  9:25         ` He Zhe
@ 2021-07-09 14:06           ` Nicolas Saenz Julienne
  2021-07-09 14:13             ` [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending Nicolas Saenz Julienne
  0 siblings, 1 reply; 16+ messages in thread
From: Nicolas Saenz Julienne @ 2021-07-09 14:06 UTC (permalink / raw)
  To: He Zhe, Frederic Weisbecker
  Cc: anna-maria, linux-kernel, tglx, Nicolas Saenz Julienne

Hi Frederic, Zhe,

I've stumbled upon an issue on my x86_64 nohz_full setups which looks a lot
like Zhe's.

I've got a potential fix, I'll post it as a reply to this mail.

Regards,
Nicolas


^ permalink raw reply	[flat|nested] 16+ messages in thread

* [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending
  2021-07-09 14:06           ` Nicolas Saenz Julienne
@ 2021-07-09 14:13             ` Nicolas Saenz Julienne
  2021-07-10  0:52               ` Frederic Weisbecker
  2021-07-10  9:05               ` Frederic Weisbecker
  0 siblings, 2 replies; 16+ messages in thread
From: Nicolas Saenz Julienne @ 2021-07-09 14:13 UTC (permalink / raw)
  To: He Zhe, Frederic Weisbecker; +Cc: anna-maria, linux-kernel, tglx

31cd0e119d50 ("timers: Recalculate next timer interrupt only when
necessary") subtly altered get_next_timer_interrupt()'s behaviour. The
function no longer consistently returns KTIME_MAX with no timers
pending.

In order to decide if there are any timers pending we check whether the
next expiry will happen NEXT_TIMER_MAX_DELTA jiffies from now.
Unfortunately, the next expiry time and the timer base clock are no
longer updated in unison. The former changes upon certain timer
operations (enqueue, expire, detach), whereas the latter keeps track of
jiffies as they move forward. Ultimately breaking the logic above.

A simplified example:

- Upon entering get_next_timer_interrupt() with:

	jiffies = 1
	base->clk = 0;
	base->next_expiry = NEXT_TIMER_MAX_DELTA;

  'base->next_expiry == base->clk + NEXT_TIMER_MAX_DELTA', the function
  returns KTIME_MAX.

- 'base->clk' is updated to the jiffies value.

- The next time we enter get_next_timer_interrupt(), taking into account
  no timer operations happened:

	base->clk = 1;
	base->next_expiry = NEXT_TIMER_MAX_DELTA;

  'base->next_expiry != base->clk + NEXT_TIMER_MAX_DELTA', the function
  returns a valid expire time, which is incorrect.

This ultimately might unnecessarily rearm sched's timer on nohz_full
setups, and add latency to the system[1].

So, introduce 'base->timers_pending'[2], update it every time
'base->next_expiry' changes, and use it in get_next_timer_interrupt().

[1] See tick_nohz_stop_tick().
[2] A quick pahole check on x86_64 and arm64 shows it doesn't make
    'struct timer_base' any bigger.

Fixes: 31cd0e119d50 ("timers: Recalculate next timer interrupt only when necessary")
Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com>
---
 kernel/time/timer.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/kernel/time/timer.c b/kernel/time/timer.c
index 47e5c39b005d..830a9016e0ec 100644
--- a/kernel/time/timer.c
+++ b/kernel/time/timer.c
@@ -207,6 +207,7 @@ struct timer_base {
 	unsigned int		cpu;
 	bool			next_expiry_recalc;
 	bool			is_idle;
+	bool			timers_pending;
 	DECLARE_BITMAP(pending_map, WHEEL_SIZE);
 	struct hlist_head	vectors[WHEEL_SIZE];
 } ____cacheline_aligned;
@@ -595,6 +596,7 @@ static void enqueue_timer(struct timer_base *base, struct timer_list *timer,
 		 * can reevaluate the wheel:
 		 */
 		base->next_expiry = bucket_expiry;
+		base->timers_pending = true;
 		base->next_expiry_recalc = false;
 		trigger_dyntick_cpu(base, timer);
 	}
@@ -1598,6 +1600,7 @@ static unsigned long __next_timer_interrupt(struct timer_base *base)
 	}
 
 	base->next_expiry_recalc = false;
+	base->timers_pending = !(next == base->clk + NEXT_TIMER_MAX_DELTA);
 
 	return next;
 }
@@ -1649,7 +1652,6 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
 	struct timer_base *base = this_cpu_ptr(&timer_bases[BASE_STD]);
 	u64 expires = KTIME_MAX;
 	unsigned long nextevt;
-	bool is_max_delta;
 
 	/*
 	 * Pretend that there is no timer pending if the cpu is offline.
@@ -1662,7 +1664,6 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
 	if (base->next_expiry_recalc)
 		base->next_expiry = __next_timer_interrupt(base);
 	nextevt = base->next_expiry;
-	is_max_delta = (nextevt == base->clk + NEXT_TIMER_MAX_DELTA);
 
 	/*
 	 * We have a fresh next event. Check whether we can forward the
@@ -1680,7 +1681,7 @@ u64 get_next_timer_interrupt(unsigned long basej, u64 basem)
 		expires = basem;
 		base->is_idle = false;
 	} else {
-		if (!is_max_delta)
+		if (base->timers_pending)
 			expires = basem + (u64)(nextevt - basej) * TICK_NSEC;
 		/*
 		 * If we expect to sleep more than a tick, mark the base idle.
@@ -1970,6 +1971,7 @@ int timers_prepare_cpu(unsigned int cpu)
 		base = per_cpu_ptr(&timer_bases[b], cpu);
 		base->clk = jiffies;
 		base->next_expiry = base->clk + NEXT_TIMER_MAX_DELTA;
+		base->timers_pending = false;
 		base->is_idle = false;
 	}
 	return 0;
-- 
2.31.1



^ permalink raw reply related	[flat|nested] 16+ messages in thread

* Re: [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending
  2021-07-09 14:13             ` [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending Nicolas Saenz Julienne
@ 2021-07-10  0:52               ` Frederic Weisbecker
  2021-07-12 10:19                 ` Nicolas Saenz Julienne
  2021-07-16 16:38                 ` Nicolas Saenz Julienne
  2021-07-10  9:05               ` Frederic Weisbecker
  1 sibling, 2 replies; 16+ messages in thread
From: Frederic Weisbecker @ 2021-07-10  0:52 UTC (permalink / raw)
  To: Nicolas Saenz Julienne; +Cc: He Zhe, anna-maria, linux-kernel, tglx

On Fri, Jul 09, 2021 at 04:13:25PM +0200, Nicolas Saenz Julienne wrote:
> 31cd0e119d50 ("timers: Recalculate next timer interrupt only when
> necessary") subtly altered get_next_timer_interrupt()'s behaviour. The
> function no longer consistently returns KTIME_MAX with no timers
> pending.
> 
> In order to decide if there are any timers pending we check whether the
> next expiry will happen NEXT_TIMER_MAX_DELTA jiffies from now.
> Unfortunately, the next expiry time and the timer base clock are no
> longer updated in unison. The former changes upon certain timer
> operations (enqueue, expire, detach), whereas the latter keeps track of
> jiffies as they move forward. Ultimately breaking the logic above.
> 
> A simplified example:
> 
> - Upon entering get_next_timer_interrupt() with:
> 
> 	jiffies = 1
> 	base->clk = 0;
> 	base->next_expiry = NEXT_TIMER_MAX_DELTA;
> 
>   'base->next_expiry == base->clk + NEXT_TIMER_MAX_DELTA', the function
>   returns KTIME_MAX.
> 
> - 'base->clk' is updated to the jiffies value.
> 
> - The next time we enter get_next_timer_interrupt(), taking into account
>   no timer operations happened:
> 
> 	base->clk = 1;
> 	base->next_expiry = NEXT_TIMER_MAX_DELTA;
> 
>   'base->next_expiry != base->clk + NEXT_TIMER_MAX_DELTA', the function
>   returns a valid expire time, which is incorrect.
> 
> This ultimately might unnecessarily rearm sched's timer on nohz_full
> setups, and add latency to the system[1].
> 
> So, introduce 'base->timers_pending'[2], update it every time
> 'base->next_expiry' changes, and use it in get_next_timer_interrupt().
> 
> [1] See tick_nohz_stop_tick().
> [2] A quick pahole check on x86_64 and arm64 shows it doesn't make
>     'struct timer_base' any bigger.
> 
> Fixes: 31cd0e119d50 ("timers: Recalculate next timer interrupt only when necessary")
> Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com>

Very good catch.

And the fix looks good:

    Acked-by: Frederic Weisbecker <frederic@kernel.org>

I guess later we can turn this .timers_pending into
.timers_count and that would spare us the costly call to
__next_timer_interrupt() up to the last level after the last
timer is dequeued.

Anyway, thanks a lot!

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending
  2021-07-09 14:13             ` [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending Nicolas Saenz Julienne
  2021-07-10  0:52               ` Frederic Weisbecker
@ 2021-07-10  9:05               ` Frederic Weisbecker
  2021-07-12  6:04                 ` He Zhe
  1 sibling, 1 reply; 16+ messages in thread
From: Frederic Weisbecker @ 2021-07-10  9:05 UTC (permalink / raw)
  To: Nicolas Saenz Julienne; +Cc: He Zhe, anna-maria, linux-kernel, tglx

On Fri, Jul 09, 2021 at 04:13:25PM +0200, Nicolas Saenz Julienne wrote:
> 31cd0e119d50 ("timers: Recalculate next timer interrupt only when
> necessary") subtly altered get_next_timer_interrupt()'s behaviour. The
> function no longer consistently returns KTIME_MAX with no timers
> pending.
> 
> In order to decide if there are any timers pending we check whether the
> next expiry will happen NEXT_TIMER_MAX_DELTA jiffies from now.
> Unfortunately, the next expiry time and the timer base clock are no
> longer updated in unison. The former changes upon certain timer
> operations (enqueue, expire, detach), whereas the latter keeps track of
> jiffies as they move forward. Ultimately breaking the logic above.
> 
> A simplified example:
> 
> - Upon entering get_next_timer_interrupt() with:
> 
> 	jiffies = 1
> 	base->clk = 0;
> 	base->next_expiry = NEXT_TIMER_MAX_DELTA;
> 
>   'base->next_expiry == base->clk + NEXT_TIMER_MAX_DELTA', the function
>   returns KTIME_MAX.
> 
> - 'base->clk' is updated to the jiffies value.
> 
> - The next time we enter get_next_timer_interrupt(), taking into account
>   no timer operations happened:
> 
> 	base->clk = 1;
> 	base->next_expiry = NEXT_TIMER_MAX_DELTA;
> 
>   'base->next_expiry != base->clk + NEXT_TIMER_MAX_DELTA', the function
>   returns a valid expire time, which is incorrect.
> 
> This ultimately might unnecessarily rearm sched's timer on nohz_full
> setups, and add latency to the system[1].
> 
> So, introduce 'base->timers_pending'[2], update it every time
> 'base->next_expiry' changes, and use it in get_next_timer_interrupt().
> 
> [1] See tick_nohz_stop_tick().
> [2] A quick pahole check on x86_64 and arm64 shows it doesn't make
>     'struct timer_base' any bigger.
> 
> Fixes: 31cd0e119d50 ("timers: Recalculate next timer interrupt only when necessary")
> Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com>

He Zhe, does it fix your issue?

Thanks.

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending
  2021-07-10  9:05               ` Frederic Weisbecker
@ 2021-07-12  6:04                 ` He Zhe
  0 siblings, 0 replies; 16+ messages in thread
From: He Zhe @ 2021-07-12  6:04 UTC (permalink / raw)
  To: Frederic Weisbecker, Nicolas Saenz Julienne
  Cc: anna-maria, linux-kernel, tglx



On 7/10/21 5:05 PM, Frederic Weisbecker wrote:
> On Fri, Jul 09, 2021 at 04:13:25PM +0200, Nicolas Saenz Julienne wrote:
>> 31cd0e119d50 ("timers: Recalculate next timer interrupt only when
>> necessary") subtly altered get_next_timer_interrupt()'s behaviour. The
>> function no longer consistently returns KTIME_MAX with no timers
>> pending.
>>
>> In order to decide if there are any timers pending we check whether the
>> next expiry will happen NEXT_TIMER_MAX_DELTA jiffies from now.
>> Unfortunately, the next expiry time and the timer base clock are no
>> longer updated in unison. The former changes upon certain timer
>> operations (enqueue, expire, detach), whereas the latter keeps track of
>> jiffies as they move forward. Ultimately breaking the logic above.
>>
>> A simplified example:
>>
>> - Upon entering get_next_timer_interrupt() with:
>>
>> 	jiffies = 1
>> 	base->clk = 0;
>> 	base->next_expiry = NEXT_TIMER_MAX_DELTA;
>>
>>   'base->next_expiry == base->clk + NEXT_TIMER_MAX_DELTA', the function
>>   returns KTIME_MAX.
>>
>> - 'base->clk' is updated to the jiffies value.
>>
>> - The next time we enter get_next_timer_interrupt(), taking into account
>>   no timer operations happened:
>>
>> 	base->clk = 1;
>> 	base->next_expiry = NEXT_TIMER_MAX_DELTA;
>>
>>   'base->next_expiry != base->clk + NEXT_TIMER_MAX_DELTA', the function
>>   returns a valid expire time, which is incorrect.
>>
>> This ultimately might unnecessarily rearm sched's timer on nohz_full
>> setups, and add latency to the system[1].
>>
>> So, introduce 'base->timers_pending'[2], update it every time
>> 'base->next_expiry' changes, and use it in get_next_timer_interrupt().
>>
>> [1] See tick_nohz_stop_tick().
>> [2] A quick pahole check on x86_64 and arm64 shows it doesn't make
>>     'struct timer_base' any bigger.
>>
>> Fixes: 31cd0e119d50 ("timers: Recalculate next timer interrupt only when necessary")
>> Signed-off-by: Nicolas Saenz Julienne <nsaenzju@redhat.com>
> He Zhe, does it fix your issue?

Yes, this fixes my issue. Thank you all.

Zhe

>
> Thanks.


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending
  2021-07-10  0:52               ` Frederic Weisbecker
@ 2021-07-12 10:19                 ` Nicolas Saenz Julienne
  2021-07-16 16:38                 ` Nicolas Saenz Julienne
  1 sibling, 0 replies; 16+ messages in thread
From: Nicolas Saenz Julienne @ 2021-07-12 10:19 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: He Zhe, anna-maria, linux-kernel, tglx

On Sat, 2021-07-10 at 02:52 +0200, Frederic Weisbecker wrote:
> Very good catch.
> 
> And the fix looks good:
> 
>     Acked-by: Frederic Weisbecker <frederic@kernel.org>

Thanks!

> 
> I guess later we can turn this .timers_pending into
> .timers_count and that would spare us the costly call to
> __next_timer_interrupt() up to the last level after the last
> timer is dequeued.

Sound like something manageable. I'll probably have a go at it in the future.

-- 
Nicolás Sáenz


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending
  2021-07-10  0:52               ` Frederic Weisbecker
  2021-07-12 10:19                 ` Nicolas Saenz Julienne
@ 2021-07-16 16:38                 ` Nicolas Saenz Julienne
  2021-07-19 13:54                   ` Frederic Weisbecker
  1 sibling, 1 reply; 16+ messages in thread
From: Nicolas Saenz Julienne @ 2021-07-16 16:38 UTC (permalink / raw)
  To: Frederic Weisbecker; +Cc: He Zhe, anna-maria, linux-kernel, tglx

On Sat, 2021-07-10 at 02:52 +0200, Frederic Weisbecker wrote:
> I guess later we can turn this .timers_pending into
> .timers_count and that would spare us the costly call to
> __next_timer_interrupt() up to the last level after the last
> timer is dequeued.

I've been looking into this. AFAIU there is no limit to the number of timers
one might enqueue, so there is no fool proof way of selecting .timers_count's
size. That said, 'struct timer_list' size is 40 bytes (as per pahole), so in
order to overflow an u32 .timers_count you'd need to allocate ~160GB in 'struct
timer_list' which I think is safe to assume will never happen.

Also, I measured the costy call to __next_timer_interrupt() it's slightly less
than 1us on my test machine. Not a that big in the grand scheme of things, but
it's in the irq exit code path, so I think it's worth the extra complexity in
the timer code.

Any thoughs?

-- 
Nicolás Sáenz


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending
  2021-07-16 16:38                 ` Nicolas Saenz Julienne
@ 2021-07-19 13:54                   ` Frederic Weisbecker
  0 siblings, 0 replies; 16+ messages in thread
From: Frederic Weisbecker @ 2021-07-19 13:54 UTC (permalink / raw)
  To: Nicolas Saenz Julienne; +Cc: He Zhe, anna-maria, linux-kernel, tglx

On Fri, Jul 16, 2021 at 06:38:37PM +0200, Nicolas Saenz Julienne wrote:
> On Sat, 2021-07-10 at 02:52 +0200, Frederic Weisbecker wrote:
> > I guess later we can turn this .timers_pending into
> > .timers_count and that would spare us the costly call to
> > __next_timer_interrupt() up to the last level after the last
> > timer is dequeued.
> 
> I've been looking into this. AFAIU there is no limit to the number of timers
> one might enqueue, so there is no fool proof way of selecting .timers_count's
> size. That said, 'struct timer_list' size is 40 bytes (as per pahole), so in
> order to overflow an u32 .timers_count you'd need to allocate ~160GB in 'struct
> timer_list' which I think is safe to assume will never happen.
> 
> Also, I measured the costy call to __next_timer_interrupt() it's slightly less
> than 1us on my test machine. Not a that big in the grand scheme of things, but
> it's in the irq exit code path, so I think it's worth the extra complexity in
> the timer code.

And also each time we iterate the idle loop. In fact __next_timer_interrupt()
won't always have the same cost: the worst case is when the wheel is entirely
empty after the last removal and we need to walk through all 9 levels. It's
a pretty common case because it happens when the last timer expires.

And that's the only one case to measure because it's the only one covered
by the counter.

> 
> Any thoughs?
> 
> -- 
> Nicolás Sáenz
> 

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2021-07-19 13:54 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-23 15:16 [PATCH v2] timers: Recalculate next timer interrupt only when necessary Frederic Weisbecker
2020-07-24 10:59 ` [tip: timers/core] " tip-bot2 for Frederic Weisbecker
2021-07-08  6:43 ` [PATCH v2] " He Zhe
2021-07-08 11:35   ` Frederic Weisbecker
2021-07-08 15:36   ` Frederic Weisbecker
2021-07-09  5:37     ` He Zhe
2021-07-09  8:43       ` Frederic Weisbecker
2021-07-09  9:25         ` He Zhe
2021-07-09 14:06           ` Nicolas Saenz Julienne
2021-07-09 14:13             ` [PATCH] timers: Fix get_next_timer_interrupt() with no timers pending Nicolas Saenz Julienne
2021-07-10  0:52               ` Frederic Weisbecker
2021-07-12 10:19                 ` Nicolas Saenz Julienne
2021-07-16 16:38                 ` Nicolas Saenz Julienne
2021-07-19 13:54                   ` Frederic Weisbecker
2021-07-10  9:05               ` Frederic Weisbecker
2021-07-12  6:04                 ` He Zhe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).