Re: [PATCH net-next v5 1/2] nfc: llcp_core: Hold a ref to llcp_local->dev when holding a ref to llcp_local

From: Siddh Raman Pant
Date: Thu Dec 14 2023 - 12:25:18 EST


On Wed, 13 Dec 2023 13:10:16 +0530, Krzysztof Kozlowski wrote:
> > - if (sk_acceptq_is_full(parent)) {
> > - reason = LLCP_DM_REJ;
> > - release_sock(&sock->sk);
> > - sock_put(&sock->sk);
> > - goto fail;
> > - }
> > + if (sk_acceptq_is_full(parent))
> > + goto fail_put_sock;
>
> I would argue that you reshuffle here more code than needed for the fix.
>
> This should fix only missing dev reference, not reshuffle code. It's a
> bugfix, not cleanup.

So this should not be done? I did it because you told to extend the
cleanup label in v3 discussion.

Thanks,
Siddh