1 /* SPDX-License-Identifier: GPL-2.0 */
3 * latencytop.h: Infrastructure for displaying latency
5 * (C) Copyright 2008 Intel Corporation
6 * Author: Arjan van de Ven <arjan@linux.intel.com>
10 #ifndef _INCLUDE_GUARD_LATENCYTOP_H_
11 #define _INCLUDE_GUARD_LATENCYTOP_H_
13 #include <linux/compiler.h>
16 #ifdef CONFIG_LATENCYTOP
18 #define LT_SAVECOUNT 32
19 #define LT_BACKTRACEDEPTH 12
21 struct latency_record {
22 unsigned long backtrace[LT_BACKTRACEDEPTH];
30 extern int latencytop_enabled;
31 void __account_scheduler_latency(struct task_struct *task, int usecs, int inter);
33 account_scheduler_latency(struct task_struct *task, int usecs, int inter)
35 if (unlikely(latencytop_enabled))
36 __account_scheduler_latency(task, usecs, inter);
39 void clear_all_latency_tracing(struct task_struct *p);
41 extern int sysctl_latencytop(struct ctl_table *table, int write,
42 void __user *buffer, size_t *lenp, loff_t *ppos);
47 account_scheduler_latency(struct task_struct *task, int usecs, int inter)
51 static inline void clear_all_latency_tracing(struct task_struct *p)