Home
last modified time | relevance | path

Searched refs:MAX_PRIO (Results 1 – 5 of 5) sorted by relevance

/linux-6.15/init/
H A Dinit_task.c75 .prio = MAX_PRIO - 20,
76 .static_prio = MAX_PRIO - 20,
77 .normal_prio = MAX_PRIO - 20,
99 .pushable_tasks = PLIST_NODE_INIT(init_task.pushable_tasks, MAX_PRIO),
/linux-6.15/include/linux/sched/
H A Dprio.h19 #define MAX_PRIO (MAX_RT_PRIO + NICE_WIDTH) macro
/linux-6.15/arch/powerpc/platforms/cell/spufs/
H A Dsched.c42 DECLARE_BITMAP(bitmap, MAX_PRIO);
43 struct list_head runq[MAX_PRIO];
75 max(x * (MAX_PRIO - prio) / (NICE_WIDTH / 2), MIN_SPU_TIMESLICE)
880 __spu_deactivate(ctx, 1, MAX_PRIO); in spu_deactivate()
896 __spu_deactivate(ctx, 0, MAX_PRIO); in spu_yield()
1089 for (i = 0; i < MAX_PRIO; i++) { in spu_sched_init()
/linux-6.15/tools/perf/
H A Dbuiltin-sched.c55 #define MAX_PRIO 140 macro
238 DECLARE_BITMAP(prio_bitmap, MAX_PRIO);
3192 if (start_prio >= MAX_PRIO || (*p != '\0' && *p != ',' && *p != '-')) in timehist_parse_prio_str()
3200 if (end_prio >= MAX_PRIO || (*p != '\0' && *p != ',')) in timehist_parse_prio_str()
/linux-6.15/kernel/sched/
H A Dcore.c4781 plist_node_init(&p->pushable_tasks, MAX_PRIO); in sched_fork()