From: Gerd Hoffmann <kraxel@redhat.com>
To: Gonglei <arei.gonglei@huawei.com>
Cc: "Huangweidong (C)" <weidong.huang@huawei.com>,
Zhanghailiang <zhang.zhanghailiang@huawei.com>,
"qemu-trivial@nongnu.org" <qemu-trivial@nongnu.org>,
"mjt@tls.msk.ru" <mjt@tls.msk.ru>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"Huangpeng (Peter)" <peter.huangpeng@huawei.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 9/9] hcd-musb: fix dereference null return value
Date: Mon, 17 Nov 2014 14:36:58 +0100 [thread overview]
Message-ID: <1416231418.608.15.camel@nilsson.home.kraxel.org> (raw)
In-Reply-To: <5469F033.5090104@huawei.com>
> >> @@ -625,8 +626,11 @@ static void musb_packet(MUSBState *s, MUSBEndPoint *ep,
> >> /* A wild guess on the FADDR semantics... */
> >> dev = usb_find_device(&s->port, ep->faddr[idx]);
> >> uep = usb_ep_get(dev, pid, ep->type[idx] & 0xf);
> >> - usb_packet_setup(&ep->packey[dir].p, pid, uep, 0,
> >> - (dev->addr << 16) | (uep->nr << 8) | pid, false, true);
> >> + id = pid;
> >> + if (uep) {
> >> + id |= (dev->addr << 16) | (uep->nr << 8);
> >> + }
> >> + usb_packet_setup(&ep->packey[dir].p, pid, uep, 0, id, false, true);
> >> usb_packet_addbuf(&ep->packey[dir].p, ep->buf[idx], len);
> >> ep->packey[dir].ep = ep;
> >> ep->packey[dir].dir = dir;
> >
> > This is a good approach, id is just a identifying. Thanks,
> >
>
> Let me split the patch from this series as a separate patch
> and add Paolo's signed-off-by.
>
> Asking for Gerd's reviewing, Thanks.
Looks good to me.
cheers,
Gerd
next prev parent reply other threads:[~2014-11-17 13:37 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-11-15 10:06 [Qemu-devel] [PATCH 0/9] Fix Coverity warning reports arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 1/9] l2tpv3: fix fd leak arei.gonglei
2014-11-17 16:51 ` Stefan Hajnoczi
2014-11-17 16:58 ` Michael Tokarev
2014-11-18 7:50 ` Markus Armbruster
2014-11-18 8:07 ` Gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 2/9] mips_mipssim: fix use-after-free for filename arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 3/9] qga: fix false negative argument passing arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 4/9] loader: fix NEGATIVE_RETURNS arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 5/9] nvme: remove superfluous check arei.gonglei
2014-11-17 16:55 ` Stefan Hajnoczi
2014-11-15 10:06 ` [Qemu-devel] [PATCH 6/9] acl: fix memory leak arei.gonglei
2014-11-17 10:48 ` Paolo Bonzini
2014-11-15 10:06 ` [Qemu-devel] [PATCH 7/9] qemu-char: fix MISSING_COMMA arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 8/9] shpc: fix dead code arei.gonglei
2014-11-15 10:06 ` [Qemu-devel] [PATCH 9/9] hcd-musb: fix dereference null return value arei.gonglei
2014-11-17 10:58 ` Paolo Bonzini
2014-11-17 11:18 ` Gonglei
2014-11-17 12:55 ` Gonglei
2014-11-17 13:36 ` Gerd Hoffmann [this message]
2014-11-17 13:39 ` Paolo Bonzini
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=1416231418.608.15.camel@nilsson.home.kraxel.org \
--to=kraxel@redhat.com \
--cc=arei.gonglei@huawei.com \
--cc=mjt@tls.msk.ru \
--cc=pbonzini@redhat.com \
--cc=peter.huangpeng@huawei.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-trivial@nongnu.org \
--cc=weidong.huang@huawei.com \
--cc=zhang.zhanghailiang@huawei.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;
as well as URLs for NNTP newsgroup(s).