dc68054305
- Restore 29 recipe symlinks (libdrm, qtbase, dbus, sddm, pipewire, etc.) - Restore 33 patches (KDE, libdrm, mesa, pipewire, sddm, wireplumber) - Restore 20+ local/scripts (audit, lint, test, build helpers) - Restore src/cook/scheduler.rs, status.rs, gnu-config/ - Restore scripts/patch-inclusion-gate.sh, run_mini1.sh, validate-collision-log.sh - Recover TLC source from HEAD (was overwritten by 0.2.3 checkout) - Recover 11 local/docs plans from HEAD (were overwritten) - Recover qt6-wayland-smoke symlink from HEAD - Fix MOTD: remove garbled ASCII art, use clean text - Update version: 0.2.0 -> 0.2.4 in os-release, motd, config - Reduce filesystem_size: 1536 -> 512 MiB - Add ABSOLUTE RULE to AGENTS.md: never delete/ignore packages - Reduce pcid scheme log verbosity: info -> debug
55 lines
1.1 KiB
C
55 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* latencytop.h: Infrastructure for displaying latency
|
|
*
|
|
* (C) Copyright 2008 Intel Corporation
|
|
* Author: Arjan van de Ven <arjan@linux.intel.com>
|
|
*
|
|
*/
|
|
|
|
#ifndef _INCLUDE_GUARD_LATENCYTOP_H_
|
|
#define _INCLUDE_GUARD_LATENCYTOP_H_
|
|
|
|
#include <linux/compiler.h>
|
|
struct task_struct;
|
|
|
|
#ifdef CONFIG_LATENCYTOP
|
|
|
|
#define LT_SAVECOUNT 32
|
|
#define LT_BACKTRACEDEPTH 12
|
|
|
|
struct latency_record {
|
|
unsigned long backtrace[LT_BACKTRACEDEPTH];
|
|
unsigned int count;
|
|
unsigned long time;
|
|
unsigned long max;
|
|
};
|
|
|
|
|
|
|
|
extern int latencytop_enabled;
|
|
void __account_scheduler_latency(struct task_struct *task, int usecs, int inter);
|
|
static inline void
|
|
account_scheduler_latency(struct task_struct *task, int usecs, int inter)
|
|
{
|
|
if (unlikely(latencytop_enabled))
|
|
__account_scheduler_latency(task, usecs, inter);
|
|
}
|
|
|
|
void clear_tsk_latency_tracing(struct task_struct *p);
|
|
|
|
#else
|
|
|
|
static inline void
|
|
account_scheduler_latency(struct task_struct *task, int usecs, int inter)
|
|
{
|
|
}
|
|
|
|
static inline void clear_tsk_latency_tracing(struct task_struct *p)
|
|
{
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|