linux/drivers/gpu/drm/ttm
Peter Senna Tschudin 33cce6e980 drivers/gpu/drm/ttm/ttm_page_alloc_dma.c: Remove useless kfree
Remove useless kfree() and clean up code related to the removal.

The semantic patch that finds this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@r exists@
position p1,p2;
expression x;
@@

if (x@p1 == NULL) { ... kfree@p2(x); ... return ...; }

@unchanged exists@
position r.p1,r.p2;
expression e <= r.x,x,e1;
iterator I;
statement S;
@@

if (x@p1 == NULL) { ... when != I(x,...) S
                        when != e = e1
                        when != e += e1
                        when != e -= e1
                        when != ++e
                        when != --e
                        when != e++
                        when != e--
                        when != &e
   kfree@p2(x); ... return ...; }

@ok depends on unchanged exists@
position any r.p1;
position r.p2;
expression x;
@@

... when != true x@p1 == NULL
kfree@p2(x);

@depends on !ok && unchanged@
position r.p2;
expression x;
@@

*kfree@p2(x);
// </smpl>

Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
2012-10-02 09:33:26 +10:00
..
Makefile drm/ttm: provide dma aware ttm page pool code V9 2011-12-06 10:39:33 +00:00
ttm_agp_backend.c drm/ttm: Use pr_fmt and pr_<level> 2012-03-20 08:45:35 +00:00
ttm_bo.c drm/ttm: Fix buffer object metadata accounting regression v2 2012-06-12 15:57:47 +01:00
ttm_bo_manager.c drm/ttm: Use private locks for the default bo range manager 2010-11-09 13:33:24 +10:00
ttm_bo_util.c drm: Handle io prot correctly for MIPS. 2012-08-24 09:41:05 +10:00
ttm_bo_vm.c drm/ttm: Use pr_fmt and pr_<level> 2012-03-20 08:45:35 +00:00
ttm_execbuf_util.c Revert "drm/ttm: add a way to bo_wait for either the last read or last write" 2011-10-27 18:28:37 +02:00
ttm_lock.c atomic: use <linux/atomic.h> 2011-07-26 16:49:47 -07:00
ttm_memory.c drm/ttm: Use pr_fmt and pr_<level> 2012-03-20 08:45:35 +00:00
ttm_module.c drm: move ttm global code to core drm 2010-08-04 09:46:06 +10:00
ttm_object.c drm/ttm: Use pr_fmt and pr_<level> 2012-03-20 08:45:35 +00:00
ttm_page_alloc.c drm/ttm: Use pr_fmt and pr_<level> 2012-03-20 08:45:35 +00:00
ttm_page_alloc_dma.c drivers/gpu/drm/ttm/ttm_page_alloc_dma.c: Remove useless kfree 2012-10-02 09:33:26 +10:00
ttm_tt.c gpu/drm/ttm: use copy_highpage 2012-10-02 09:26:17 +10:00