diff options
-rw-r--r-- | include/litmus/rt_param.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/litmus/rt_param.h b/include/litmus/rt_param.h index e26535b32bd1..060b5d745213 100644 --- a/include/litmus/rt_param.h +++ b/include/litmus/rt_param.h | |||
@@ -249,7 +249,10 @@ struct rt_param { | |||
249 | volatile int linked_on; | 249 | volatile int linked_on; |
250 | 250 | ||
251 | /* PFAIR/PD^2 state. Allocated on demand. */ | 251 | /* PFAIR/PD^2 state. Allocated on demand. */ |
252 | struct pfair_param* pfair; | 252 | union { |
253 | void *plugin_state; | ||
254 | struct pfair_param *pfair; | ||
255 | }; | ||
253 | 256 | ||
254 | /* Fields saved before BE->RT transition. | 257 | /* Fields saved before BE->RT transition. |
255 | */ | 258 | */ |