From: Greg KH <gregkh@linuxfoundation.org>
To: ReBeating <rebeating@163.com>
Cc: linux-usb@vger.kernel.org
Subject: Re: [PATCH] usb: cdns2: fix memory double free in cdns2_gadget_giveback
Date: Wed, 7 Jan 2026 16:05:06 +0100 [thread overview]
Message-ID: <2026010753-ship-paying-dd30@gregkh> (raw)
In-Reply-To: <20251226031713.1682-1-rebeating@163.com>
On Fri, Dec 26, 2025 at 11:17:13AM +0800, ReBeating wrote:
> A patch similar to commit 5fd9e45f1ebc("usb: cdns3: fix memory double
> free when handle zero packet").
>
> As 5fd9e45f1ebc points out, the cdns2_gadget_giveback() function also has
> the same memory double free issue when handling zero-length packets.
>
> Add check for usb_gadget_giveback_request() to avoid double free of memory.
> If it's additional zero length packet request, do not call
> usb_gadget_giveback_request().
>
> Signed-off-by: ReBeating <rebeating@163.com>
> ---
> drivers/usb/gadget/udc/cdns2/cdns2-gadget.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/usb/gadget/udc/cdns2/cdns2-gadget.c b/drivers/usb/gadget/udc/cdns2/cdns2-gadget.c
> index 7e69944ef18a..4f7898c2e364 100644
> --- a/drivers/usb/gadget/udc/cdns2/cdns2-gadget.c
> +++ b/drivers/usb/gadget/udc/cdns2/cdns2-gadget.c
> @@ -253,7 +253,7 @@ void cdns2_gadget_giveback(struct cdns2_endpoint *pep,
>
> trace_cdns2_request_giveback(preq);
>
> - if (request->complete) {
> + if (request->complete && request->buf != pdev->zlp_buf) {
> spin_unlock(&pdev->lock);
> usb_gadget_giveback_request(&pep->endpoint, request);
> spin_lock(&pdev->lock);
> --
> 2.34.1
>
>
Hi,
This is the friendly patch-bot of Greg Kroah-Hartman. You have sent him
a patch that has triggered this response. He used to manually respond
to these common problems, but in order to save his sanity (he kept
writing the same thing over and over, yet to different people), I was
created. Hopefully you will not take offence and will fix the problem
in your patch and resubmit it so that it can be accepted into the Linux
kernel tree.
You are receiving this message because of the following common error(s)
as indicated below:
- It looks like you did not use your "real" name for the patch on either
the Signed-off-by: line, or the From: line (both of which have to
match). Please read the kernel file,
Documentation/process/submitting-patches.rst for how to do this
correctly.
If you wish to discuss this problem further, or you have questions about
how to resolve this issue, please feel free to respond to this email and
Greg will reply once he has dug out from the pending patches received
from other developers.
thanks,
greg k-h's patch email bot
next prev parent reply other threads:[~2026-01-07 15:05 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-12-26 3:17 [PATCH] usb: cdns2: fix memory double free in cdns2_gadget_giveback ReBeating
2026-01-07 15:05 ` Greg KH [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-09-08 15:04 Chen Yufeng
2025-10-08 11:15 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2026010753-ship-paying-dd30@gregkh \
--to=gregkh@linuxfoundation.org \
--cc=linux-usb@vger.kernel.org \
--cc=rebeating@163.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox