On Mon, 18 May 2026 17:56:08 +0100 Bruce Richardson <[email protected]> wrote:
> I'd also suggest changing the second part of the && to match, changing the > "!" for explicit "== 0": > > #define RTE_IS_POWER_OF_2(n) ((n) != 0 && (((n) - 1) & (n)) == 0) Was heading for the smallest possible part

