Re: [PATCH v5 2/5] binder: Make shrinker rely solely on per-VMA lock

From: Alice Ryhl

Date: Wed Aug 12 2026 - 06:51:37 EST


On Tue, Aug 11, 2026 at 06:10:52PM -0700, Suren Baghdasaryan wrote:
> return LRU_REMOVED_RETRY;
>
> -err_invalid_vma:
> mutex_unlock(&alloc->mutex);

With the err_invalid_vma label removed, this call to mutex_unlock() is
no longer reachable as it comes right after a 'return' statement.

Alice