From fc5c7f3dd68b4ce1d7bfac82b30c7d7a13e609b1 Mon Sep 17 00:00:00 2001 From: Julia Lawall Date: Sun, 7 Sep 2014 18:18:30 +0200 Subject: [PATCH] staging: lustre: libcfs: 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