aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus/rt_param.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/litmus/rt_param.h')
-rw-r--r--[-rwxr-xr-x]include/litmus/rt_param.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h
index aca78a835529..47301c04d862 100755..100644
--- a/include/litmus/rt_param.h
+++ b/include/litmus/rt_param.h
@@ -166,7 +166,7 @@ struct rt_job {
166 166
167struct pfair_param; 167struct pfair_param;
168 168
169enum klitirqd_sem_status 169enum klmirqd_sem_status
170{ 170{
171 NEED_TO_REACQUIRE, 171 NEED_TO_REACQUIRE,
172 REACQUIRING, 172 REACQUIRING,
@@ -223,26 +223,26 @@ struct rt_param {
223 /* proxy threads have minimum priority by default */ 223 /* proxy threads have minimum priority by default */
224 unsigned int is_proxy_thread:1; 224 unsigned int is_proxy_thread:1;
225 225
226 /* pointer to klitirqd currently working on this 226 /* pointer to klmirqd currently working on this
227 task_struct's behalf. only set by the task pointed 227 task_struct's behalf. only set by the task pointed
228 to by klitirqd. 228 to by klmirqd.
229 229
230 ptr only valid if is_proxy_thread == 0 230 ptr only valid if is_proxy_thread == 0
231 */ 231 */
232 struct task_struct* cur_klitirqd; 232 struct task_struct* cur_klmirqd;
233 233
234 /* Used to implement mutual execution exclusion between 234 /* Used to implement mutual execution exclusion between
235 * job and klitirqd execution. Job must always hold 235 * job and klmirqd execution. Job must always hold
236 * it's klitirqd_sem to execute. klitirqd instance 236 * it's klmirqd_sem to execute. klmirqd instance
237 * must hold the semaphore before executing on behalf 237 * must hold the semaphore before executing on behalf
238 * of a job. 238 * of a job.
239 */ 239 */
240 struct mutex klitirqd_sem; 240 struct mutex klmirqd_sem;
241 241
242 /* status of held klitirqd_sem, even if the held klitirqd_sem is from 242 /* status of held klmirqd_sem, even if the held klmirqd_sem is from
243 another task (only proxy threads do this though). 243 another task (only proxy threads do this though).
244 */ 244 */
245 atomic_t klitirqd_sem_stat; 245 atomic_t klmirqd_sem_stat;
246#endif 246#endif
247 247
248#ifdef CONFIG_LITMUS_NVIDIA 248#ifdef CONFIG_LITMUS_NVIDIA