From: Julia Lawall Date: Sun, 7 Sep 2014 16:18:34 +0000 (+0200) Subject: staging: lustre: obdclass: expand the GOTO macro + break X-Git-Tag: fixes-for-v3.18-merge-window~15^2~771 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55df5fad56cdb87f221975d5a0d09137bf53c687;p=pandora-kernel.git staging: lustre: obdclass: expand the GOTO macro + break The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ 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; // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed