Home
last modified time | relevance | path

Searched refs:pid_max (Results 1 – 12 of 12) sorted by relevance

/linux-6.12.1/tools/testing/selftests/clone3/
Dclone3_set_tid.c148 int pid_max = 0; in main() local
166 fscanf(f, "%d", &pid_max); in main()
168 ksft_print_msg("/proc/sys/kernel/pid_max %d\n", pid_max); in main()
250 set_tid[0] = pid_max; in main()
/linux-6.12.1/kernel/
Dpid.c63 int pid_max = PID_MAX_DEFAULT; variable
201 if (tid < 1 || tid >= pid_max) in alloc_pid()
241 pid_max, GFP_ATOMIC); in alloc_pid()
656 pid_max = min(pid_max_max, max_t(int, pid_max, in pid_idr_init()
660 pr_info("pid_max: default: %u minimum: %u\n", pid_max, pid_max_min); in pid_idr_init()
Dpid_namespace.c284 extern int pid_max;
292 .extra2 = &pid_max,
Dsysctl.c1809 .data = &pid_max,
/linux-6.12.1/include/linux/
Dpid.h109 extern int pid_max;
/linux-6.12.1/tools/testing/kunit/test_data/
Dtest_is_test_passed-no_tests_run_no_header.log19 pid_max: default: 32768 minimum: 301
Dtest_output_isolated_correctly.log44 pid_max: default: 32768 minimum: 301
/linux-6.12.1/kernel/trace/
Dpid_list.c417 WARN_ON_ONCE(pid_max > (1 << 30)); in trace_pid_list_alloc()
Dtrace_sched_switch.c445 tgid_map_max = pid_max; in trace_alloc_tgid_map()
Dtrace.h718 extern int pid_max;
/linux-6.12.1/tools/perf/
Dbuiltin-sched.c444 static int pid_max; in register_pid() local
447 if (sysctl__read_int("kernel/pid_max", &pid_max) < 0) in register_pid()
448 pid_max = MAX_PID; in register_pid()
449 BUG_ON((sched->pid_to_task = calloc(pid_max, sizeof(struct task_desc *))) == NULL); in register_pid()
451 if (pid >= (unsigned long)pid_max) { in register_pid()
454 while (pid >= (unsigned long)pid_max) in register_pid()
455 sched->pid_to_task[pid_max++] = NULL; in register_pid()
/linux-6.12.1/Documentation/admin-guide/sysctl/
Dkernel.rst1022 pid_max chapter
1027 PIDs of value ``pid_max`` or larger are not allocated.