aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus/sched_trace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/litmus/sched_trace.h')
-rw-r--r--include/litmus/sched_trace.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/litmus/sched_trace.h b/include/litmus/sched_trace.h
index 0785db39b2fc..9a7e6fa1e6b6 100644
--- a/include/litmus/sched_trace.h
+++ b/include/litmus/sched_trace.h
@@ -52,11 +52,10 @@ struct st_switch_away_data { /* A process was switched away from on a given CPU.
52 52
53struct st_completion_data { /* A job completed. */ 53struct st_completion_data { /* A job completed. */
54 u64 when; 54 u64 when;
55 u8 forced:1; /* Set to 1 if job overran and kernel advanced to the 55 u64 backlog_remaining:62;
56 * next task automatically; set to 0 otherwise. 56 u8 was_backlog_job:1;
57 */ 57 u8 forced:1; /* Set to 1 if job overran and kernel advanced to the
58 u8 __uflags:7; 58 * next task automatically; set to 0 otherwise. */
59 u8 __unused[7];
60} __attribute__((packed)); 59} __attribute__((packed));
61 60
62struct st_block_data { /* A task blocks. */ 61struct st_block_data { /* A task blocks. */