On Tue, Nov 21, 2017 at 11:44:05AM +0100, Jiri Kosina wrote:
> --- a/include/linux/sched.h
> +++ b/include/linux/sched.h
> @@ -473,10 +473,10 @@ struct sched_dl_entity {
>        * conditions between the inactive timer handler and the wakeup
>        * code.
>        */
> -     int                             dl_throttled      : 1;
> -     int                             dl_boosted        : 1;
> -     int                             dl_yielded        : 1;
> -     int                             dl_non_contending : 1;
> +     bool                            dl_throttled;
> +     bool                            dl_boosted;
> +     bool                            dl_yielded;
> +     bool                            dl_non_contending;

NAK, don't ever use _Bool in composite types.

Reply via email to