From: Julia Lawall Date: Mon, 1 Sep 2014 20:21:09 +0000 (+0200) Subject: staging: lustre: ldlm: expand the GOTO macro X-Git-Tag: fixes-for-v3.18-merge-window~15^2~861 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1c0d446da8e0255a0edb348325cac293e9eff4c;p=pandora-kernel.git staging: lustre: ldlm: expand the GOTO macro The semantic patch that makes this change is as follows: (http://coccinelle.lip6.fr/) // @@ identifier lbl; identifier rc; constant c; @@ - GOTO(lbl,\(rc\|c\)); + goto lbl; @@ identifier lbl; expression rc; @@ - GOTO(lbl,rc); + rc; + goto lbl; // Signed-off-by: Julia Lawall Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed