File: init_enable_count.bpf.c

package info (click to toggle)
linux 6.12.8-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,673,568 kB
  • sloc: ansic: 25,888,630; asm: 268,782; sh: 136,481; python: 64,809; makefile: 55,668; perl: 38,052; xml: 19,270; cpp: 5,893; yacc: 4,923; lex: 2,939; awk: 1,592; sed: 28; ruby: 25
file content (53 lines) | stat: -rw-r--r-- 1,308 bytes parent folder | download | duplicates (17)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * A scheduler that verifies that we do proper counting of init, enable, etc
 * callbacks.
 *
 * Copyright (c) 2023 Meta Platforms, Inc. and affiliates.
 * Copyright (c) 2023 David Vernet <dvernet@meta.com>
 * Copyright (c) 2023 Tejun Heo <tj@kernel.org>
 */

#include <scx/common.bpf.h>

char _license[] SEC("license") = "GPL";

u64 init_task_cnt, exit_task_cnt, enable_cnt, disable_cnt;
u64 init_fork_cnt, init_transition_cnt;

s32 BPF_STRUCT_OPS_SLEEPABLE(cnt_init_task, struct task_struct *p,
			     struct scx_init_task_args *args)
{
	__sync_fetch_and_add(&init_task_cnt, 1);

	if (args->fork)
		__sync_fetch_and_add(&init_fork_cnt, 1);
	else
		__sync_fetch_and_add(&init_transition_cnt, 1);

	return 0;
}

void BPF_STRUCT_OPS(cnt_exit_task, struct task_struct *p)
{
	__sync_fetch_and_add(&exit_task_cnt, 1);
}

void BPF_STRUCT_OPS(cnt_enable, struct task_struct *p)
{
	__sync_fetch_and_add(&enable_cnt, 1);
}

void BPF_STRUCT_OPS(cnt_disable, struct task_struct *p)
{
	__sync_fetch_and_add(&disable_cnt, 1);
}

SEC(".struct_ops.link")
struct sched_ext_ops init_enable_count_ops = {
	.init_task	= (void *) cnt_init_task,
	.exit_task	= (void *) cnt_exit_task,
	.enable		= (void *) cnt_enable,
	.disable	= (void *) cnt_disable,
	.name		= "init_enable_count",
};