All of lore.kernel.org
 help / color / mirror / Atom feed
* stop drivers from passing GFP_COMP to dma_alloc_coherent
@ 2022-11-13 16:35 ` Christoph Hellwig
  0 siblings, 0 replies; 81+ messages in thread
From: Christoph Hellwig @ 2022-11-13 16:35 UTC (permalink / raw)
  To: Dennis Dalessandro, Mauro Carvalho Chehab, Alexandra Winter,
	Wenjia Zhang, Marek Szyprowski, Jaroslav Kysela, Takashi Iwai,
	Russell King, Robin Murphy
  Cc: linux-s390, alsa-devel, linux-rdma, netdev, iommu,
	linux-arm-kernel, linux-media

Hi all,

this series fixes up various drivers that either try to get a compound
page from dma_alloc_coherent or more often just did a bit of cargo
cult copy and paste, and then warns about this flag passed in the
DMA layer instead of silently clearing it like done by ARM and dma-iommu
before.

Diffstat:
 arch/arm/mm/dma-mapping.c                     |   17 -----------------
 drivers/infiniband/hw/hfi1/init.c             |   21 +++------------------
 drivers/infiniband/hw/qib/qib_iba6120.c       |    2 +-
 drivers/infiniband/hw/qib/qib_init.c          |   21 ++++-----------------
 drivers/iommu/dma-iommu.c                     |    3 ---
 drivers/media/v4l2-core/videobuf-dma-contig.c |   22 ++++++++--------------
 drivers/net/ethernet/broadcom/cnic.c          |    6 ++----
 drivers/s390/net/ism_drv.c                    |    3 ++-
 kernel/dma/mapping.c                          |    8 ++++++++
 sound/core/memalloc.c                         |    5 ++---
 10 files changed, 30 insertions(+), 78 deletions(-)

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

end of thread, other threads:[~2022-11-29 14:08 UTC | newest]

Thread overview: 81+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-11-13 16:35 stop drivers from passing GFP_COMP to dma_alloc_coherent Christoph Hellwig
2022-11-13 16:35 ` Christoph Hellwig
2022-11-13 16:35 ` Christoph Hellwig
2022-11-13 16:35 ` [PATCH 1/7] media: videobuf-dma-contig: use dma_mmap_coherent Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-24 14:10   ` Hans Verkuil
2022-11-24 14:10     ` Hans Verkuil
2022-11-24 14:10     ` Hans Verkuil
2022-11-29 14:00     ` Christoph Hellwig
2022-11-29 14:00       ` Christoph Hellwig
2022-11-29 14:00       ` Christoph Hellwig
2022-11-13 16:35 ` [PATCH 2/7] RDMA/hfi1: don't pass bogus GFP_ flags to dma_alloc_coherent Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-15 20:39   ` Jason Gunthorpe
2022-11-15 20:39     ` Jason Gunthorpe
2022-11-15 20:39     ` Jason Gunthorpe
2022-11-16 14:40   ` Dean Luick
2022-11-16 14:40     ` Dean Luick
2022-11-16 14:40     ` Dean Luick
2022-11-16 15:15     ` Robin Murphy
2022-11-16 15:15       ` Robin Murphy
2022-11-16 15:15       ` Robin Murphy
2022-11-16 15:45       ` Christoph Hellwig
2022-11-16 15:45         ` Christoph Hellwig
2022-11-16 15:45         ` Christoph Hellwig
2022-11-16 17:49         ` Dean Luick
2022-11-16 17:49           ` Dean Luick
2022-11-16 17:49           ` Dean Luick
2022-11-20 20:41           ` Dean Luick
2022-11-20 20:41             ` Dean Luick
2022-11-20 20:41             ` Dean Luick
2022-11-16 16:21       ` Dean Luick
2022-11-16 16:21         ` Dean Luick
2022-11-16 16:21         ` Dean Luick
2022-11-16 18:37         ` Robin Murphy
2022-11-16 18:37           ` Robin Murphy
2022-11-16 18:37           ` Robin Murphy
2022-11-13 16:35 ` [PATCH 3/7] RDMA/qib: " Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-15 20:40   ` Jason Gunthorpe
2022-11-15 20:40     ` Jason Gunthorpe
2022-11-15 20:40     ` Jason Gunthorpe
2022-11-13 16:35 ` [PATCH 4/7] cnic: " Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35 ` [PATCH 5/7] s390/ism: " Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-16 12:39   ` Wenjia Zhang
2022-11-16 12:39     ` Wenjia Zhang
2022-11-16 12:39     ` Wenjia Zhang
2022-11-13 16:35 ` [PATCH 6/7] ALSA: memalloc: don't pass bogus GFP_ flags to dma_alloc_* Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-14  9:04   ` Takashi Iwai
2022-11-14  9:04     ` Takashi Iwai
2022-11-14  9:04     ` Takashi Iwai
2022-11-21  8:37     ` Christoph Hellwig
2022-11-21  8:37       ` Christoph Hellwig
2022-11-21  8:37       ` Christoph Hellwig
2022-11-13 16:35 ` [PATCH 7/7] dma-mapping: reject __GFP_COMP in dma_alloc_attrs Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-13 16:35   ` Christoph Hellwig
2022-11-14  8:11   ` Leon Romanovsky
2022-11-14  8:11     ` Leon Romanovsky
2022-11-14  8:11     ` Leon Romanovsky
2022-11-16  6:11     ` Christoph Hellwig
2022-11-16  6:11       ` Christoph Hellwig
2022-11-16  6:11       ` Christoph Hellwig
2022-11-16  7:11       ` Leon Romanovsky
2022-11-16  7:11         ` Leon Romanovsky
2022-11-16  7:11         ` Leon Romanovsky
2022-11-14 12:16   ` Marek Szyprowski
2022-11-14 12:16     ` Marek Szyprowski
2022-11-14 12:16     ` Marek Szyprowski
2022-11-21  8:39 ` stop drivers from passing GFP_COMP to dma_alloc_coherent Christoph Hellwig
2022-11-21  8:39   ` Christoph Hellwig
2022-11-21  8:39   ` Christoph Hellwig

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.