We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0944c commit 799ba82Copy full SHA for 799ba82
include/linux/sched.h
@@ -474,10 +474,10 @@ struct sched_dl_entity {
474
* conditions between the inactive timer handler and the wakeup
475
* code.
476
*/
477
- int dl_throttled;
478
- int dl_boosted;
479
- int dl_yielded;
480
- int dl_non_contending;
+ int dl_throttled : 1;
+ int dl_boosted : 1;
+ int dl_yielded : 1;
+ int dl_non_contending : 1;
481
482
/*
483
* Bandwidth enforcement timer. Each -deadline task has its
0 commit comments