4 * Global CPU deadline management
6 * Author: Juri Lelli <j.lelli@sssup.it>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; version 2
14 #include <linux/gfp.h>
15 #include <linux/kernel.h>
16 #include "cpudeadline.h"
18 static inline int parent(int i
)
23 static inline int left_child(int i
)
28 static inline int right_child(int i
)
33 static inline int dl_time_before(u64 a
, u64 b
)
35 return (s64
)(a
- b
) < 0;
38 static void cpudl_exchange(struct cpudl
*cp
, int a
, int b
)
40 int cpu_a
= cp
->elements
[a
].cpu
, cpu_b
= cp
->elements
[b
].cpu
;
42 swap(cp
->elements
[a
], cp
->elements
[b
]);
43 swap(cp
->cpu_to_idx
[cpu_a
], cp
->cpu_to_idx
[cpu_b
]);
46 static void cpudl_heapify(struct cpudl
*cp
, int idx
)
50 /* adapted from lib/prio_heap.c */
56 if ((l
< cp
->size
) && dl_time_before(cp
->elements
[idx
].dl
,
59 if ((r
< cp
->size
) && dl_time_before(cp
->elements
[largest
].dl
,
65 /* Push idx down the heap one level and bump one up */
66 cpudl_exchange(cp
, largest
, idx
);
71 static void cpudl_change_key(struct cpudl
*cp
, int idx
, u64 new_dl
)
73 WARN_ON(idx
== IDX_INVALID
|| !cpu_present(idx
));
75 if (dl_time_before(new_dl
, cp
->elements
[idx
].dl
)) {
76 cp
->elements
[idx
].dl
= new_dl
;
77 cpudl_heapify(cp
, idx
);
79 cp
->elements
[idx
].dl
= new_dl
;
80 while (idx
> 0 && dl_time_before(cp
->elements
[parent(idx
)].dl
,
81 cp
->elements
[idx
].dl
)) {
82 cpudl_exchange(cp
, idx
, parent(idx
));
88 static inline int cpudl_maximum(struct cpudl
*cp
)
90 return cp
->elements
[0].cpu
;
94 * cpudl_find - find the best (later-dl) CPU in the system
95 * @cp: the cpudl max-heap context
97 * @later_mask: a mask to fill in with the selected CPUs (or NULL)
99 * Returns: int - best CPU (heap maximum if suitable)
101 int cpudl_find(struct cpudl
*cp
, struct task_struct
*p
,
102 struct cpumask
*later_mask
)
105 const struct sched_dl_entity
*dl_se
= &p
->dl
;
107 if (later_mask
&& cpumask_and(later_mask
, cp
->free_cpus
,
108 &p
->cpus_allowed
) && cpumask_and(later_mask
,
109 later_mask
, cpu_active_mask
)) {
110 best_cpu
= cpumask_any(later_mask
);
112 } else if (cpumask_test_cpu(cpudl_maximum(cp
), &p
->cpus_allowed
) &&
113 dl_time_before(dl_se
->deadline
, cp
->elements
[0].dl
)) {
114 best_cpu
= cpudl_maximum(cp
);
116 cpumask_set_cpu(best_cpu
, later_mask
);
120 WARN_ON(best_cpu
!= -1 && !cpu_present(best_cpu
));
126 * cpudl_set - update the cpudl max-heap
127 * @cp: the cpudl max-heap context
128 * @cpu: the target cpu
129 * @dl: the new earliest deadline for this cpu
131 * Notes: assumes cpu_rq(cpu)->lock is locked
135 void cpudl_set(struct cpudl
*cp
, int cpu
, u64 dl
, int is_valid
)
137 int old_idx
, new_cpu
;
140 WARN_ON(!cpu_present(cpu
));
142 raw_spin_lock_irqsave(&cp
->lock
, flags
);
143 old_idx
= cp
->cpu_to_idx
[cpu
];
146 if (old_idx
== IDX_INVALID
) {
148 * Nothing to remove if old_idx was invalid.
149 * This could happen if a rq_offline_dl is
150 * called for a CPU without -dl tasks running.
154 new_cpu
= cp
->elements
[cp
->size
- 1].cpu
;
155 cp
->elements
[old_idx
].dl
= cp
->elements
[cp
->size
- 1].dl
;
156 cp
->elements
[old_idx
].cpu
= new_cpu
;
158 cp
->cpu_to_idx
[new_cpu
] = old_idx
;
159 cp
->cpu_to_idx
[cpu
] = IDX_INVALID
;
160 while (old_idx
> 0 && dl_time_before(
161 cp
->elements
[parent(old_idx
)].dl
,
162 cp
->elements
[old_idx
].dl
)) {
163 cpudl_exchange(cp
, old_idx
, parent(old_idx
));
164 old_idx
= parent(old_idx
);
166 cpumask_set_cpu(cpu
, cp
->free_cpus
);
167 cpudl_heapify(cp
, old_idx
);
172 if (old_idx
== IDX_INVALID
) {
174 cp
->elements
[cp
->size
- 1].dl
= 0;
175 cp
->elements
[cp
->size
- 1].cpu
= cpu
;
176 cp
->cpu_to_idx
[cpu
] = cp
->size
- 1;
177 cpudl_change_key(cp
, cp
->size
- 1, dl
);
178 cpumask_clear_cpu(cpu
, cp
->free_cpus
);
180 cpudl_change_key(cp
, old_idx
, dl
);
184 raw_spin_unlock_irqrestore(&cp
->lock
, flags
);
188 * cpudl_init - initialize the cpudl structure
189 * @cp: the cpudl max-heap context
191 int cpudl_init(struct cpudl
*cp
)
195 memset(cp
, 0, sizeof(*cp
));
196 raw_spin_lock_init(&cp
->lock
);
198 for (i
= 0; i
< NR_CPUS
; i
++)
199 cp
->cpu_to_idx
[i
] = IDX_INVALID
;
200 if (!alloc_cpumask_var(&cp
->free_cpus
, GFP_KERNEL
))
202 cpumask_setall(cp
->free_cpus
);
208 * cpudl_cleanup - clean up the cpudl structure
209 * @cp: the cpudl max-heap context
211 void cpudl_cleanup(struct cpudl
*cp
)
214 * nothing to do for the moment