Searched refs:wl (Results 1 – 2 of 2) sorted by relevance
/kernel/power/ |
D | wakelock.c | 37 struct wakelock *wl; in pm_show_wakelocks() local 44 wl = rb_entry(node, struct wakelock, node); in pm_show_wakelocks() 45 if (wl->ws.active == show_active) in pm_show_wakelocks() 46 str += scnprintf(str, end - str, "%s ", wl->name); in pm_show_wakelocks() 87 static inline void wakelocks_lru_add(struct wakelock *wl) in wakelocks_lru_add() argument 89 list_add(&wl->lru, &wakelocks_lru_list); in wakelocks_lru_add() 92 static inline void wakelocks_lru_most_recent(struct wakelock *wl) in wakelocks_lru_most_recent() argument 94 list_move(&wl->lru, &wakelocks_lru_list); in wakelocks_lru_most_recent() 99 struct wakelock *wl, *aux; in wakelocks_gc() local 106 list_for_each_entry_safe_reverse(wl, aux, &wakelocks_lru_list, lru) { in wakelocks_gc() [all …]
|
/kernel/sched/ |
D | fair.c | 3048 static long effective_load(struct task_group *tg, int cpu, long wl, long wg) in effective_load() argument 3053 return wl; in effective_load() 3068 w = se->my_q->load.weight + wl; in effective_load() 3074 wl = (w * tg->shares) / W; in effective_load() 3076 wl = tg->shares; in effective_load() 3083 if (wl < MIN_SHARES) in effective_load() 3084 wl = MIN_SHARES; in effective_load() 3089 wl -= se->load.weight; in effective_load() 3101 return wl; in effective_load() 3106 unsigned long wl, unsigned long wg) in effective_load() argument [all …]
|