Re: [PATCH v16 06/10] unwind deferred: Use bitmask to determine which callbacks to call

From: Steven Rostedt

Date: Sun Sep 21 2025 - 19:47:59 EST


On Fri, 19 Sep 2025 18:00:30 -0700
Josh Poimboeuf <jpoimboe@xxxxxxxxxx> wrote:

> > + return old & bit;
>
> Per the function comment, the function returns 0, 1, or negative. So
> this should be
>
> return !!(old & bit)
>
> right?

Right. Thanks!

-- Steve