aboutsummaryrefslogtreecommitdiffstats
path: root/arch/s390/kernel/debug.c
diff options
context:
space:
mode:
authorJulia Lawall <julia@diku.dk>2008-12-25 07:39:30 -0500
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2008-12-25 07:39:17 -0500
commitacfa922c5a00eca0abac0e2b6d6666c606c27345 (patch)
tree1fab727cb7ecebf8eb1868c096ba4d646654720c /arch/s390/kernel/debug.c
parent0946100f566d04cc93e86654f3ba588ee94b3f4c (diff)
[S390] s390: Remove redundant test
The loop above the modified code only terminates when rc is a valid pointer. A simplified version of the semantic patch that makes this change is as follows: (http://www.emn.fr/x-info/coccinelle/) // <smpl> @r exists@ local idexpression x; expression E; position p1,p2; @@ if (x@p1 == NULL || ...) { ... when forall return ...; } ... when != \(x=E\|x--\|x++\|--x\|++x\|x-=E\|x+=E\|x|=E\|x&=E\|&x\) ( x@p2 == NULL | x@p2 != NULL ) // another path to the test that is not through p1? @s exists@ local idexpression r.x; position r.p1,r.p2; @@ ... when != x@p1 ( x@p2 == NULL | x@p2 != NULL ) @fix depends on !s@ position r.p1,r.p2; expression x,E; statement S1,S2; @@ ( - if ((x@p2 != NULL) || ...) S1 | - if ((x@p2 == NULL) && ...) S1 | - BUG_ON(x@p2 == NULL); ) // </smpl> Signed-off-by: Julia Lawall <julia@diku.dk> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel/debug.c')
-rw-r--r--arch/s390/kernel/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/s390/kernel/debug.c b/arch/s390/kernel/debug.c
index d80fcd4a7fe..21c90374a58 100644
--- a/arch/s390/kernel/debug.c
+++ b/arch/s390/kernel/debug.c
@@ -388,7 +388,7 @@ debug_info_copy(debug_info_t* in, int mode)
388 debug_info_free(rc); 388 debug_info_free(rc);
389 } while (1); 389 } while (1);
390 390
391 if(!rc || (mode == NO_AREAS)) 391 if (mode == NO_AREAS)
392 goto out; 392 goto out;
393 393
394 for(i = 0; i < in->nr_areas; i++){ 394 for(i = 0; i < in->nr_areas; i++){