* [PATCH 10/11] drivers/video/mbx: Correct NULL test
@ 2010-02-06 8:44 Julia Lawall
2010-02-09 19:18 ` James Simmons
0 siblings, 1 reply; 2+ messages in thread
From: Julia Lawall @ 2010-02-06 8:44 UTC (permalink / raw)
To: linux-fbdev, linux-kernel, kernel-janitors
From: Julia Lawall <julia@diku.dk>
Test the value that was just allocated rather than the previously tested one.
A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)
// <smpl>
@r@
expression *x;
expression e;
identifier l;
@@
if (x = NULL || ...) {
... when forall
return ...; }
... when != goto l;
when != x = e
when != &x
*x = NULL
// </smpl>
Signed-off-by: Julia Lawall <julia@diku.dk>
---
drivers/video/mbx/mbxfb.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/video/mbx/mbxfb.c b/drivers/video/mbx/mbxfb.c
index afea9ab..7140405 100644
--- a/drivers/video/mbx/mbxfb.c
+++ b/drivers/video/mbx/mbxfb.c
@@ -950,7 +950,7 @@ static int __devinit mbxfb_probe(struct platform_device *dev)
mfbi->fb_virt_addr = ioremap_nocache(mfbi->fb_phys_addr,
res_size(mfbi->fb_req));
- if (!mfbi->reg_virt_addr) {
+ if (!mfbi->fb_virt_addr) {
dev_err(&dev->dev, "failed to ioremap frame buffer\n");
ret = -EINVAL;
goto err4;
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH 10/11] drivers/video/mbx: Correct NULL test
2010-02-06 8:44 [PATCH 10/11] drivers/video/mbx: Correct NULL test Julia Lawall
@ 2010-02-09 19:18 ` James Simmons
0 siblings, 0 replies; 2+ messages in thread
From: James Simmons @ 2010-02-09 19:18 UTC (permalink / raw)
To: Julia Lawall; +Cc: linux-fbdev, linux-kernel, kernel-janitors
> From: Julia Lawall <julia@diku.dk>
>
> Test the value that was just allocated rather than the previously tested one.
>
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @r@
> expression *x;
> expression e;
> identifier l;
> @@
>
> if (x = NULL || ...) {
> ... when forall
> return ...; }
> ... when != goto l;
> when != x = e
> when != &x
> *x = NULL
> // </smpl>
>
> Signed-off-by: Julia Lawall <julia@diku.dk>
Acked-by: James Simmons <jsimmons@infradead.org>
> ---
> drivers/video/mbx/mbxfb.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/video/mbx/mbxfb.c b/drivers/video/mbx/mbxfb.c
> index afea9ab..7140405 100644
> --- a/drivers/video/mbx/mbxfb.c
> +++ b/drivers/video/mbx/mbxfb.c
> @@ -950,7 +950,7 @@ static int __devinit mbxfb_probe(struct platform_device *dev)
>
> mfbi->fb_virt_addr = ioremap_nocache(mfbi->fb_phys_addr,
> res_size(mfbi->fb_req));
> - if (!mfbi->reg_virt_addr) {
> + if (!mfbi->fb_virt_addr) {
> dev_err(&dev->dev, "failed to ioremap frame buffer\n");
> ret = -EINVAL;
> goto err4;
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fbdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-02-09 19:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-06 8:44 [PATCH 10/11] drivers/video/mbx: Correct NULL test Julia Lawall
2010-02-09 19:18 ` James Simmons
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).