All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 6/7] staging: lustre: obdclass: expand the GOTO macro + break
@ 2014-09-07 16:18 ` Julia Lawall
  0 siblings, 0 replies; 19+ messages in thread
From: Julia Lawall @ 2014-09-07 16:18 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: kernel-janitors, devel, linux-kernel, Dilger, Andreas, Drokin,
	Oleg, Peng Tao

From: Julia Lawall <Julia.Lawall@lip6.fr>

The semantic patch that makes this change is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@@
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;
// </smpl>

Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

---
 drivers/staging/lustre/lustre/obdclass/obd_config.c |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/drivers/staging/lustre/lustre/obdclass/obd_config.c b/drivers/staging/lustre/lustre/obdclass/obd_config.c
index f41695d..8a9752f 100644
--- a/drivers/staging/lustre/lustre/obdclass/obd_config.c
+++ b/drivers/staging/lustre/lustre/obdclass/obd_config.c
@@ -1226,25 +1226,25 @@ int class_process_config(struct lustre_cfg *lcfg)
 	}
 	case LCFG_POOL_NEW: {
 		err = obd_pool_new(obd, lustre_cfg_string(lcfg, 2));
-		GOTO(out, err = 0);
-		break;
+		err = 0;
+		goto out;
 	}
 	case LCFG_POOL_ADD: {
 		err = obd_pool_add(obd, lustre_cfg_string(lcfg, 2),
 				   lustre_cfg_string(lcfg, 3));
-		GOTO(out, err = 0);
-		break;
+		err = 0;
+		goto out;
 	}
 	case LCFG_POOL_REM: {
 		err = obd_pool_rem(obd, lustre_cfg_string(lcfg, 2),
 				   lustre_cfg_string(lcfg, 3));
-		GOTO(out, err = 0);
-		break;
+		err = 0;
+		goto out;
 	}
 	case LCFG_POOL_DEL: {
 		err = obd_pool_del(obd, lustre_cfg_string(lcfg, 2));
-		GOTO(out, err = 0);
-		break;
+		err = 0;
+		goto out;
 	}
 	default: {
 		err = obd_process_config(obd, sizeof(*lcfg), lcfg);

^ permalink raw reply related	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2014-09-10 14:53 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-07 16:18 [PATCH 6/7] staging: lustre: obdclass: expand the GOTO macro + break Julia Lawall
2014-09-07 16:18 ` Julia Lawall
2014-09-09 12:54 ` Dan Carpenter
2014-09-09 12:54   ` Dan Carpenter
2014-09-09 13:05   ` Julia Lawall
2014-09-09 13:05     ` Julia Lawall
2014-09-09 13:37   ` Drokin, Oleg
2014-09-09 13:37     ` Drokin, Oleg
2014-09-09 20:38   ` [PATCH] checkpatch: Warn on macros with flow control statements Joe Perches
2014-09-09 20:38     ` Joe Perches
2014-09-10  8:43     ` Dan Carpenter
2014-09-10  8:43       ` Dan Carpenter
2014-09-10 13:55       ` Joe Perches
2014-09-10 13:55         ` Joe Perches
2014-09-10 14:06         ` Julia Lawall
2014-09-10 14:06           ` Julia Lawall
2014-09-10 14:36           ` Joe Perches
2014-09-10 14:36             ` Joe Perches
2014-09-10 14:52             ` Drokin, Oleg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.