linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/14] drop double zeroing
@ 2020-09-20 11:26 Julia Lawall
  2020-09-20 11:26 ` [PATCH 14/14] PCI/P2PDMA: " Julia Lawall
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Julia Lawall @ 2020-09-20 11:26 UTC (permalink / raw)
  To: linux-spi
  Cc: kernel-janitors, rds-devel, linux-rdma, Yossi Leybovich, netdev,
	linux-serial, linux-kernel, linux-scsi, target-devel,
	Dan Williams, dmaengine, linux-block, linux-nfs, linux-wireless,
	linux-media, linux-pci

sg_init_table zeroes its first argument, so the allocation of that argument
doesn't have to.

---

 block/bsg-lib.c                                  |    2 +-
 drivers/dma/sh/rcar-dmac.c                       |    2 +-
 drivers/dma/sh/shdma-base.c                      |    2 +-
 drivers/infiniband/hw/efa/efa_verbs.c            |    2 +-
 drivers/media/common/saa7146/saa7146_core.c      |    2 +-
 drivers/misc/mic/scif/scif_nodeqp.c              |    2 +-
 drivers/net/ethernet/freescale/dpaa2/dpaa2-eth.c |    2 +-
 drivers/net/wireless/intel/iwlwifi/fw/dbg.c      |    2 +-
 drivers/pci/p2pdma.c                             |    2 +-
 drivers/spi/spi-topcliff-pch.c                   |    4 ++--
 drivers/target/target_core_rd.c                  |    2 +-
 drivers/tty/serial/pch_uart.c                    |    2 +-
 net/rds/rdma.c                                   |    2 +-
 net/sunrpc/xprtrdma/frwr_ops.c                   |    2 +-
 14 files changed, 15 insertions(+), 15 deletions(-)

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

* [PATCH 14/14] PCI/P2PDMA: drop double zeroing
  2020-09-20 11:26 [PATCH 00/14] drop double zeroing Julia Lawall
@ 2020-09-20 11:26 ` Julia Lawall
  2020-09-28 22:24   ` Bjorn Helgaas
  2020-09-21 16:58 ` [PATCH 00/14] " Mark Brown
  2020-10-13 22:42 ` Martin K. Petersen
  2 siblings, 1 reply; 7+ messages in thread
From: Julia Lawall @ 2020-09-20 11:26 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: kernel-janitors, linux-pci, linux-kernel

sg_init_table zeroes its first argument, so the allocation of that argument
doesn't have to.

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

// <smpl>
@@
expression x;
@@

x =
- kzalloc
+ kmalloc
 (...)
...
sg_init_table(x,...)
// </smpl>

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

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

diff -u -p a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
--- a/drivers/pci/p2pdma.c
+++ b/drivers/pci/p2pdma.c
@@ -762,7 +762,7 @@ struct scatterlist *pci_p2pmem_alloc_sgl
 	struct scatterlist *sg;
 	void *addr;
 
-	sg = kzalloc(sizeof(*sg), GFP_KERNEL);
+	sg = kmalloc(sizeof(*sg), GFP_KERNEL);
 	if (!sg)
 		return NULL;
 


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

* Re: [PATCH 00/14] drop double zeroing
  2020-09-20 11:26 [PATCH 00/14] drop double zeroing Julia Lawall
  2020-09-20 11:26 ` [PATCH 14/14] PCI/P2PDMA: " Julia Lawall
@ 2020-09-21 16:58 ` Mark Brown
  2020-09-23 15:10   ` Rolf Reintjes
  2020-10-13 22:42 ` Martin K. Petersen
  2 siblings, 1 reply; 7+ messages in thread
From: Mark Brown @ 2020-09-21 16:58 UTC (permalink / raw)
  To: linux-spi, Julia Lawall
  Cc: linux-serial, linux-scsi, target-devel, kernel-janitors,
	linux-media, linux-block, Yossi Leybovich, linux-kernel,
	linux-nfs, dmaengine, linux-pci, netdev, linux-wireless,
	linux-rdma, Dan Williams, rds-devel

On Sun, 20 Sep 2020 13:26:12 +0200, Julia Lawall wrote:
> sg_init_table zeroes its first argument, so the allocation of that argument
> doesn't have to.

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next

Thanks!

[1/1] spi/topcliff-pch: drop double zeroing
      commit: ca03dba30f2b8ff45a2972c6691e4c96d8c52b3b

All being well this means that it will be integrated into the linux-next
tree (usually sometime in the next 24 hours) and sent to Linus during
the next merge window (or sooner if it is a bug fix), however if
problems are discovered then the patch may be dropped or reverted.

You may get further e-mails resulting from automated or manual testing
and review of the tree, please engage with people reporting problems and
send followup patches addressing any issues that are reported if needed.

If any updates are required or you are submitting further changes they
should be sent as incremental updates against current git, existing
patches will not be replaced.

Please add any relevant lists and maintainers to the CCs when replying
to this mail.

Thanks,
Mark

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

* Re: [PATCH 00/14] drop double zeroing
  2020-09-21 16:58 ` [PATCH 00/14] " Mark Brown
@ 2020-09-23 15:10   ` Rolf Reintjes
  2020-09-23 15:16     ` Mark Brown
  0 siblings, 1 reply; 7+ messages in thread
From: Rolf Reintjes @ 2020-09-23 15:10 UTC (permalink / raw)
  To: Mark Brown, linux-spi, Julia Lawall
  Cc: linux-serial, linux-scsi, target-devel, kernel-janitors,
	linux-media, linux-block, Yossi Leybovich, linux-kernel,
	linux-nfs, dmaengine, linux-pci, netdev, linux-wireless,
	linux-rdma, Dan Williams, rds-devel

Hello Mark,

On 21.09.20 18:58, Mark Brown wrote:
> On Sun, 20 Sep 2020 13:26:12 +0200, Julia Lawall wrote:
>> sg_init_table zeroes its first argument, so the allocation of that argument
>> doesn't have to.
> 
> Applied to
> 
>     https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next
> 
> Thanks!

I do not understand which of the 14 patches you applied. Your mail 
responds to the 00/14 mail.

Rolf

> 
> [1/1] spi/topcliff-pch: drop double zeroing
>        commit: ca03dba30f2b8ff45a2972c6691e4c96d8c52b3b
> 
> All being well this means that it will be integrated into the linux-next
> tree (usually sometime in the next 24 hours) and sent to Linus during
> the next merge window (or sooner if it is a bug fix), however if
> problems are discovered then the patch may be dropped or reverted.
> 
> You may get further e-mails resulting from automated or manual testing
> and review of the tree, please engage with people reporting problems and
> send followup patches addressing any issues that are reported if needed.
> 
> If any updates are required or you are submitting further changes they
> should be sent as incremental updates against current git, existing
> patches will not be replaced.
> 
> Please add any relevant lists and maintainers to the CCs when replying
> to this mail.
> 
> Thanks,
> Mark
> 


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

* Re: [PATCH 00/14] drop double zeroing
  2020-09-23 15:10   ` Rolf Reintjes
@ 2020-09-23 15:16     ` Mark Brown
  0 siblings, 0 replies; 7+ messages in thread
From: Mark Brown @ 2020-09-23 15:16 UTC (permalink / raw)
  To: Rolf Reintjes
  Cc: linux-spi, Julia Lawall, linux-serial, linux-scsi, target-devel,
	kernel-janitors, linux-media, linux-block, Yossi Leybovich,
	linux-kernel, linux-nfs, dmaengine, linux-pci, netdev,
	linux-wireless, linux-rdma, Dan Williams, rds-devel

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

On Wed, Sep 23, 2020 at 05:10:33PM +0200, Rolf Reintjes wrote:
> On 21.09.20 18:58, Mark Brown wrote:

> I do not understand which of the 14 patches you applied. Your mail responds
> to the 00/14 mail.

As the mail you're replying to says:

> > [1/1] spi/topcliff-pch: drop double zeroing
> >        commit: ca03dba30f2b8ff45a2972c6691e4c96d8c52b3b

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: [PATCH 14/14] PCI/P2PDMA: drop double zeroing
  2020-09-20 11:26 ` [PATCH 14/14] PCI/P2PDMA: " Julia Lawall
@ 2020-09-28 22:24   ` Bjorn Helgaas
  0 siblings, 0 replies; 7+ messages in thread
From: Bjorn Helgaas @ 2020-09-28 22:24 UTC (permalink / raw)
  To: Julia Lawall; +Cc: Bjorn Helgaas, kernel-janitors, linux-pci, linux-kernel

On Sun, Sep 20, 2020 at 01:26:26PM +0200, Julia Lawall wrote:
> sg_init_table zeroes its first argument, so the allocation of that argument
> doesn't have to.
> 
> the semantic patch that makes this change is as follows:
> (http://coccinelle.lip6.fr/)
> 
> // <smpl>
> @@
> expression x;
> @@
> 
> x =
> - kzalloc
> + kmalloc
>  (...)
> ...
> sg_init_table(x,...)
> // </smpl>
> 
> Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>

Applied to pci/misc for v5.10, thanks!

> ---
>  drivers/pci/p2pdma.c |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff -u -p a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c
> --- a/drivers/pci/p2pdma.c
> +++ b/drivers/pci/p2pdma.c
> @@ -762,7 +762,7 @@ struct scatterlist *pci_p2pmem_alloc_sgl
>  	struct scatterlist *sg;
>  	void *addr;
>  
> -	sg = kzalloc(sizeof(*sg), GFP_KERNEL);
> +	sg = kmalloc(sizeof(*sg), GFP_KERNEL);
>  	if (!sg)
>  		return NULL;
>  
> 

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

* Re: [PATCH 00/14] drop double zeroing
  2020-09-20 11:26 [PATCH 00/14] drop double zeroing Julia Lawall
  2020-09-20 11:26 ` [PATCH 14/14] PCI/P2PDMA: " Julia Lawall
  2020-09-21 16:58 ` [PATCH 00/14] " Mark Brown
@ 2020-10-13 22:42 ` Martin K. Petersen
  2 siblings, 0 replies; 7+ messages in thread
From: Martin K. Petersen @ 2020-10-13 22:42 UTC (permalink / raw)
  To: linux-spi, Julia Lawall
  Cc: Martin K . Petersen, linux-kernel, linux-pci, dmaengine,
	kernel-janitors, linux-media, target-devel, linux-rdma,
	linux-wireless, netdev, Dan Williams, linux-serial, linux-nfs,
	linux-scsi, Yossi Leybovich, linux-block, rds-devel

On Sun, 20 Sep 2020 13:26:12 +0200, Julia Lawall wrote:

> sg_init_table zeroes its first argument, so the allocation of that argument
> doesn't have to.

Applied to 5.10/scsi-queue, thanks!

[02/14] scsi: target: rd: Drop double zeroing
        https://git.kernel.org/mkp/scsi/c/4b217e015b75

-- 
Martin K. Petersen	Oracle Linux Engineering

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

end of thread, other threads:[~2020-10-13 22:44 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-20 11:26 [PATCH 00/14] drop double zeroing Julia Lawall
2020-09-20 11:26 ` [PATCH 14/14] PCI/P2PDMA: " Julia Lawall
2020-09-28 22:24   ` Bjorn Helgaas
2020-09-21 16:58 ` [PATCH 00/14] " Mark Brown
2020-09-23 15:10   ` Rolf Reintjes
2020-09-23 15:16     ` Mark Brown
2020-10-13 22:42 ` Martin K. Petersen

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).