kernel-janitors.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/11] fix error return code
@ 2015-08-23  0:11 Julia Lawall
  2015-08-23  0:11 ` [PATCH 01/11] mmc: omap: " Julia Lawall
                   ` (10 more replies)
  0 siblings, 11 replies; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: linux-samsung-soc
  Cc: kernel-janitors, linux-fbdev, linux-arm-kernel, linux-kernel,
	linux-omap, linux-mmc, netdev, dri-devel, linux-input, linux-gpio

The complate semantic patch that finds this problem is as follows:
(http://coccinelle.lip6.fr/)

// <smpl>
@ok exists@
identifier f,ret,i;
expression e;
constant c;
@@

// identify a function that returns a negative return value at least once.
f(...) {
... when any
(
return -c@i;
|
ret = -c@i;
... when != ret = e
return ret;
|
if (ret < 0) { ... return ret; }
)
... when any
}

@r exists@
identifier ret,ok.f,fn;
expression e1,e2,e3,e4,e5,e6,x;
statement S,S1;
position p1,p2,p3;
@@

// identify a case where the return variable is set to a non-negative value
// and then returned in error-handling code
f(...) {
... when any
(
if@p1 (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret@p1 = 0
)
... when != \(ret = e1\|ret++\|ret--\|ret+á\|ret-á\)
    when != &ret
    when any
(
 if (<+... ret = e5 ...+>) S1
|
 if (<+... &ret ...+>) S1
|
if@p2(<+...x = fn(...)...+>)
 {
  ... when != ret = e6
      when forall
 return@p3 ret;
}
|
break;
|
x = fn(...)
... when != \(ret = e4\|ret++\|ret--\|ret+ä\|ret-ä\)
    when != &ret
(
 if (<+... ret = e3 ...+>) S
|
 if (<+... &ret ...+>) S
|
if@p2(<+...\(x != 0\|x < 0\|x = NULL\|IS_ERR(x)\)...+>)
 {
  ... when != ret = e2
      when forall
 return@p3 ret;
}
)
)
... when any
}

@printer depends on r@
position p;
identifier ok.f,pr;
constant char [] c;
@@

f(...) { <...pr@p(...,c,...)...> }

@bad0 exists@
identifier r.ret,ok.f,g != {ERR_PTR,IS_ERR};
position p != printer.p;
@@

f(...) { ... when any
g@p(...,ret,...)
... when any
 }

@bad depends on !bad0 exists@
position r.p1,r.p2;
statement S1,S2;
identifier r.ret;
expression e1;
@@

// ignore the above if there is some path where the variable is set to
// something else
(
if@p1 (\(ret < 0\|ret != 0\)) S1
|
ret@p1 = 0
)
... when any
 \(ret = e1\|ret++\|ret--\|ret+á\|ret-á\|&ret\)
... when any
if@p2(...) S2

@bad1 depends on !bad0 && !bad exists@
position r.p2;
statement S2;
identifier r.ret;
expression e1;
constant c;
@@

ret = -c
... when != \(ret = e1\|ret++\|ret--\|ret+á\|ret-á\)
    when != &ret
    when any
if@p2(...) S2

@bad2 depends on !bad0 && !bad && !bad1 exists@
position r.p1,r.p2;
identifier r.ret;
expression e1;
statement S2;
constant c;
@@

// likewise ignore it if there has been an intervening return
ret@p1 = 0
... when != if (...) { ... ret = e1 ... return ret; }
    when != if (...) { ... return -c; }
    when any
if@p2(...) S2

@script:python depends on !bad0 && !bad && !bad1 && !bad2@
p1 << r.p1;
p2 << r.p2;
p3 << r.p3;
@@

cocci.print_main("",p1)
cocci.print_secs("",p2)
cocci.print_secs("",p3)
// </smpl>

--
To unsubscribe from this list: send the line "unsubscribe kernel-janitors" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 01/11] mmc: omap: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-25 15:26   ` Ulf Hansson
  2015-08-23  0:11 ` [PATCH 02/11] soc: ti: knav_qmss_queue: " Julia Lawall
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Jarkko Lavinen
  Cc: kernel-janitors, Ulf Hansson, linux-omap, linux-mmc, linux-kernel

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/mmc/host/omap.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c
index 70dcf07..b763b11 100644
--- a/drivers/mmc/host/omap.c
+++ b/drivers/mmc/host/omap.c
@@ -1420,8 +1420,10 @@ static int mmc_omap_probe(struct platform_device *pdev)
 	host->reg_shift = (mmc_omap7xx() ? 1 : 2);
 
 	host->mmc_omap_wq = alloc_workqueue("mmc_omap", 0, 0);
-	if (!host->mmc_omap_wq)
+	if (!host->mmc_omap_wq) {
+		ret = -ENOMEM;
 		goto err_plat_cleanup;
+	}
 
 	for (i = 0; i < pdata->nr_slots; i++) {
 		ret = mmc_omap_new_slot(host, i);


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

* [PATCH 02/11] soc: ti: knav_qmss_queue: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
  2015-08-23  0:11 ` [PATCH 01/11] mmc: omap: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-23  1:12   ` santosh.shilimkar
  2015-08-23  0:11 ` [PATCH 03/11] net: davinci_emac: " Julia Lawall
                   ` (8 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: linux-arm-kernel

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/soc/ti/knav_qmss_queue.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/soc/ti/knav_qmss_queue.c b/drivers/soc/ti/knav_qmss_queue.c
index 6d8646d..822ead8 100644
--- a/drivers/soc/ti/knav_qmss_queue.c
+++ b/drivers/soc/ti/knav_qmss_queue.c
@@ -1768,6 +1768,7 @@ static int knav_queue_probe(struct platform_device *pdev)
 	regions =  of_get_child_by_name(node, "descriptor-regions");
 	if (!regions) {
 		dev_err(dev, "descriptor-regions not specified\n");
+		ret = -ENODEV;
 		goto err;
 	}
 	ret = knav_queue_setup_regions(kdev, regions);


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

* [PATCH 03/11] net: davinci_emac: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
  2015-08-23  0:11 ` [PATCH 01/11] mmc: omap: " Julia Lawall
  2015-08-23  0:11 ` [PATCH 02/11] soc: ti: knav_qmss_queue: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-25 20:39   ` David Miller
  2015-08-23  0:11 ` [PATCH 04/11] fbdev: ssd1307fb: " Julia Lawall
                   ` (7 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: netdev; +Cc: kernel-janitors, linux-kernel

Propagate error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/net/ethernet/ti/davinci_emac.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/ti/davinci_emac.c b/drivers/net/ethernet/ti/davinci_emac.c
index aeebc0a..a21c77b 100644
--- a/drivers/net/ethernet/ti/davinci_emac.c
+++ b/drivers/net/ethernet/ti/davinci_emac.c
@@ -2004,8 +2004,10 @@ static int davinci_emac_probe(struct platform_device *pdev)
 	if (res_ctrl) {
 		priv->ctrl_base  			devm_ioremap_resource(&pdev->dev, res_ctrl);
-		if (IS_ERR(priv->ctrl_base))
+		if (IS_ERR(priv->ctrl_base)) {
+			rc = PTR_ERR(priv->ctrl_base);
 			goto no_pdata;
+		}
 	} else {
 		priv->ctrl_base = priv->remap_addr + pdata->ctrl_mod_reg_offset;
 	}


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

* [PATCH 04/11] fbdev: ssd1307fb: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (2 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 03/11] net: davinci_emac: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-09-01 10:39   ` Tomi Valkeinen
  2015-08-23  0:11 ` [PATCH 05/11] mlxsw: " Julia Lawall
                   ` (6 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Jean-Christophe Plagniol-Villard
  Cc: kernel-janitors, Tomi Valkeinen, linux-fbdev, linux-kernel

Propagate error code on failure.  Also changed %ld to %d in dev_err to use
ret variable rather than putting two calls to PTR_ERR.

A simplified version of the semantic match that finds the first problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/video/fbdev/ssd1307fb.c |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/drivers/video/fbdev/ssd1307fb.c b/drivers/video/fbdev/ssd1307fb.c
index 3e153c0..1611215 100644
--- a/drivers/video/fbdev/ssd1307fb.c
+++ b/drivers/video/fbdev/ssd1307fb.c
@@ -656,8 +656,9 @@ static int ssd1307fb_probe(struct i2c_client *client,
 	bl = backlight_device_register(bl_name, &client->dev, par,
 				       &ssd1307fb_bl_ops, NULL);
 	if (IS_ERR(bl)) {
-		dev_err(&client->dev, "unable to register backlight device: %ld\n",
-			PTR_ERR(bl));
+		ret = PTR_ERR(bl);
+		dev_err(&client->dev, "unable to register backlight device: %d\n",
+			ret);
 		goto bl_init_error;
 	}
 

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

* [PATCH 05/11] mlxsw: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (3 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 04/11] fbdev: ssd1307fb: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-23 18:52   ` Jiri Pirko
  2015-08-25 20:39   ` David Miller
  2015-08-23  0:11 ` [PATCH 06/11] mmc: usdhi6rol0: " Julia Lawall
                   ` (5 subsequent siblings)
  10 siblings, 2 replies; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Jiri Pirko; +Cc: kernel-janitors, Ido Schimmel, netdev, linux-kernel

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/net/ethernet/mellanox/mlxsw/pci.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/net/ethernet/mellanox/mlxsw/pci.c b/drivers/net/ethernet/mellanox/mlxsw/pci.c
index a34f474..045f98f 100644
--- a/drivers/net/ethernet/mellanox/mlxsw/pci.c
+++ b/drivers/net/ethernet/mellanox/mlxsw/pci.c
@@ -1726,6 +1726,7 @@ static int mlxsw_pci_probe(struct pci_dev *pdev, const struct pci_device_id *id)
 						mlxsw_pci_dbg_root);
 	if (!mlxsw_pci->dbg_dir) {
 		dev_err(&pdev->dev, "Failed to create debugfs dir\n");
+		err = -ENOMEM;
 		goto err_dbg_create_dir;
 	}
 


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

* [PATCH 06/11] mmc: usdhi6rol0: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (4 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 05/11] mlxsw: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-25 15:26   ` Ulf Hansson
  2015-08-23  0:11 ` [PATCH 07/11] drm: " Julia Lawall
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Ulf Hansson; +Cc: kernel-janitors, linux-mmc, linux-kernel

Propagate error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/mmc/host/usdhi6rol0.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/drivers/mmc/host/usdhi6rol0.c b/drivers/mmc/host/usdhi6rol0.c
index 54b082b..99f894c 100644
--- a/drivers/mmc/host/usdhi6rol0.c
+++ b/drivers/mmc/host/usdhi6rol0.c
@@ -1734,8 +1734,10 @@ static int usdhi6_probe(struct platform_device *pdev)
 	}
 
 	host->clk = devm_clk_get(dev, NULL);
-	if (IS_ERR(host->clk))
+	if (IS_ERR(host->clk)) {
+		ret = PTR_ERR(host->clk);
 		goto e_free_mmc;
+	}
 
 	host->imclk = clk_get_rate(host->clk);
 


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

* [PATCH 07/11] drm: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (5 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 06/11] mmc: usdhi6rol0: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-23  0:11 ` [PATCH 08/11] drm/exynos: mic: " Julia Lawall
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: David Airlie; +Cc: kernel-janitors, dri-devel, linux-kernel

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/gpu/drm/gma500/psb_drv.c         |    8 ++++++--
 drivers/gpu/drm/omapdrm/omap_dmm_tiler.c |    1 +
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/gma500/psb_drv.c b/drivers/gpu/drm/gma500/psb_drv.c
index 92e7e57..4eff0d6 100644
--- a/drivers/gpu/drm/gma500/psb_drv.c
+++ b/drivers/gpu/drm/gma500/psb_drv.c
@@ -326,12 +326,16 @@ static int psb_driver_load(struct drm_device *dev, unsigned long flags)
 		goto out_err;
 
 	dev_priv->mmu = psb_mmu_driver_init(dev, 1, 0, 0);
-	if (!dev_priv->mmu)
+	if (!dev_priv->mmu) {
+		ret = -ENOMEM;
 		goto out_err;
+	}
 
 	dev_priv->pf_pd = psb_mmu_alloc_pd(dev_priv->mmu, 1, 0);
-	if (!dev_priv->pf_pd)
+	if (!dev_priv->pf_pd) {
+		ret = -ENOMEM;
 		goto out_err;
+	}
 
 	ret = psb_do_init(dev);
 	if (ret)
diff --git a/drivers/gpu/drm/omapdrm/omap_dmm_tiler.c b/drivers/gpu/drm/omapdrm/omap_dmm_tiler.c
index 7841970..58a00b5 100644
--- a/drivers/gpu/drm/omapdrm/omap_dmm_tiler.c
+++ b/drivers/gpu/drm/omapdrm/omap_dmm_tiler.c
@@ -703,6 +703,7 @@ static int omap_dmm_probe(struct platform_device *dev)
 				&omap_dmm->refill_pa, GFP_KERNEL);
 	if (!omap_dmm->refill_va) {
 		dev_err(&dev->dev, "could not allocate refill memory\n");
+		ret = -ENOMEM;
 		goto fail;
 	}
 


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

* [PATCH 08/11] drm/exynos: mic: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (6 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 07/11] drm: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-23  0:11 ` [PATCH 09/11] Input: sur40: " Julia Lawall
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Inki Dae
  Cc: kernel-janitors, Joonyoung Shim, Seung-Woo Kim, Kyungmin Park,
	David Airlie, Kukjin Kim, Krzysztof Kozlowski, dri-devel,
	linux-arm-kernel, linux-samsung-soc, linux-kernel

Propagate error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/gpu/drm/exynos/exynos_drm_mic.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/exynos/exynos_drm_mic.c b/drivers/gpu/drm/exynos/exynos_drm_mic.c
index 8994eab..ddf0b6c 100644
--- a/drivers/gpu/drm/exynos/exynos_drm_mic.c
+++ b/drivers/gpu/drm/exynos/exynos_drm_mic.c
@@ -432,6 +432,7 @@ int exynos_mic_probe(struct platform_device *pdev)
 							"samsung,disp-syscon");
 	if (IS_ERR(mic->sysreg)) {
 		DRM_ERROR("mic: Failed to get system register.\n");
+		ret = PTR_ERR(mic->sysreg);
 		goto err;
 	}
 


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

* [PATCH 09/11] Input: sur40: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (7 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 08/11] drm/exynos: mic: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-24 19:30   ` Dmitry Torokhov
  2015-08-23  0:11 ` [PATCH 10/11] ah6: " Julia Lawall
  2015-08-23  0:11 ` [PATCH 11/11] gpio: xlp: " Julia Lawall
  10 siblings, 1 reply; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Dmitry Torokhov; +Cc: kernel-janitors, linux-input, linux-kernel

Propagate error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/input/touchscreen/sur40.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/input/touchscreen/sur40.c b/drivers/input/touchscreen/sur40.c
index 8be7b9b..3f11763 100644
--- a/drivers/input/touchscreen/sur40.c
+++ b/drivers/input/touchscreen/sur40.c
@@ -581,6 +581,7 @@ static int sur40_probe(struct usb_interface *interface,
 	sur40->alloc_ctx = vb2_dma_sg_init_ctx(sur40->dev);
 	if (IS_ERR(sur40->alloc_ctx)) {
 		dev_err(sur40->dev, "Can't allocate buffer context");
+		error = PTR_ERR(sur40->alloc_ctx);
 		goto err_unreg_v4l2;
 	}
 


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

* [PATCH 10/11] ah6: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (8 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 09/11] Input: sur40: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-24 12:13   ` Herbert Xu
  2015-08-25 20:39   ` David Miller
  2015-08-23  0:11 ` [PATCH 11/11] gpio: xlp: " Julia Lawall
  10 siblings, 2 replies; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Steffen Klassert
  Cc: kernel-janitors, Herbert Xu, David S. Miller, Alexey Kuznetsov,
	James Morris, Hideaki YOSHIFUJI, Patrick McHardy, netdev,
	linux-kernel

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 net/ipv6/ah6.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/net/ipv6/ah6.c b/net/ipv6/ah6.c
index ed7d4e3..0630a4d 100644
--- a/net/ipv6/ah6.c
+++ b/net/ipv6/ah6.c
@@ -577,8 +577,10 @@ static int ah6_input(struct xfrm_state *x, struct sk_buff *skb)
 
 	work_iph = ah_alloc_tmp(ahash, nfrags + sglists, hdr_len +
 				ahp->icv_trunc_len + seqhi_len);
-	if (!work_iph)
+	if (!work_iph) {
+		err = -ENOMEM;
 		goto out;
+	}
 
 	auth_data = ah_tmp_auth((u8 *)work_iph, hdr_len);
 	seqhi = (__be32 *)(auth_data + ahp->icv_trunc_len);


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

* [PATCH 11/11] gpio: xlp: fix error return code
  2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
                   ` (9 preceding siblings ...)
  2015-08-23  0:11 ` [PATCH 10/11] ah6: " Julia Lawall
@ 2015-08-23  0:11 ` Julia Lawall
  2015-08-26 12:50   ` Linus Walleij
  10 siblings, 1 reply; 23+ messages in thread
From: Julia Lawall @ 2015-08-23  0:11 UTC (permalink / raw)
  To: Linus Walleij
  Cc: kernel-janitors, Alexandre Courbot, linux-gpio, linux-kernel

Return a negative error code on failure.

A simplified version of the semantic match that finds this problem is as
follows: (http://coccinelle.lip6.fr/)

// <smpl>
@@
identifier ret; expression e1,e2;
@@
(
if (\(ret < 0\|ret != 0\))
 { ... return ret; }
|
ret = 0
)
... when != ret = e1
    when != &ret
*if(...)
{
  ... when != ret = e2
      when forall
 return ret;
}
// </smpl>

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

---
 drivers/gpio/gpio-xlp.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpio/gpio-xlp.c b/drivers/gpio/gpio-xlp.c
index 9bdab72..e02499a 100644
--- a/drivers/gpio/gpio-xlp.c
+++ b/drivers/gpio/gpio-xlp.c
@@ -387,7 +387,7 @@ static int xlp_gpio_probe(struct platform_device *pdev)
 	irq_base = irq_alloc_descs(-1, XLP_GPIO_IRQ_BASE, gc->ngpio, 0);
 	if (irq_base < 0) {
 		dev_err(&pdev->dev, "Failed to allocate IRQ numbers\n");
-		return err;
+		return -ENODEV;
 	}
 
 	err = gpiochip_add(gc);


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

* Re: [PATCH 02/11] soc: ti: knav_qmss_queue: fix error return code
  2015-08-23  0:11 ` [PATCH 02/11] soc: ti: knav_qmss_queue: " Julia Lawall
@ 2015-08-23  1:12   ` santosh.shilimkar
  0 siblings, 0 replies; 23+ messages in thread
From: santosh.shilimkar @ 2015-08-23  1:12 UTC (permalink / raw)
  To: linux-arm-kernel

On 8/22/15 5:11 PM, Julia Lawall wrote:
> Return a negative error code on failure.
>
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
>   { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
>      when != &ret
> *if(...)
> {
>    ... when != ret = e2
>        when forall
>   return ret;
> }
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
>
Acked-by: Santosh Shilimkar <ssantosh@kernel.org>

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

* Re: [PATCH 05/11] mlxsw: fix error return code
  2015-08-23  0:11 ` [PATCH 05/11] mlxsw: " Julia Lawall
@ 2015-08-23 18:52   ` Jiri Pirko
  2015-08-25 20:39   ` David Miller
  1 sibling, 0 replies; 23+ messages in thread
From: Jiri Pirko @ 2015-08-23 18:52 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Jiri Pirko, kernel-janitors, Ido Schimmel, netdev, linux-kernel

Sun, Aug 23, 2015 at 02:11:16AM CEST, Julia.Lawall@lip6.fr wrote:
>Return a negative error code on failure.
>
>A simplified version of the semantic match that finds this problem is as
>follows: (http://coccinelle.lip6.fr/)
>
>// <smpl>
>@@
>identifier ret; expression e1,e2;
>@@
>(
>if (\(ret < 0\|ret != 0\))
> { ... return ret; }
>|
>ret = 0
>)
>... when != ret = e1
>    when != &ret
>*if(...)
>{
>  ... when != ret = e2
>      when forall
> return ret;
>}
>// </smpl>
>
>Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Acked-by: Jiri Pirko <jiri@mellanox.com>

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

* Re: [PATCH 10/11] ah6: fix error return code
  2015-08-23  0:11 ` [PATCH 10/11] ah6: " Julia Lawall
@ 2015-08-24 12:13   ` Herbert Xu
  2015-08-25 20:39   ` David Miller
  1 sibling, 0 replies; 23+ messages in thread
From: Herbert Xu @ 2015-08-24 12:13 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Steffen Klassert, kernel-janitors, David S. Miller,
	Alexey Kuznetsov, James Morris, Hideaki YOSHIFUJI,
	Patrick McHardy, netdev, linux-kernel

On Sun, Aug 23, 2015 at 02:11:21AM +0200, Julia Lawall wrote:
> Return a negative error code on failure.
> 
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> // </smpl>
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Acked-by: Herbert Xu <herbert@gondor.apana.org.au>

This problem exists in net/ipv4/ah4.c too, right?

Thanks,
-- 
Email: Herbert Xu <herbert@gondor.apana.org.au>
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt

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

* Re: [PATCH 09/11] Input: sur40: fix error return code
  2015-08-23  0:11 ` [PATCH 09/11] Input: sur40: " Julia Lawall
@ 2015-08-24 19:30   ` Dmitry Torokhov
  0 siblings, 0 replies; 23+ messages in thread
From: Dmitry Torokhov @ 2015-08-24 19:30 UTC (permalink / raw)
  To: Julia Lawall; +Cc: kernel-janitors, linux-input, linux-kernel

On Sun, Aug 23, 2015 at 02:11:20AM +0200, Julia Lawall wrote:
> Propagate error code on failure.
> 
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> // </smpl>
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Applied, thank you.

> 
> ---
>  drivers/input/touchscreen/sur40.c |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/input/touchscreen/sur40.c b/drivers/input/touchscreen/sur40.c
> index 8be7b9b..3f11763 100644
> --- a/drivers/input/touchscreen/sur40.c
> +++ b/drivers/input/touchscreen/sur40.c
> @@ -581,6 +581,7 @@ static int sur40_probe(struct usb_interface *interface,
>  	sur40->alloc_ctx = vb2_dma_sg_init_ctx(sur40->dev);
>  	if (IS_ERR(sur40->alloc_ctx)) {
>  		dev_err(sur40->dev, "Can't allocate buffer context");
> +		error = PTR_ERR(sur40->alloc_ctx);
>  		goto err_unreg_v4l2;
>  	}
>  
> 

-- 
Dmitry

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

* Re: [PATCH 01/11] mmc: omap: fix error return code
  2015-08-23  0:11 ` [PATCH 01/11] mmc: omap: " Julia Lawall
@ 2015-08-25 15:26   ` Ulf Hansson
  0 siblings, 0 replies; 23+ messages in thread
From: Ulf Hansson @ 2015-08-25 15:26 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Jarkko Lavinen, kernel-janitors, linux-omap, linux-mmc,
	linux-kernel@vger.kernel.org

On 23 August 2015 at 02:11, Julia Lawall <Julia.Lawall@lip6.fr> wrote:
> Return a negative error code on failure.
>
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Thanks, applied for next!

Kind regards
Uffe

>
> ---
>  drivers/mmc/host/omap.c |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/omap.c b/drivers/mmc/host/omap.c
> index 70dcf07..b763b11 100644
> --- a/drivers/mmc/host/omap.c
> +++ b/drivers/mmc/host/omap.c
> @@ -1420,8 +1420,10 @@ static int mmc_omap_probe(struct platform_device *pdev)
>         host->reg_shift = (mmc_omap7xx() ? 1 : 2);
>
>         host->mmc_omap_wq = alloc_workqueue("mmc_omap", 0, 0);
> -       if (!host->mmc_omap_wq)
> +       if (!host->mmc_omap_wq) {
> +               ret = -ENOMEM;
>                 goto err_plat_cleanup;
> +       }
>
>         for (i = 0; i < pdata->nr_slots; i++) {
>                 ret = mmc_omap_new_slot(host, i);
>

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

* Re: [PATCH 06/11] mmc: usdhi6rol0: fix error return code
  2015-08-23  0:11 ` [PATCH 06/11] mmc: usdhi6rol0: " Julia Lawall
@ 2015-08-25 15:26   ` Ulf Hansson
  0 siblings, 0 replies; 23+ messages in thread
From: Ulf Hansson @ 2015-08-25 15:26 UTC (permalink / raw)
  To: Julia Lawall; +Cc: kernel-janitors, linux-mmc, linux-kernel@vger.kernel.org

On 23 August 2015 at 02:11, Julia Lawall <Julia.Lawall@lip6.fr> wrote:
> Propagate error code on failure.
>
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Thanks, applied for next!

Kind regards
Uffe


>
> ---
>  drivers/mmc/host/usdhi6rol0.c |    4 +++-
>  1 file changed, 3 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/mmc/host/usdhi6rol0.c b/drivers/mmc/host/usdhi6rol0.c
> index 54b082b..99f894c 100644
> --- a/drivers/mmc/host/usdhi6rol0.c
> +++ b/drivers/mmc/host/usdhi6rol0.c
> @@ -1734,8 +1734,10 @@ static int usdhi6_probe(struct platform_device *pdev)
>         }
>
>         host->clk = devm_clk_get(dev, NULL);
> -       if (IS_ERR(host->clk))
> +       if (IS_ERR(host->clk)) {
> +               ret = PTR_ERR(host->clk);
>                 goto e_free_mmc;
> +       }
>
>         host->imclk = clk_get_rate(host->clk);
>
>

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

* Re: [PATCH 10/11] ah6: fix error return code
  2015-08-23  0:11 ` [PATCH 10/11] ah6: " Julia Lawall
  2015-08-24 12:13   ` Herbert Xu
@ 2015-08-25 20:39   ` David Miller
  1 sibling, 0 replies; 23+ messages in thread
From: David Miller @ 2015-08-25 20:39 UTC (permalink / raw)
  To: Julia.Lawall
  Cc: steffen.klassert, kernel-janitors, herbert, kuznet, jmorris,
	yoshfuji, kaber, netdev, linux-kernel

From: Julia Lawall <Julia.Lawall@lip6.fr>
Date: Sun, 23 Aug 2015 02:11:21 +0200

> Return a negative error code on failure.
> 
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
 ...
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Applied and as noticed by Herbert Xu I fixed up the net/ipv4/ah4.c case
as well.

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

* Re: [PATCH 05/11] mlxsw: fix error return code
  2015-08-23  0:11 ` [PATCH 05/11] mlxsw: " Julia Lawall
  2015-08-23 18:52   ` Jiri Pirko
@ 2015-08-25 20:39   ` David Miller
  1 sibling, 0 replies; 23+ messages in thread
From: David Miller @ 2015-08-25 20:39 UTC (permalink / raw)
  To: Julia.Lawall; +Cc: jiri, kernel-janitors, idosch, netdev, linux-kernel

From: Julia Lawall <Julia.Lawall@lip6.fr>
Date: Sun, 23 Aug 2015 02:11:16 +0200

> Return a negative error code on failure.
> 
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
 ...
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Applied.

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

* Re: [PATCH 03/11] net: davinci_emac: fix error return code
  2015-08-23  0:11 ` [PATCH 03/11] net: davinci_emac: " Julia Lawall
@ 2015-08-25 20:39   ` David Miller
  0 siblings, 0 replies; 23+ messages in thread
From: David Miller @ 2015-08-25 20:39 UTC (permalink / raw)
  To: Julia.Lawall; +Cc: netdev, kernel-janitors, linux-kernel

From: Julia Lawall <Julia.Lawall@lip6.fr>
Date: Sun, 23 Aug 2015 02:11:14 +0200

> Propagate error code on failure.
> 
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
 ...
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Applied.

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

* Re: [PATCH 11/11] gpio: xlp: fix error return code
  2015-08-23  0:11 ` [PATCH 11/11] gpio: xlp: " Julia Lawall
@ 2015-08-26 12:50   ` Linus Walleij
  0 siblings, 0 replies; 23+ messages in thread
From: Linus Walleij @ 2015-08-26 12:50 UTC (permalink / raw)
  To: Julia Lawall
  Cc: kernel-janitors, Alexandre Courbot, linux-gpio@vger.kernel.org,
	linux-kernel@vger.kernel.org

On Sun, Aug 23, 2015 at 2:11 AM, Julia Lawall <Julia.Lawall@lip6.fr> wrote:

> Return a negative error code on failure.
>
> A simplified version of the semantic match that finds this problem is as
> follows: (http://coccinelle.lip6.fr/)
>
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> // </smpl>
>
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Patch applied.

Yours,
Linus Walleij

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

* Re: [PATCH 04/11] fbdev: ssd1307fb: fix error return code
  2015-08-23  0:11 ` [PATCH 04/11] fbdev: ssd1307fb: " Julia Lawall
@ 2015-09-01 10:39   ` Tomi Valkeinen
  0 siblings, 0 replies; 23+ messages in thread
From: Tomi Valkeinen @ 2015-09-01 10:39 UTC (permalink / raw)
  To: Julia Lawall, Jean-Christophe Plagniol-Villard
  Cc: kernel-janitors, linux-fbdev, linux-kernel

[-- Attachment #1: Type: text/plain, Size: 1448 bytes --]



On 23/08/15 03:11, Julia Lawall wrote:
> Propagate error code on failure.  Also changed %ld to %d in dev_err to use
> ret variable rather than putting two calls to PTR_ERR.
> 
> A simplified version of the semantic match that finds the first problem is as
> follows: (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier ret; expression e1,e2;
> @@
> (
> if (\(ret < 0\|ret != 0\))
>  { ... return ret; }
> |
> ret = 0
> )
> ... when != ret = e1
>     when != &ret
> *if(...)
> {
>   ... when != ret = e2
>       when forall
>  return ret;
> }
> // </smpl>
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
> 
> ---
>  drivers/video/fbdev/ssd1307fb.c |    5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 
> diff --git a/drivers/video/fbdev/ssd1307fb.c b/drivers/video/fbdev/ssd1307fb.c
> index 3e153c0..1611215 100644
> --- a/drivers/video/fbdev/ssd1307fb.c
> +++ b/drivers/video/fbdev/ssd1307fb.c
> @@ -656,8 +656,9 @@ static int ssd1307fb_probe(struct i2c_client *client,
>  	bl = backlight_device_register(bl_name, &client->dev, par,
>  				       &ssd1307fb_bl_ops, NULL);
>  	if (IS_ERR(bl)) {
> -		dev_err(&client->dev, "unable to register backlight device: %ld\n",
> -			PTR_ERR(bl));
> +		ret = PTR_ERR(bl);
> +		dev_err(&client->dev, "unable to register backlight device: %d\n",
> +			ret);
>  		goto bl_init_error;
>  	}

Thanks, queued for 4.3.

 Tomi


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 819 bytes --]

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

end of thread, other threads:[~2015-09-01 10:39 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-23  0:11 [PATCH 00/11] fix error return code Julia Lawall
2015-08-23  0:11 ` [PATCH 01/11] mmc: omap: " Julia Lawall
2015-08-25 15:26   ` Ulf Hansson
2015-08-23  0:11 ` [PATCH 02/11] soc: ti: knav_qmss_queue: " Julia Lawall
2015-08-23  1:12   ` santosh.shilimkar
2015-08-23  0:11 ` [PATCH 03/11] net: davinci_emac: " Julia Lawall
2015-08-25 20:39   ` David Miller
2015-08-23  0:11 ` [PATCH 04/11] fbdev: ssd1307fb: " Julia Lawall
2015-09-01 10:39   ` Tomi Valkeinen
2015-08-23  0:11 ` [PATCH 05/11] mlxsw: " Julia Lawall
2015-08-23 18:52   ` Jiri Pirko
2015-08-25 20:39   ` David Miller
2015-08-23  0:11 ` [PATCH 06/11] mmc: usdhi6rol0: " Julia Lawall
2015-08-25 15:26   ` Ulf Hansson
2015-08-23  0:11 ` [PATCH 07/11] drm: " Julia Lawall
2015-08-23  0:11 ` [PATCH 08/11] drm/exynos: mic: " Julia Lawall
2015-08-23  0:11 ` [PATCH 09/11] Input: sur40: " Julia Lawall
2015-08-24 19:30   ` Dmitry Torokhov
2015-08-23  0:11 ` [PATCH 10/11] ah6: " Julia Lawall
2015-08-24 12:13   ` Herbert Xu
2015-08-25 20:39   ` David Miller
2015-08-23  0:11 ` [PATCH 11/11] gpio: xlp: " Julia Lawall
2015-08-26 12:50   ` Linus Walleij

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).