From: Thomas Dahlmann <dahlmann.thomas@arcor.de>
To: Julia Lawall <julia@diku.dk>
Cc: linux-geode@lists.infradead.org, gregkh@suse.de,
jirislaby@gmail.com, linux-kernel@vger.kernel.org,
kernel-janitors@vger.kernel.org
Subject: Re: [PATCH 3/3] drivers/usb/gadget: Drop NULL test on list_entry
Date: Fri, 14 Aug 2009 19:32:05 +0000 [thread overview]
Message-ID: <4A870E11.10705@arcor.de> (raw)
In-Reply-To: <Pine.LNX.4.64.0907120943230.17416@ask.diku.dk>
Thanks!
Applied.
Julia Lawall schrieb:
> From: Julia Lawall <julia@diku.dk>
>
> list_entry, which is an alias for container_of, cannot return NULL, as
> there is no way to add a NULL value to a doubly linked list.
>
> A simplified version of the semantic match that findds this problem is as
> follows:
> (http://www.emn.fr/x-info/coccinelle/)
>
> // <smpl>
> @r@
> expression x,E;
> statement S1,S2;
> position p,p1;
> @@
>
> *x = list_entry@p(...)
> ... when != x = E
> *if@p1 (x = NULL) S1 else S2
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>
>
> ---
> drivers/usb/gadget/amd5536udc.c | 56 +++++++++-----------
> 1 files changed, 25 insertions(+), 31 deletions(-)
>
> diff --git a/drivers/usb/gadget/amd5536udc.c b/drivers/usb/gadget/amd5536udc.c
> index 826f3ad..85f7aa9 100644
> --- a/drivers/usb/gadget/amd5536udc.c
> +++ b/drivers/usb/gadget/amd5536udc.c
> @@ -2379,40 +2379,34 @@ static irqreturn_t udc_data_in_isr(struct udc *dev, int ep_ix)
> if (!ep->cancel_transfer && !list_empty(&ep->queue)) {
> req = list_entry(ep->queue.next,
> struct udc_request, queue);
> - if (req) {
> - /*
> - * length bytes transfered
> - * check dma done of last desc. in PPBDU mode
> - */
> - if (use_dma_ppb_du) {
> - td = udc_get_last_dma_desc(req);
> - if (td) {
> - dma_done > - AMD_GETBITS(td->status,
> - UDC_DMA_IN_STS_BS);
> - /* don't care DMA done */
> - req->req.actual > - req->req.length;
> - }
> - } else {
> - /* assume all bytes transferred */
> + /*
> + * length bytes transfered
> + * check dma done of last desc. in PPBDU mode
> + */
> + if (use_dma_ppb_du) {
> + td = udc_get_last_dma_desc(req);
> + if (td) {
> + dma_done > + AMD_GETBITS(td->status,
> + UDC_DMA_IN_STS_BS);
> + /* don't care DMA done */
> req->req.actual = req->req.length;
> }
> + } else {
> + /* assume all bytes transferred */
> + req->req.actual = req->req.length;
> + }
>
> - if (req->req.actual = req->req.length) {
> - /* complete req */
> - complete_req(ep, req, 0);
> - req->dma_going = 0;
> - /* further request available ? */
> - if (list_empty(&ep->queue)) {
> - /* disable interrupt */
> - tmp = readl(
> - &dev->regs->ep_irqmsk);
> - tmp |= AMD_BIT(ep->num);
> - writel(tmp,
> - &dev->regs->ep_irqmsk);
> - }
> -
> + if (req->req.actual = req->req.length) {
> + /* complete req */
> + complete_req(ep, req, 0);
> + req->dma_going = 0;
> + /* further request available ? */
> + if (list_empty(&ep->queue)) {
> + /* disable interrupt */
> + tmp = readl(&dev->regs->ep_irqmsk);
> + tmp |= AMD_BIT(ep->num);
> + writel(tmp, &dev->regs->ep_irqmsk);
> }
> }
> }
>
WARNING: multiple messages have this Message-ID (diff)
From: Thomas Dahlmann <dahlmann.thomas@arcor.de>
To: Julia Lawall <julia@diku.dk>
Cc: linux-geode@lists.infradead.org, gregkh@suse.de,
jirislaby@gmail.com, linux-kernel@vger.kernel.org,
kernel-janitors@vger.kernel.org
Subject: Re: [PATCH 3/3] drivers/usb/gadget: Drop NULL test on list_entry result
Date: Sat, 15 Aug 2009 21:35:45 +0200 [thread overview]
Message-ID: <4A870E11.10705@arcor.de> (raw)
In-Reply-To: <Pine.LNX.4.64.0907120943230.17416@ask.diku.dk>
Thanks!
Applied.
Julia Lawall schrieb:
> From: Julia Lawall <julia@diku.dk>
>
> list_entry, which is an alias for container_of, cannot return NULL, as
> there is no way to add a NULL value to a doubly linked list.
>
> A simplified version of the semantic match that findds this problem is as
> follows:
> (http://www.emn.fr/x-info/coccinelle/)
>
> // <smpl>
> @r@
> expression x,E;
> statement S1,S2;
> position p,p1;
> @@
>
> *x = list_entry@p(...)
> ... when != x = E
> *if@p1 (x == NULL) S1 else S2
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>
>
> ---
> drivers/usb/gadget/amd5536udc.c | 56 +++++++++-----------
> 1 files changed, 25 insertions(+), 31 deletions(-)
>
> diff --git a/drivers/usb/gadget/amd5536udc.c b/drivers/usb/gadget/amd5536udc.c
> index 826f3ad..85f7aa9 100644
> --- a/drivers/usb/gadget/amd5536udc.c
> +++ b/drivers/usb/gadget/amd5536udc.c
> @@ -2379,40 +2379,34 @@ static irqreturn_t udc_data_in_isr(struct udc *dev, int ep_ix)
> if (!ep->cancel_transfer && !list_empty(&ep->queue)) {
> req = list_entry(ep->queue.next,
> struct udc_request, queue);
> - if (req) {
> - /*
> - * length bytes transfered
> - * check dma done of last desc. in PPBDU mode
> - */
> - if (use_dma_ppb_du) {
> - td = udc_get_last_dma_desc(req);
> - if (td) {
> - dma_done =
> - AMD_GETBITS(td->status,
> - UDC_DMA_IN_STS_BS);
> - /* don't care DMA done */
> - req->req.actual =
> - req->req.length;
> - }
> - } else {
> - /* assume all bytes transferred */
> + /*
> + * length bytes transfered
> + * check dma done of last desc. in PPBDU mode
> + */
> + if (use_dma_ppb_du) {
> + td = udc_get_last_dma_desc(req);
> + if (td) {
> + dma_done =
> + AMD_GETBITS(td->status,
> + UDC_DMA_IN_STS_BS);
> + /* don't care DMA done */
> req->req.actual = req->req.length;
> }
> + } else {
> + /* assume all bytes transferred */
> + req->req.actual = req->req.length;
> + }
>
> - if (req->req.actual == req->req.length) {
> - /* complete req */
> - complete_req(ep, req, 0);
> - req->dma_going = 0;
> - /* further request available ? */
> - if (list_empty(&ep->queue)) {
> - /* disable interrupt */
> - tmp = readl(
> - &dev->regs->ep_irqmsk);
> - tmp |= AMD_BIT(ep->num);
> - writel(tmp,
> - &dev->regs->ep_irqmsk);
> - }
> -
> + if (req->req.actual == req->req.length) {
> + /* complete req */
> + complete_req(ep, req, 0);
> + req->dma_going = 0;
> + /* further request available ? */
> + if (list_empty(&ep->queue)) {
> + /* disable interrupt */
> + tmp = readl(&dev->regs->ep_irqmsk);
> + tmp |= AMD_BIT(ep->num);
> + writel(tmp, &dev->regs->ep_irqmsk);
> }
> }
> }
>
next prev parent reply other threads:[~2009-08-14 19:32 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-07-12 7:43 [PATCH 3/3] drivers/usb/gadget: Drop NULL test on list_entry result Julia Lawall
2009-07-12 7:43 ` Julia Lawall
2009-08-14 19:32 ` Thomas Dahlmann [this message]
2009-08-15 19:35 ` Thomas Dahlmann
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=4A870E11.10705@arcor.de \
--to=dahlmann.thomas@arcor.de \
--cc=gregkh@suse.de \
--cc=jirislaby@gmail.com \
--cc=julia@diku.dk \
--cc=kernel-janitors@vger.kernel.org \
--cc=linux-geode@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.