commit | 55df5fad56cdb87f221975d5a0d09137bf53c687 | [log] [tgz] |
---|---|---|
author | Julia Lawall <Julia.Lawall@lip6.fr> | Sun Sep 07 18:18:34 2014 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Sep 08 12:46:32 2014 -0700 |
tree | 3cd6c641132eca014117a62304f8a49540c26e95 | |
parent | 09c8a87ce62e858a048ca958faffc16acacfbc4e [diff] |
staging: lustre: obdclass: expand the GOTO macro + break The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // <smpl> @@ identifier lbl,rc,f; constant c; @@ - GOTO(lbl,\(rc\|rc->f\|c\)); - break; + goto lbl; @@ identifier lbl; expression rc; @@ - GOTO(lbl,rc); - break; + rc; + goto lbl; // </smpl> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>