On Tue, 28 Nov 2023 14:07:41 +0000
Euan Bourke <euan.bou...@intel.com> wrote:

> +static inline bool
> +get_core_bit(struct core_bits *mask, uint16_t idx)
> +{
> +     return !!(mask->bits[idx / 8] & (1 << (idx % 8)));
> +}
> +

You used CHAR_BIT above, why not here?

Reply via email to