diff options
author | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-09-28 00:32:55 -0400 |
---|---|---|
committer | Andrea Bastoni <bastoni@cs.unc.edu> | 2010-09-28 00:32:55 -0400 |
commit | 987e83646701cee38c6378c84017cc2aabde39a9 (patch) | |
tree | 7fcb74989cbcc6c76dac61d929f9ec3f1bf6349e | |
parent | e99200a1a2c28c8711eb1549ea61bd4af4f970da (diff) |
Add extra tracing points and format old traces
-rw-r--r-- | litmus/sched_edf_fm.c | 3 | ||||
-rw-r--r-- | litmus/sched_npsf.c | 7 |
2 files changed, 9 insertions, 1 deletions
diff --git a/litmus/sched_edf_fm.c b/litmus/sched_edf_fm.c index 38b5a3f97101..b7210725c072 100644 --- a/litmus/sched_edf_fm.c +++ b/litmus/sched_edf_fm.c | |||
@@ -271,6 +271,9 @@ static int next_cpu_for_job(struct task_struct *t) | |||
271 | { | 271 | { |
272 | BUG_ON(!is_migrat_task(t)); | 272 | BUG_ON(!is_migrat_task(t)); |
273 | 273 | ||
274 | TRACE_TASK(t, "%u = %u * %u / %u\n", | ||
275 | t->rt_param.job_params.job_no, cur_cpu_job_no(t), | ||
276 | cur_cpu_fract_den(t), cur_cpu_fract_num(t)); | ||
274 | if ((t->rt_param.job_params.job_no) == | 277 | if ((t->rt_param.job_params.job_no) == |
275 | (((lt_t) cur_cpu_job_no(t) * cur_cpu_fract_den(t)) / | 278 | (((lt_t) cur_cpu_job_no(t) * cur_cpu_fract_den(t)) / |
276 | cur_cpu_fract_num(t))) | 279 | cur_cpu_fract_num(t))) |
diff --git a/litmus/sched_npsf.c b/litmus/sched_npsf.c index 0c8a747fc6ca..9f45f9632e97 100644 --- a/litmus/sched_npsf.c +++ b/litmus/sched_npsf.c | |||
@@ -507,7 +507,7 @@ static struct task_struct* npsf_schedule(struct task_struct * prev) | |||
507 | if (is_realtime(prev) && task_npsfid(prev) == entry->cpu_reserve->npsf_id) | 507 | if (is_realtime(prev) && task_npsfid(prev) == entry->cpu_reserve->npsf_id) |
508 | npsf_schedule_server(prev, entry); | 508 | npsf_schedule_server(prev, entry); |
509 | else if (is_realtime(prev)) | 509 | else if (is_realtime(prev)) |
510 | TRACE_TASK(prev, "npsf_id %d != cpu_reserve npsf_id %d", | 510 | TRACE_TASK(prev, "npsf_id %d != cpu_reserve npsf_id %d\n", |
511 | task_npsfid(prev), entry->cpu_reserve->npsf_id); | 511 | task_npsfid(prev), entry->cpu_reserve->npsf_id); |
512 | 512 | ||
513 | /* step 4: determine if we need to switch to another reserve */ | 513 | /* step 4: determine if we need to switch to another reserve */ |
@@ -866,6 +866,9 @@ static long do_add_reserve(npsf_reserve_t **new, cpu_entry_t *cpu, | |||
866 | (*new)->budget = budget; | 866 | (*new)->budget = budget; |
867 | (*new)->cpu = cpu; | 867 | (*new)->cpu = cpu; |
868 | 868 | ||
869 | npsf_printk("Add npsf_id %d on P%d with budget %llu\n", (*new)->npsf_id, | ||
870 | (*new)->cpu->cpu, (*new)->budget); | ||
871 | |||
869 | raw_spin_lock_irqsave(&cpu->cpu_res_lock, flags); | 872 | raw_spin_lock_irqsave(&cpu->cpu_res_lock, flags); |
870 | 873 | ||
871 | list_add_tail(&(*new)->node, &cpu->npsf_reserves); | 874 | list_add_tail(&(*new)->node, &cpu->npsf_reserves); |
@@ -978,6 +981,8 @@ asmlinkage long sys_add_server(int __user *__id, | |||
978 | if (last) { | 981 | if (last) { |
979 | /* force the first slot switching by setting the | 982 | /* force the first slot switching by setting the |
980 | * current_reserve to the last server for each cpu. | 983 | * current_reserve to the last server for each cpu. |
984 | * | ||
985 | * FIXME:don't assume there exists at least one reserve per CPU | ||
981 | */ | 986 | */ |
982 | for_each_online_cpu(i) { | 987 | for_each_online_cpu(i) { |
983 | entry = &per_cpu(npsf_cpu_entries, i); | 988 | entry = &per_cpu(npsf_cpu_entries, i); |