mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH v2 1/3] Staging: lustre: Replace comma with a semicolon
@ 2015-08-04 13:06 Shraddha Barke
  2015-08-04 13:06 ` [PATCH v2 2/3] Staging: lustre: Replace comma between expression statements by " Shraddha Barke
  2015-08-04 13:06 ` [PATCH v2 3/3] Staging: netlogic: Replace comma with " Shraddha Barke
  0 siblings, 2 replies; 5+ messages in thread
From: Shraddha Barke @ 2015-08-04 13:06 UTC (permalink / raw)
  To: linux-kernel, Julia Lawall, Joe Perches, Jiayi Ye,
	Greg Kroah-Hartman, Andreas Dilger, Oleg Drokin, devel,
	HPDD-discuss
  Cc: Shraddha Barke

Replace comma between expression statements by a semicolon.
The semantic patch used is as follows:

@@
expression e1,e2;
@@
e1
- ,
+ ;
e2;
---
Changes in v2:
  -No changes made.
 
 drivers/staging/lustre/lustre/libcfs/libcfs_string.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/lustre/lustre/libcfs/libcfs_string.c b/drivers/staging/lustre/lustre/libcfs/libcfs_string.c
index 4dde8e0..efe5e66 100644
--- a/drivers/staging/lustre/lustre/libcfs/libcfs_string.c
+++ b/drivers/staging/lustre/lustre/libcfs/libcfs_string.c
@@ -400,7 +400,7 @@ cfs_expr_list_free(struct cfs_expr_list *expr_list)
 		struct cfs_range_expr *expr;
 
 		expr = list_entry(expr_list->el_exprs.next,
-				      struct cfs_range_expr, re_link),
+				      struct cfs_range_expr, re_link);
 		list_del(&expr->re_link);
 		LIBCFS_FREE(expr, sizeof(*expr));
 	}
-- 
2.1.0


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

* [PATCH v2 2/3] Staging: lustre: Replace comma between expression statements by a semicolon.
  2015-08-04 13:06 [PATCH v2 1/3] Staging: lustre: Replace comma with a semicolon Shraddha Barke
@ 2015-08-04 13:06 ` Shraddha Barke
  2015-08-04 13:34   ` Julia Lawall
  2015-08-04 13:06 ` [PATCH v2 3/3] Staging: netlogic: Replace comma with " Shraddha Barke
  1 sibling, 1 reply; 5+ messages in thread
From: Shraddha Barke @ 2015-08-04 13:06 UTC (permalink / raw)
  To: linux-kernel, Julia Lawall, Joe Perches, Jiayi Ye,
	Greg Kroah-Hartman, Andreas Dilger, Oleg Drokin, devel,
	HPDD-discuss
  Cc: Shraddha Barke

Replace comma between expression statements by a semicolon.
The semantic patch used is as follows:

@@
expression e1,e2;
@@
e1
- ,
+ ;
e2;
---
Changes in v2:
  -Make subject more clearer.

 drivers/staging/lustre/lustre/mgc/mgc_request.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/lustre/lustre/mgc/mgc_request.c b/drivers/staging/lustre/lustre/mgc/mgc_request.c
index 562bd95..019ee2f 100644
--- a/drivers/staging/lustre/lustre/mgc/mgc_request.c
+++ b/drivers/staging/lustre/lustre/mgc/mgc_request.c
@@ -1232,7 +1232,7 @@ static int mgc_apply_recover_logs(struct obd_device *mgc,
 		pos += sprintf(obdname + pos, "-%s%04x",
 				  is_ost ? "OST" : "MDT", entry->mne_index);
 
-		cname = is_ost ? "osc" : "mdc",
+		cname = is_ost ? "osc" : "mdc";
 		pos += sprintf(obdname + pos, "-%s-%s", cname, inst);
 		lustre_cfg_bufs_reset(&bufs, obdname);
 
-- 
2.1.0


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

* [PATCH v2 3/3] Staging: netlogic: Replace comma with a semicolon
  2015-08-04 13:06 [PATCH v2 1/3] Staging: lustre: Replace comma with a semicolon Shraddha Barke
  2015-08-04 13:06 ` [PATCH v2 2/3] Staging: lustre: Replace comma between expression statements by " Shraddha Barke
@ 2015-08-04 13:06 ` Shraddha Barke
  1 sibling, 0 replies; 5+ messages in thread
From: Shraddha Barke @ 2015-08-04 13:06 UTC (permalink / raw)
  To: linux-kernel, Julia Lawall, Joe Perches, Jiayi Ye,
	Greg Kroah-Hartman, Andreas Dilger, Oleg Drokin, devel,
	HPDD-discuss
  Cc: Shraddha Barke

Replace comma between expression statements by a semicolon.
The semantic patch used is as follows:

@@
expression e1,e2;
@@
e1
- ,
+ ;
e2;
---
Changes in v2:
  -No changes made.

 drivers/staging/netlogic/platform_net.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/staging/netlogic/platform_net.c b/drivers/staging/netlogic/platform_net.c
index 77c3c35..e914147 100644
--- a/drivers/staging/netlogic/platform_net.c
+++ b/drivers/staging/netlogic/platform_net.c
@@ -163,7 +163,7 @@ static void xls_gmac_init(void)
 	switch (nlm_prom_info.board_major_version) {
 	case 12:
 		/* first block RGMII or XAUI, use RGMII */
-		ndata0.phy_interface = PHY_INTERFACE_MODE_RGMII,
+		ndata0.phy_interface = PHY_INTERFACE_MODE_RGMII;
 		ndata0.tx_stnid[0] = FMN_STNID_GMAC0_TX0;
 		ndata0.phy_addr[0] = 0;
 
-- 
2.1.0


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

* Re: [PATCH v2 2/3] Staging: lustre: Replace comma between expression statements by a semicolon.
  2015-08-04 13:06 ` [PATCH v2 2/3] Staging: lustre: Replace comma between expression statements by " Shraddha Barke
@ 2015-08-04 13:34   ` Julia Lawall
       [not found]     ` <CAO393AAyJ-OTz+yfGsHdaKeyyXT3Y8EMoxgVJzoZCjXRB=UJGg@mail.gmail.com>
  0 siblings, 1 reply; 5+ messages in thread
From: Julia Lawall @ 2015-08-04 13:34 UTC (permalink / raw)
  To: Shraddha Barke
  Cc: linux-kernel, Julia Lawall, Joe Perches, Jiayi Ye,
	Greg Kroah-Hartman, Andreas Dilger, Oleg Drokin, devel,
	HPDD-discuss

Sorry not to have been more clear.  The original subject text was OK.
Tehway to differentiate between the patches would be to put Staging:
lustre: mgc: in thi case, and Staging: lustre: libcfs: in the other one.

julia

On Tue, 4 Aug 2015, Shraddha Barke wrote:

> Replace comma between expression statements by a semicolon.
> The semantic patch used is as follows:
>
> @@
> expression e1,e2;
> @@
> e1
> - ,
> + ;
> e2;
> ---
> Changes in v2:
>   -Make subject more clearer.
>
>  drivers/staging/lustre/lustre/mgc/mgc_request.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/staging/lustre/lustre/mgc/mgc_request.c b/drivers/staging/lustre/lustre/mgc/mgc_request.c
> index 562bd95..019ee2f 100644
> --- a/drivers/staging/lustre/lustre/mgc/mgc_request.c
> +++ b/drivers/staging/lustre/lustre/mgc/mgc_request.c
> @@ -1232,7 +1232,7 @@ static int mgc_apply_recover_logs(struct obd_device *mgc,
>  		pos += sprintf(obdname + pos, "-%s%04x",
>  				  is_ost ? "OST" : "MDT", entry->mne_index);
>
> -		cname = is_ost ? "osc" : "mdc",
> +		cname = is_ost ? "osc" : "mdc";
>  		pos += sprintf(obdname + pos, "-%s-%s", cname, inst);
>  		lustre_cfg_bufs_reset(&bufs, obdname);
>
> --
> 2.1.0
>
>

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

* Re: [PATCH v2 2/3] Staging: lustre: Replace comma between expression statements by a semicolon.
       [not found]     ` <CAO393AAyJ-OTz+yfGsHdaKeyyXT3Y8EMoxgVJzoZCjXRB=UJGg@mail.gmail.com>
@ 2015-08-04 13:45       ` Julia Lawall
  0 siblings, 0 replies; 5+ messages in thread
From: Julia Lawall @ 2015-08-04 13:45 UTC (permalink / raw)
  To: Shraddha Barke
  Cc: Julia Lawall, linux-kernel, Joe Perches, Jiayi Ye,
	Greg Kroah-Hartman, Andreas Dilger, Oleg Drokin, devel,
	HPDD-discuss

[-- Attachment #1: Type: TEXT/PLAIN, Size: 192 bytes --]

On Tue, 4 Aug 2015, Shraddha Barke wrote:

> Alright .
> So now I should send a version 3 right ?

Yes.

>  Was there any other issue in the way I sent this version ?

I think it's ok.

julia

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

end of thread, other threads:[~2015-08-04 13:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-08-04 13:06 [PATCH v2 1/3] Staging: lustre: Replace comma with a semicolon Shraddha Barke
2015-08-04 13:06 ` [PATCH v2 2/3] Staging: lustre: Replace comma between expression statements by " Shraddha Barke
2015-08-04 13:34   ` Julia Lawall
     [not found]     ` <CAO393AAyJ-OTz+yfGsHdaKeyyXT3Y8EMoxgVJzoZCjXRB=UJGg@mail.gmail.com>
2015-08-04 13:45       ` Julia Lawall
2015-08-04 13:06 ` [PATCH v2 3/3] Staging: netlogic: Replace comma with " Shraddha Barke

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®