ACPI: thinkpad-acpi: preserve radio state across shutdown
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / kernel / sched_cpupri.c
blob52154fefab7eef9c8302a7da96741bf59d13c6b6
1 /*
2 * kernel/sched_cpupri.c
4 * CPU priority management
6 * Copyright (C) 2007-2008 Novell
8 * Author: Gregory Haskins <ghaskins@novell.com>
10 * This code tracks the priority of each CPU so that global migration
11 * decisions are easy to calculate. Each CPU can be in a state as follows:
13 * (INVALID), IDLE, NORMAL, RT1, ... RT99
15 * going from the lowest priority to the highest. CPUs in the INVALID state
16 * are not eligible for routing. The system maintains this state with
17 * a 2 dimensional bitmap (the first for priority class, the second for cpus
18 * in that class). Therefore a typical application without affinity
19 * restrictions can find a suitable CPU with O(1) complexity (e.g. two bit
20 * searches). For tasks with affinity restrictions, the algorithm has a
21 * worst case complexity of O(min(102, nr_domcpus)), though the scenario that
22 * yields the worst case search is fairly contrived.
24 * This program is free software; you can redistribute it and/or
25 * modify it under the terms of the GNU General Public License
26 * as published by the Free Software Foundation; version 2
27 * of the License.
30 #include "sched_cpupri.h"
32 /* Convert between a 140 based task->prio, and our 102 based cpupri */
33 static int convert_prio(int prio)
35 int cpupri;
37 if (prio == CPUPRI_INVALID)
38 cpupri = CPUPRI_INVALID;
39 else if (prio == MAX_PRIO)
40 cpupri = CPUPRI_IDLE;
41 else if (prio >= MAX_RT_PRIO)
42 cpupri = CPUPRI_NORMAL;
43 else
44 cpupri = MAX_RT_PRIO - prio + 1;
46 return cpupri;
49 #define for_each_cpupri_active(array, idx) \
50 for (idx = find_first_bit(array, CPUPRI_NR_PRIORITIES); \
51 idx < CPUPRI_NR_PRIORITIES; \
52 idx = find_next_bit(array, CPUPRI_NR_PRIORITIES, idx+1))
54 /**
55 * cpupri_find - find the best (lowest-pri) CPU in the system
56 * @cp: The cpupri context
57 * @p: The task
58 * @lowest_mask: A mask to fill in with selected CPUs
60 * Note: This function returns the recommended CPUs as calculated during the
61 * current invokation. By the time the call returns, the CPUs may have in
62 * fact changed priorities any number of times. While not ideal, it is not
63 * an issue of correctness since the normal rebalancer logic will correct
64 * any discrepancies created by racing against the uncertainty of the current
65 * priority configuration.
67 * Returns: (int)bool - CPUs were found
69 int cpupri_find(struct cpupri *cp, struct task_struct *p,
70 cpumask_t *lowest_mask)
72 int idx = 0;
73 int task_pri = convert_prio(p->prio);
75 for_each_cpupri_active(cp->pri_active, idx) {
76 struct cpupri_vec *vec = &cp->pri_to_cpu[idx];
77 cpumask_t mask;
79 if (idx >= task_pri)
80 break;
82 cpus_and(mask, p->cpus_allowed, vec->mask);
84 if (cpus_empty(mask))
85 continue;
87 *lowest_mask = mask;
88 return 1;
91 return 0;
94 /**
95 * cpupri_set - update the cpu priority setting
96 * @cp: The cpupri context
97 * @cpu: The target cpu
98 * @pri: The priority (INVALID-RT99) to assign to this CPU
100 * Note: Assumes cpu_rq(cpu)->lock is locked
102 * Returns: (void)
104 void cpupri_set(struct cpupri *cp, int cpu, int newpri)
106 int *currpri = &cp->cpu_to_pri[cpu];
107 int oldpri = *currpri;
108 unsigned long flags;
110 newpri = convert_prio(newpri);
112 BUG_ON(newpri >= CPUPRI_NR_PRIORITIES);
114 if (newpri == oldpri)
115 return;
118 * If the cpu was currently mapped to a different value, we
119 * first need to unmap the old value
121 if (likely(oldpri != CPUPRI_INVALID)) {
122 struct cpupri_vec *vec = &cp->pri_to_cpu[oldpri];
124 spin_lock_irqsave(&vec->lock, flags);
126 vec->count--;
127 if (!vec->count)
128 clear_bit(oldpri, cp->pri_active);
129 cpu_clear(cpu, vec->mask);
131 spin_unlock_irqrestore(&vec->lock, flags);
134 if (likely(newpri != CPUPRI_INVALID)) {
135 struct cpupri_vec *vec = &cp->pri_to_cpu[newpri];
137 spin_lock_irqsave(&vec->lock, flags);
139 cpu_set(cpu, vec->mask);
140 vec->count++;
141 if (vec->count == 1)
142 set_bit(newpri, cp->pri_active);
144 spin_unlock_irqrestore(&vec->lock, flags);
147 *currpri = newpri;
151 * cpupri_init - initialize the cpupri structure
152 * @cp: The cpupri context
154 * Returns: (void)
156 void cpupri_init(struct cpupri *cp)
158 int i;
160 memset(cp, 0, sizeof(*cp));
162 for (i = 0; i < CPUPRI_NR_PRIORITIES; i++) {
163 struct cpupri_vec *vec = &cp->pri_to_cpu[i];
165 spin_lock_init(&vec->lock);
166 vec->count = 0;
167 cpus_clear(vec->mask);
170 for_each_possible_cpu(i)
171 cp->cpu_to_pri[i] = CPUPRI_INVALID;