aboutsummaryrefslogtreecommitdiffstats
path: root/litmus/pgm.c
diff options
context:
space:
mode:
Diffstat (limited to 'litmus/pgm.c')
-rw-r--r--litmus/pgm.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/litmus/pgm.c b/litmus/pgm.c
index f8b857de8118..2bfa8d0843c1 100644
--- a/litmus/pgm.c
+++ b/litmus/pgm.c
@@ -4,6 +4,7 @@
4#include <linux/sched.h> 4#include <linux/sched.h>
5#include <litmus/litmus.h> 5#include <litmus/litmus.h>
6#include <litmus/pgm.h> 6#include <litmus/pgm.h>
7#include <litmus/sched_trace.h>
7 8
8/* Only readjust release/deadline if difference is over a given threshold. 9/* Only readjust release/deadline if difference is over a given threshold.
9 It's a weak method for accounting overheads. Ideally, we'd know the last 10 It's a weak method for accounting overheads. Ideally, we'd know the last
@@ -51,4 +52,6 @@ void setup_pgm_release(struct task_struct* t)
51 "cur time = %llu, release time = %llu\n", 52 "cur time = %llu, release time = %llu\n",
52 now, tsk_rt(t)->job_params.release); 53 now, tsk_rt(t)->job_params.release);
53 } 54 }
55
56 sched_trace_pgm_release(t);
54} 57}