All of lore.kernel.org
 help / color / mirror / Atom feed
* [07/20] dmaengine: at_hdmac: drop useless LIST_HEAD
  2018-12-23  8:57 ` Julia Lawall
  (?)
  (?)
@ 2018-12-24  9:36 ` Ludovic Desroches
  -1 siblings, 0 replies; 126+ messages in thread
From: Ludovic Desroches @ 2018-12-24  9:36 UTC (permalink / raw)
  To: Julia Lawall
  Cc: kernel-janitors, Vinod Koul, Dan Williams, linux-arm-kernel,
	dmaengine, linux-kernel

On Sun, Dec 23, 2018 at 09:57:02AM +0100, Julia Lawall wrote:
> Drop LIST_HEAD where the variable it declares is never used.
> 
> tmp_list has been declared since the introduction of the driver
> and has never been used.  The two declarations of list were
> introduced with the containing functions but were also not used.
> 
> The semantic patch that fixes this problem is as follows:
> (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier x;
> @@
> - LIST_HEAD(x);
>   ... when != x
> // </smpl>
> 
> Fixes: dc78baa2b90b ("dmaengine: at_hdmac: new driver for the Atmel AHB DMA Controller")
> Fixes: 4facfe7f09f2b ("dmaengine: hdmac: Split device_control")
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Acked-by: Ludovic Desroches <ludovic.desroches@microchip.com> 

Thanks
> 
> ---
> Successfully 0-day tested on 151 configurations.
> 
>  drivers/dma/at_hdmac.c |    5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c
> index 01d936c9fe89..a0a9cd76c1d4 100644
> --- a/drivers/dma/at_hdmac.c
> +++ b/drivers/dma/at_hdmac.c
> @@ -134,7 +134,6 @@ static struct at_desc *atc_desc_get(struct at_dma_chan *atchan)
>  	struct at_desc *ret = NULL;
>  	unsigned long flags;
>  	unsigned int i = 0;
> -	LIST_HEAD(tmp_list);
>  
>  	spin_lock_irqsave(&atchan->lock, flags);
>  	list_for_each_entry_safe(desc, _desc, &atchan->free_list, desc_node) {
> @@ -1387,8 +1386,6 @@ static int atc_pause(struct dma_chan *chan)
>  	int			chan_id = atchan->chan_common.chan_id;
>  	unsigned long		flags;
>  
> -	LIST_HEAD(list);
> -
>  	dev_vdbg(chan2dev(chan), "%s\n", __func__);
>  
>  	spin_lock_irqsave(&atchan->lock, flags);
> @@ -1408,8 +1405,6 @@ static int atc_resume(struct dma_chan *chan)
>  	int			chan_id = atchan->chan_common.chan_id;
>  	unsigned long		flags;
>  
> -	LIST_HEAD(list);
> -
>  	dev_vdbg(chan2dev(chan), "%s\n", __func__);
>  
>  	if (!atc_chan_is_paused(atchan))
>

^ permalink raw reply	[flat|nested] 126+ messages in thread
* [07/20] dmaengine: at_hdmac: drop useless LIST_HEAD
  2018-12-23  8:57 ` Julia Lawall
  (?)
@ 2019-01-02  6:04 ` Vinod Koul
  -1 siblings, 0 replies; 126+ messages in thread
From: Vinod Koul @ 2019-01-02  6:04 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Ludovic Desroches, kernel-janitors, Dan Williams,
	linux-arm-kernel, dmaengine, linux-kernel

On 23-12-18, 09:57, Julia Lawall wrote:
> Drop LIST_HEAD where the variable it declares is never used.
> 
> tmp_list has been declared since the introduction of the driver
> and has never been used.  The two declarations of list were
> introduced with the containing functions but were also not used.
> 
> The semantic patch that fixes this problem is as follows:
> (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier x;
> @@
> - LIST_HEAD(x);
>   ... when != x
> // </smpl>

Applied with Ludovic's ack, thanks

^ permalink raw reply	[flat|nested] 126+ messages in thread
* [18/20] dmaengine: sa11x0: drop useless LIST_HEAD
  2018-12-23  8:57 ` Julia Lawall
  (?)
@ 2019-01-02  6:04 ` Vinod Koul
  -1 siblings, 0 replies; 126+ messages in thread
From: Vinod Koul @ 2019-01-02  6:04 UTC (permalink / raw)
  To: Julia Lawall; +Cc: Dan Williams, kernel-janitors, dmaengine, linux-kernel

On 23-12-18, 09:57, Julia Lawall wrote:
> Drop LIST_HEAD where the variable it declares has never been
> used.
> 
> The semantic patch that fixes this problem is as follows:
> (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier x;
> @@
> - LIST_HEAD(x);
>   ... when != x
> // </smpl>

Applied, thanks

^ permalink raw reply	[flat|nested] 126+ messages in thread
* [17/20] dmaengine: pl330: drop useless LIST_HEAD
  2018-12-23  8:57 ` Julia Lawall
  (?)
@ 2019-01-02  6:04 ` Vinod Koul
  -1 siblings, 0 replies; 126+ messages in thread
From: Vinod Koul @ 2019-01-02  6:04 UTC (permalink / raw)
  To: Julia Lawall; +Cc: Dan Williams, kernel-janitors, dmaengine, linux-kernel

On 23-12-18, 09:57, Julia Lawall wrote:
> Drop LIST_HEAD where the variable it declares is never used.
> 
> The variable has not been used since the function was introduced
> in 740aa95703c5 ("dmaengine: pl330: Split device_control").
> 
> The semantic patch that fixes this problem is as follows:
> (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier x;
> @@
> - LIST_HEAD(x);
>   ... when != x
> // </smpl>

Applied, thanks

^ permalink raw reply	[flat|nested] 126+ messages in thread
* [14/20] dmaengine: st_fdma: drop useless LIST_HEAD
  2018-12-23  8:57 ` Julia Lawall
  (?)
@ 2019-01-02  6:03 ` Vinod Koul
  -1 siblings, 0 replies; 126+ messages in thread
From: Vinod Koul @ 2019-01-02  6:03 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Patrice Chotard, kernel-janitors, Dan Williams, linux-arm-kernel,
	dmaengine, linux-kernel

On 23-12-18, 09:57, Julia Lawall wrote:
> Drop LIST_HEAD where the variable it declares is never used.
> 
> The declarations were introduced with the file, but the declared
> variables were not used.
> 
> The semantic patch that fixes this problem is as follows:
> (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier x;
> @@
> - LIST_HEAD(x);
>   ... when != x
> // </smpl>
> 
> Fixes: 6b4cd727eaf1 ("dmaengine: st_fdma: Add STMicroelectronics FDMA engine driver support")
> Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>

Applied, thanks

^ permalink raw reply	[flat|nested] 126+ messages in thread
* [12/20] dmaengine: dw: drop useless LIST_HEAD
  2018-12-23  8:57 ` Julia Lawall
  (?)
@ 2019-01-02  6:03 ` Vinod Koul
  -1 siblings, 0 replies; 126+ messages in thread
From: Vinod Koul @ 2019-01-02  6:03 UTC (permalink / raw)
  To: Julia Lawall
  Cc: Viresh Kumar, kernel-janitors, Andy Shevchenko, Dan Williams,
	dmaengine, linux-kernel

On 23-12-18, 09:57, Julia Lawall wrote:
> Drop LIST_HEAD where the variable it declares is never used.
> 
> Commit ab703f818ac3 ("dmaengine: dw: lazy allocation of dma
> descriptors") removed the uses, but not the declaration.
> 
> The semantic patch that fixes this problem is as follows:
> (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> identifier x;
> @@
> - LIST_HEAD(x);
>   ... when != x
> // </smpl>

Applied, thanks

^ permalink raw reply	[flat|nested] 126+ messages in thread
* [18/20] dmaengine: sa11x0: drop useless LIST_HEAD
  2018-12-23  8:56 ` Julia Lawall
  (?)
@ 2018-12-23  8:57 ` Julia Lawall
  -1 siblings, 0 replies; 126+ messages in thread
From: Julia Lawall @ 2018-12-23  8:57 UTC (permalink / raw)
  To: Dan Williams; +Cc: kernel-janitors, Vinod Koul, dmaengine, linux-kernel

Drop LIST_HEAD where the variable it declares has never been
used.

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

// <smpl>
@@
identifier x;
@@
- LIST_HEAD(x);
  ... when != x
// </smpl>

Fixes: 4a533218fccf ("dmaengine: sa11x0: Split device_control")
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
---
Successfully 0-day tested on 151 configurations.

 drivers/dma/sa11x0-dma.c |    2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/dma/sa11x0-dma.c b/drivers/dma/sa11x0-dma.c
index 784d5f1a473b..3fae23768b47 100644
--- a/drivers/dma/sa11x0-dma.c
+++ b/drivers/dma/sa11x0-dma.c
@@ -705,7 +705,6 @@ static int sa11x0_dma_device_pause(struct dma_chan *chan)
 	struct sa11x0_dma_chan *c = to_sa11x0_dma_chan(chan);
 	struct sa11x0_dma_dev *d = to_sa11x0_dma(chan->device);
 	struct sa11x0_dma_phy *p;
-	LIST_HEAD(head);
 	unsigned long flags;
 
 	dev_dbg(d->slave.dev, "vchan %p: pause\n", &c->vc);
@@ -732,7 +731,6 @@ static int sa11x0_dma_device_resume(struct dma_chan *chan)
 	struct sa11x0_dma_chan *c = to_sa11x0_dma_chan(chan);
 	struct sa11x0_dma_dev *d = to_sa11x0_dma(chan->device);
 	struct sa11x0_dma_phy *p;
-	LIST_HEAD(head);
 	unsigned long flags;
 
 	dev_dbg(d->slave.dev, "vchan %p: resume\n", &c->vc);

^ permalink raw reply related	[flat|nested] 126+ messages in thread
* [17/20] dmaengine: pl330: drop useless LIST_HEAD
  2018-12-23  8:56 ` Julia Lawall
  (?)
@ 2018-12-23  8:57 ` Julia Lawall
  -1 siblings, 0 replies; 126+ messages in thread
From: Julia Lawall @ 2018-12-23  8:57 UTC (permalink / raw)
  To: Dan Williams; +Cc: kernel-janitors, Vinod Koul, dmaengine, linux-kernel

Drop LIST_HEAD where the variable it declares is never used.

The variable has not been used since the function was introduced
in 740aa95703c5 ("dmaengine: pl330: Split device_control").

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

// <smpl>
@@
identifier x;
@@
- LIST_HEAD(x);
  ... when != x
// </smpl>

Fixes: 740aa95703c5 ("dmaengine: pl330: Split device_control")
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
---
Successfully 0-day tested on 151 configurations.

 drivers/dma/pl330.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/dma/pl330.c b/drivers/dma/pl330.c
index cff1b143fff5..eec79fdf27a5 100644
--- a/drivers/dma/pl330.c
+++ b/drivers/dma/pl330.c
@@ -2267,7 +2267,6 @@ static int pl330_terminate_all(struct dma_chan *chan)
 	struct dma_pl330_desc *desc;
 	unsigned long flags;
 	struct pl330_dmac *pl330 = pch->dmac;
-	LIST_HEAD(list);
 	bool power_down = false;
 
 	pm_runtime_get_sync(pl330->ddma.dev);

^ permalink raw reply related	[flat|nested] 126+ messages in thread
* [14/20] dmaengine: st_fdma: drop useless LIST_HEAD
  2018-12-23  8:56 ` Julia Lawall
  (?)
  (?)
@ 2018-12-23  8:57 ` Julia Lawall
  -1 siblings, 0 replies; 126+ messages in thread
From: Julia Lawall @ 2018-12-23  8:57 UTC (permalink / raw)
  To: Patrice Chotard
  Cc: kernel-janitors, Dan Williams, Vinod Koul, linux-arm-kernel,
	dmaengine, linux-kernel

Drop LIST_HEAD where the variable it declares is never used.

The declarations were introduced with the file, but the declared
variables were not used.

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

// <smpl>
@@
identifier x;
@@
- LIST_HEAD(x);
  ... when != x
// </smpl>

Fixes: 6b4cd727eaf1 ("dmaengine: st_fdma: Add STMicroelectronics FDMA engine driver support")
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
---
Successfully 0-day tested on 151 configurations.

 drivers/dma/st_fdma.c |    3 ---
 1 file changed, 3 deletions(-)

diff --git a/drivers/dma/st_fdma.c b/drivers/dma/st_fdma.c
index 07c20aa2e955..954f7cf62bb1 100644
--- a/drivers/dma/st_fdma.c
+++ b/drivers/dma/st_fdma.c
@@ -294,8 +294,6 @@ static void st_fdma_free_chan_res(struct dma_chan *chan)
 	struct rproc *rproc = fchan->fdev->slim_rproc->rproc;
 	unsigned long flags;
 
-	LIST_HEAD(head);
-
 	dev_dbg(fchan->fdev->dev, "%s: freeing chan:%d\n",
 		__func__, fchan->vchan.chan.chan_id);
 
@@ -626,7 +624,6 @@ static void st_fdma_issue_pending(struct dma_chan *chan)
 static int st_fdma_pause(struct dma_chan *chan)
 {
 	unsigned long flags;
-	LIST_HEAD(head);
 	struct st_fdma_chan *fchan = to_st_fdma_chan(chan);
 	int ch_id = fchan->vchan.chan.chan_id;
 	unsigned long cmd = FDMA_CMD_PAUSE(ch_id);

^ permalink raw reply related	[flat|nested] 126+ messages in thread
* [12/20] dmaengine: dw: drop useless LIST_HEAD
  2018-12-23  8:56 ` Julia Lawall
  (?)
@ 2018-12-23  8:57 ` Julia Lawall
  -1 siblings, 0 replies; 126+ messages in thread
From: Julia Lawall @ 2018-12-23  8:57 UTC (permalink / raw)
  To: Viresh Kumar
  Cc: kernel-janitors, Andy Shevchenko, Vinod Koul, Dan Williams,
	dmaengine, linux-kernel

Drop LIST_HEAD where the variable it declares is never used.

Commit ab703f818ac3 ("dmaengine: dw: lazy allocation of dma
descriptors") removed the uses, but not the declaration.

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

// <smpl>
@@
identifier x;
@@
- LIST_HEAD(x);
  ... when != x
// </smpl>

Fixes: ab703f818ac3 ("dmaengine: dw: lazy allocation of dma descriptors")
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
---
Successfully 0-day tested on 151 configurations.

 drivers/dma/dw/core.c |    1 -
 1 file changed, 1 deletion(-)

diff --git a/drivers/dma/dw/core.c b/drivers/dma/dw/core.c
index dc053e62f894..290d21be4d4c 100644
--- a/drivers/dma/dw/core.c
+++ b/drivers/dma/dw/core.c
@@ -1150,7 +1150,6 @@ static void dwc_free_chan_resources(struct dma_chan *chan)
 	struct dw_dma_chan	*dwc = to_dw_dma_chan(chan);
 	struct dw_dma		*dw = to_dw_dma(chan->device);
 	unsigned long		flags;
-	LIST_HEAD(list);
 
 	dev_dbg(chan2dev(chan), "%s: descs allocated=%u\n", __func__,
 			dwc->descs_allocated);

^ permalink raw reply related	[flat|nested] 126+ messages in thread
* [07/20] dmaengine: at_hdmac: drop useless LIST_HEAD
  2018-12-23  8:56 ` Julia Lawall
  (?)
  (?)
@ 2018-12-23  8:57 ` Julia Lawall
  -1 siblings, 0 replies; 126+ messages in thread
From: Julia Lawall @ 2018-12-23  8:57 UTC (permalink / raw)
  To: Ludovic Desroches
  Cc: kernel-janitors, Vinod Koul, Dan Williams, linux-arm-kernel,
	dmaengine, linux-kernel

Drop LIST_HEAD where the variable it declares is never used.

tmp_list has been declared since the introduction of the driver
and has never been used.  The two declarations of list were
introduced with the containing functions but were also not used.

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

// <smpl>
@@
identifier x;
@@
- LIST_HEAD(x);
  ... when != x
// </smpl>

Fixes: dc78baa2b90b ("dmaengine: at_hdmac: new driver for the Atmel AHB DMA Controller")
Fixes: 4facfe7f09f2b ("dmaengine: hdmac: Split device_control")
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
---
Successfully 0-day tested on 151 configurations.

 drivers/dma/at_hdmac.c |    5 -----
 1 file changed, 5 deletions(-)

diff --git a/drivers/dma/at_hdmac.c b/drivers/dma/at_hdmac.c
index 01d936c9fe89..a0a9cd76c1d4 100644
--- a/drivers/dma/at_hdmac.c
+++ b/drivers/dma/at_hdmac.c
@@ -134,7 +134,6 @@ static struct at_desc *atc_desc_get(struct at_dma_chan *atchan)
 	struct at_desc *ret = NULL;
 	unsigned long flags;
 	unsigned int i = 0;
-	LIST_HEAD(tmp_list);
 
 	spin_lock_irqsave(&atchan->lock, flags);
 	list_for_each_entry_safe(desc, _desc, &atchan->free_list, desc_node) {
@@ -1387,8 +1386,6 @@ static int atc_pause(struct dma_chan *chan)
 	int			chan_id = atchan->chan_common.chan_id;
 	unsigned long		flags;
 
-	LIST_HEAD(list);
-
 	dev_vdbg(chan2dev(chan), "%s\n", __func__);
 
 	spin_lock_irqsave(&atchan->lock, flags);
@@ -1408,8 +1405,6 @@ static int atc_resume(struct dma_chan *chan)
 	int			chan_id = atchan->chan_common.chan_id;
 	unsigned long		flags;
 
-	LIST_HEAD(list);
-
 	dev_vdbg(chan2dev(chan), "%s\n", __func__);
 
 	if (!atc_chan_is_paused(atchan))

^ permalink raw reply related	[flat|nested] 126+ messages in thread
* [PATCH 00/20] drop useless LIST_HEAD
@ 2018-12-23  8:56 ` Julia Lawall
  0 siblings, 0 replies; 126+ messages in thread
From: Julia Lawall @ 2018-12-23  8:56 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: kernel-janitors, dmaengine, linux-arm-kernel, Dan Williams,
	linux-scsi, linux-nfs, linux-kernel, netdev, linux-rdma,
	linux-xfs, linux-btrfs, Stefano Stabellini, xen-devel,
	linux-wireless

Drop LIST_HEAD where the variable it declares is never used.

---

 drivers/dma/at_hdmac.c                                |    5 -----
 drivers/dma/dw/core.c                                 |    1 -
 drivers/dma/pl330.c                                   |    1 -
 drivers/dma/sa11x0-dma.c                              |    2 --
 drivers/dma/st_fdma.c                                 |    3 ---
 drivers/infiniband/ulp/ipoib/ipoib_ib.c               |    1 -
 drivers/net/ethernet/mellanox/mlx4/resource_tracker.c |    5 -----
 drivers/net/ethernet/mellanox/mlx5/core/en_tc.c       |    3 ---
 drivers/net/ethernet/mellanox/mlxsw/spectrum.c        |    1 -
 drivers/net/wireless/st/cw1200/queue.c                |    1 -
 drivers/scsi/lpfc/lpfc_nvme.c                         |    2 --
 drivers/scsi/lpfc/lpfc_scsi.c                         |    2 --
 drivers/scsi/lpfc/lpfc_sli.c                          |    1 -
 drivers/scsi/qla2xxx/qla_init.c                       |    1 -
 drivers/xen/xenbus/xenbus_dev_frontend.c              |    2 --
 fs/btrfs/relocation.c                                 |    1 -
 fs/nfs/nfs4client.c                                   |    1 -
 fs/nfsd/nfs4layouts.c                                 |    1 -
 fs/xfs/xfs_buf.c                                      |    1 -
 fs/xfs/xfs_fsops.c                                    |    1 -
 20 files changed, 36 deletions(-)

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

end of thread, other threads:[~2019-02-21 22:40 UTC | newest]

Thread overview: 126+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-24  9:36 [07/20] dmaengine: at_hdmac: drop useless LIST_HEAD Ludovic Desroches
2018-12-24  9:36 ` [PATCH 07/20] " Ludovic Desroches
2018-12-24  9:36 ` Ludovic Desroches
2018-12-24  9:36 ` Ludovic Desroches
  -- strict thread matches above, loose matches on Subject: below --
2019-01-02  6:04 [07/20] " Vinod Koul
2019-01-02  6:16 ` [PATCH 07/20] " Vinod Koul
2019-01-02  6:04 ` Vinod Koul
2019-01-02  6:04 [18/20] dmaengine: sa11x0: " Vinod Koul
2019-01-02  6:16 ` [PATCH 18/20] " Vinod Koul
2019-01-02  6:04 ` Vinod Koul
2019-01-02  6:04 [17/20] dmaengine: pl330: " Vinod Koul
2019-01-02  6:16 ` [PATCH 17/20] " Vinod Koul
2019-01-02  6:04 ` Vinod Koul
2019-01-02  6:03 [14/20] dmaengine: st_fdma: " Vinod Koul
2019-01-02  6:15 ` [PATCH 14/20] " Vinod Koul
2019-01-02  6:03 ` Vinod Koul
2019-01-02  6:03 [12/20] dmaengine: dw: " Vinod Koul
2019-01-02  6:15 ` [PATCH 12/20] " Vinod Koul
2019-01-02  6:03 ` Vinod Koul
2018-12-23  8:57 [18/20] dmaengine: sa11x0: " Julia Lawall
2018-12-23  8:57 ` [PATCH 18/20] " Julia Lawall
2018-12-23  8:57 ` Julia Lawall
2018-12-23  8:57 [17/20] dmaengine: pl330: " Julia Lawall
2018-12-23  8:57 ` [PATCH 17/20] " Julia Lawall
2018-12-23  8:57 ` Julia Lawall
2018-12-23  8:57 [14/20] dmaengine: st_fdma: " Julia Lawall
2018-12-23  8:57 ` [PATCH 14/20] " Julia Lawall
2018-12-23  8:57 ` Julia Lawall
2018-12-23  8:57 ` Julia Lawall
2018-12-23  8:57 [12/20] dmaengine: dw: " Julia Lawall
2018-12-23  8:57 ` [PATCH 12/20] " Julia Lawall
2018-12-23  8:57 ` Julia Lawall
2018-12-23  8:57 [07/20] dmaengine: at_hdmac: " Julia Lawall
2018-12-23  8:57 ` [PATCH 07/20] " Julia Lawall
2018-12-23  8:57 ` Julia Lawall
2018-12-23  8:57 ` Julia Lawall
2018-12-23  8:56 [PATCH 00/20] " Julia Lawall
2018-12-23  8:56 ` Julia Lawall
2018-12-23  8:56 ` Julia Lawall
2018-12-23  8:56 ` Julia Lawall
2018-12-23  8:56 ` [PATCH 01/20] nfsd: " Julia Lawall
2018-12-23  8:56   ` Julia Lawall
2018-12-23 21:26   ` J. Bruce Fields
2018-12-23 21:26     ` J. Bruce Fields
2018-12-23  8:56 ` [PATCH 02/20] net/mlx5e: " Julia Lawall
2018-12-23  8:56   ` Julia Lawall
2018-12-23  9:40   ` Leon Romanovsky
2018-12-23  9:40     ` Leon Romanovsky
2018-12-23  8:56 ` [PATCH 03/20] scsi: lpfc: lpfc_nvme: " Julia Lawall
2018-12-23  8:56   ` Julia Lawall
2018-12-23  8:56 ` [PATCH 04/20] scsi: lpfc: lpfc_scsi: " Julia Lawall
2018-12-23  8:56   ` Julia Lawall
2018-12-23  8:57 ` [PATCH 05/20] scsi: lpfc: lpfc_sli: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23  8:57 ` [PATCH 06/20] IB/ipoib: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23  9:41   ` Leon Romanovsky
2018-12-23  9:41     ` Leon Romanovsky
2019-01-02 22:48   ` Jason Gunthorpe
2019-01-02 22:48     ` Jason Gunthorpe
2018-12-23  8:57 ` [PATCH 08/20] xfs: xfs_buf: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23 22:51   ` Darrick J. Wong
2018-12-23 22:51     ` Darrick J. Wong
2018-12-24  6:32     ` Julia Lawall
2018-12-24  6:32       ` Julia Lawall
2018-12-23  8:57 ` [PATCH 09/20] xfs: xfs_fsops: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23 22:51   ` Darrick J. Wong
2018-12-23 22:51     ` Darrick J. Wong
2018-12-23  8:57 ` [PATCH 10/20] scsi: qla2xxx: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23  8:57 ` [PATCH 11/20] Btrfs: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2019-01-02 16:40   ` David Sterba
2019-01-02 16:40     ` David Sterba
2018-12-23  8:57 ` [PATCH 13/20] xenbus: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2019-01-08  6:58   ` Juergen Gross
2019-01-08  6:58     ` Juergen Gross
2019-01-08  6:58   ` Juergen Gross
2018-12-23  8:57 ` [PATCH 15/20] NFS: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2019-02-21 22:40   ` Trond Myklebust
2019-02-21 22:40     ` Trond Myklebust
2018-12-23  8:57 ` [PATCH 16/20] mlxsw: spectrum: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23  8:57 ` [PATCH 19/20] net/mlx4_core: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2018-12-23  8:57 ` [PATCH 20/20] cw1200: " Julia Lawall
2018-12-23  8:57   ` Julia Lawall
2019-01-08 16:30   ` Kalle Valo
2019-01-08 16:30     ` Kalle Valo
2019-01-08 16:44     ` Julia Lawall
2019-01-08 16:44       ` Julia Lawall
2019-01-10 11:36   ` Kalle Valo
2019-01-10 11:36     ` Kalle Valo
2018-12-23 12:13 ` [PATCH 00/20] " SF Markus Elfring
2018-12-23 21:49 ` Tom Psyborg
2018-12-23 21:49 ` Tom Psyborg
2018-12-23 21:49   ` Tom Psyborg
2018-12-23 21:49   ` Tom Psyborg
2018-12-23 22:06   ` Julia Lawall
2018-12-23 22:06   ` Julia Lawall
2018-12-23 22:06     ` Julia Lawall
2018-12-23 22:06     ` Julia Lawall
2018-12-25 22:12     ` Tom Psyborg
2018-12-25 22:12     ` Tom Psyborg
2018-12-25 22:12       ` Tom Psyborg
2018-12-25 22:12       ` Tom Psyborg
2018-12-25 22:12       ` Tom Psyborg
2018-12-27 13:40       ` Dan Carpenter
2018-12-27 13:40         ` Dan Carpenter
2018-12-27 13:40         ` Dan Carpenter
2018-12-27 13:40         ` Dan Carpenter
2018-12-29  5:25         ` Darrick J. Wong
2018-12-29  5:25           ` Darrick J. Wong
2018-12-29  5:25           ` Darrick J. Wong
2018-12-29  5:25           ` Darrick J. Wong
2018-12-29  6:19           ` Julia Lawall
2018-12-29  6:19           ` Julia Lawall
2018-12-29  6:19             ` Julia Lawall
2018-12-29  6:19             ` Julia Lawall
2018-12-29  5:25         ` Darrick J. Wong
2018-12-27 13:40       ` Dan Carpenter

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.