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 5c0342c commit aa5222eCopy full SHA for aa5222e
include/linux/sched.h
@@ -473,10 +473,10 @@ struct sched_dl_entity {
473
* conditions between the inactive timer handler and the wakeup
474
* code.
475
*/
476
- int dl_throttled : 1;
477
- int dl_boosted : 1;
478
- int dl_yielded : 1;
479
- int dl_non_contending : 1;
+ unsigned int dl_throttled : 1;
+ unsigned int dl_boosted : 1;
+ unsigned int dl_yielded : 1;
+ unsigned int dl_non_contending : 1;
480
481
/*
482
* Bandwidth enforcement timer. Each -deadline task has its
0 commit comments