From 4d54556f791318f49fed3b254ffd6248f35a207c Mon Sep 17 00:00:00 2001 From: Julia Lawall Date: Wed, 27 Aug 2014 23:01:34 +0200 Subject: [PATCH] staging: lustre: lmv: 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-format-patch failed