Re: [PATCH 3/8] mm: use zone lock guard in unreserve_highatomic_pageblock()
From: Steven Rostedt
Date: Fri Mar 06 2026 - 11:15:25 EST
On Fri, 6 Mar 2026 16:05:37 +0000
Dmitry Ilvokhin <d@xxxxxxxxxxxx> wrote:
> */
> WARN_ON_ONCE(ret == -1);
> if (ret > 0) {
> - zone_unlock_irqrestore(zone, flags);
> return ret;
> }
You can lose the braces here too:
if (ret > 0)
return ret;
-- Steve
> }
> - zone_unlock_irqrestore(zone, flags);
> }
>