From: Jiayi Ye Date: Mon, 20 Oct 2014 11:52:03 +0000 (+0800) Subject: staging: lustre: lustre: obdecho: expand the GOTO macro in echo_client.c X-Git-Tag: omap-for-v3.19/fixes-rc1~73^2~1056 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abb368abf76059e07967808ef5da9f32d2b760ae;p=pandora-kernel.git staging: lustre: lustre: obdecho: expand the GOTO macro in echo_client.c The GOTO macro is not standard in Linux. The following Coccinelle semantic patch was used to expand the GOTO macro. @@ 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: Jiayi Ye Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed