Re: [PATCH 2/10] arch/powerpc: introduce missing kfree

2009-08-06 Thread Kumar Gala
On Aug 2, 2009, at 3:44 AM, Julia Lawall wrote: From: Julia Lawall ju...@diku.dk Error handling code following a kzalloc should free the allocated data. The semantic match that finds the problem is as follows: (http://www.emn.fr/x-info/coccinelle/) // smpl @r exists@ local idexpression

[PATCH 2/10] arch/powerpc: introduce missing kfree

2009-08-02 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk Error handling code following a kzalloc should free the allocated data. The semantic match that finds the problem is as follows: (http://www.emn.fr/x-info/coccinelle/) // smpl @r exists@ local idexpression x; statement S; expression E; identifier f,f1,l;

[PATCH 2/10] arch/powerpc: introduce missing kfree

2009-08-01 Thread Julia Lawall
From: Julia Lawall ju...@diku.dk Error handling code following a kzalloc should free the allocated data. The semantic match that finds the problem is as follows: (http://www.emn.fr/x-info/coccinelle/) // smpl @r exists@ local idexpression x; statement S; expression E; identifier f,f1,l;