diff options
author | Namhoon Kim <namhoonk@cs.unc.edu> | 2017-04-06 21:33:14 -0400 |
---|---|---|
committer | Namhoon Kim <namhoonk@cs.unc.edu> | 2017-04-06 21:33:14 -0400 |
commit | e388e1abf18b4753c4836513fc3047a48a768f0a (patch) | |
tree | 937b35d3ca27ce9bfd954e9adb2fed13672cadbd | |
parent | c6ddbe3b47ecd9ae49dc9bd4649c61937b187227 (diff) |
Change st_completion_data for the compatibility
-rw-r--r-- | include/litmus/sched_trace.h | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/include/litmus/sched_trace.h b/include/litmus/sched_trace.h index dfc496f3054a..c924716a0dbf 100644 --- a/include/litmus/sched_trace.h +++ b/include/litmus/sched_trace.h | |||
@@ -50,13 +50,12 @@ struct st_switch_away_data { /* A process was switched away from on a given CPU. | |||
50 | u64 exec_time; | 50 | u64 exec_time; |
51 | }; | 51 | }; |
52 | 52 | ||
53 | struct st_completion_data { /* A job completed. */ | 53 | struct 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 | u8 forced:1; /* Set to 1 if job overran and kernel advanced to the |
56 | * next task automatically; set to 0 otherwise. | 56 | * next job automatically; set to 0 otherwise. |
57 | */ | 57 | */ |
58 | u8 __uflags:7; | 58 | u64 exec_time:63; /* Actual execution time of job. */ |
59 | u8 __unused[7]; | ||
60 | }; | 59 | }; |
61 | 60 | ||
62 | struct st_block_data { /* A task blocks. */ | 61 | struct st_block_data { /* A task blocks. */ |