linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* remove dma_supported and pci_dma_supported as public APIs
@ 2015-10-03 15:19 Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 01/15] pcnet32: use pci_set_dma_mask insted of pci_dma_supported Christoph Hellwig
                   ` (14 more replies)
  0 siblings, 15 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

All driver should be using dma_set_mask / pci_set_dma_mask to try
to set the dma mask instead of just querying it.  Without that some
iommu implementations may not work.

pci_dma_supported is removed entirely, but dma_supported stays for
dma_ops implementations for now.


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

* [PATCH 01/15] pcnet32: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-06  3:57   ` Don Fry
  2015-10-03 15:19 ` [PATCH 02/15] tw68-core: " Christoph Hellwig
                   ` (13 subsequent siblings)
  14 siblings, 1 reply; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/net/ethernet/amd/pcnet32.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/ethernet/amd/pcnet32.c b/drivers/net/ethernet/amd/pcnet32.c
index bc8b04f..e2afabf 100644
--- a/drivers/net/ethernet/amd/pcnet32.c
+++ b/drivers/net/ethernet/amd/pcnet32.c
@@ -1500,7 +1500,7 @@ pcnet32_probe_pci(struct pci_dev *pdev, const struct pci_device_id *ent)
 		return -ENODEV;
 	}
 
-	if (!pci_dma_supported(pdev, PCNET32_DMA_MASK)) {
+	if (!pci_set_dma_mask(pdev, PCNET32_DMA_MASK)) {
 		if (pcnet32_debug & NETIF_MSG_PROBE)
 			pr_err("architecture does not support 32bit PCI busmaster DMA\n");
 		return -ENODEV;
-- 
1.9.1


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

* [PATCH 02/15] tw68-core: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 01/15] pcnet32: use pci_set_dma_mask insted of pci_dma_supported Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 03/15] saa7164: " Christoph Hellwig
                   ` (12 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/media/pci/tw68/tw68-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/pci/tw68/tw68-core.c b/drivers/media/pci/tw68/tw68-core.c
index 04706cc..8c5655d 100644
--- a/drivers/media/pci/tw68/tw68-core.c
+++ b/drivers/media/pci/tw68/tw68-core.c
@@ -257,7 +257,7 @@ static int tw68_initdev(struct pci_dev *pci_dev,
 		dev->name, pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
 		dev->pci_lat, (u64)pci_resource_start(pci_dev, 0));
 	pci_set_master(pci_dev);
-	if (!pci_dma_supported(pci_dev, DMA_BIT_MASK(32))) {
+	if (!pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32))) {
 		pr_info("%s: Oops: no 32bit PCI DMA ???\n", dev->name);
 		err = -EIO;
 		goto fail1;
-- 
1.9.1


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

* [PATCH 03/15] saa7164: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 01/15] pcnet32: use pci_set_dma_mask insted of pci_dma_supported Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 02/15] tw68-core: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 04/15] saa7134: " Christoph Hellwig
                   ` (11 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/media/pci/saa7164/saa7164-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/pci/saa7164/saa7164-core.c b/drivers/media/pci/saa7164/saa7164-core.c
index 3206a82..8f36b48 100644
--- a/drivers/media/pci/saa7164/saa7164-core.c
+++ b/drivers/media/pci/saa7164/saa7164-core.c
@@ -1264,7 +1264,7 @@ static int saa7164_initdev(struct pci_dev *pci_dev,
 
 	pci_set_master(pci_dev);
 	/* TODO */
-	if (!pci_dma_supported(pci_dev, 0xffffffff)) {
+	if (!pci_set_dma_mask(pci_dev, 0xffffffff)) {
 		printk("%s/0: Oops: no 32bit PCI DMA ???\n", dev->name);
 		err = -EIO;
 		goto fail_irq;
-- 
1.9.1


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

* [PATCH 04/15] saa7134: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (2 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 03/15] saa7164: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 05/15] cx88: " Christoph Hellwig
                   ` (10 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/media/pci/saa7134/saa7134-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/pci/saa7134/saa7134-core.c b/drivers/media/pci/saa7134/saa7134-core.c
index 72d7f99..6ba4086 100644
--- a/drivers/media/pci/saa7134/saa7134-core.c
+++ b/drivers/media/pci/saa7134/saa7134-core.c
@@ -949,7 +949,7 @@ static int saa7134_initdev(struct pci_dev *pci_dev,
 	       pci_name(pci_dev), dev->pci_rev, pci_dev->irq,
 	       dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
 	pci_set_master(pci_dev);
-	if (!pci_dma_supported(pci_dev, DMA_BIT_MASK(32))) {
+	if (!pci_set_dma_mask(pci_dev, DMA_BIT_MASK(32))) {
 		pr_warn("%s: Oops: no 32bit PCI DMA ???\n", dev->name);
 		err = -EIO;
 		goto fail1;
-- 
1.9.1


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

* [PATCH 05/15] cx88: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (3 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 04/15] saa7134: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 16:58   ` Mauro Carvalho Chehab
  2015-10-03 15:19 ` [PATCH 06/15] cx25821: " Christoph Hellwig
                   ` (9 subsequent siblings)
  14 siblings, 1 reply; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/media/pci/cx88/cx88-alsa.c  | 2 +-
 drivers/media/pci/cx88/cx88-mpeg.c  | 2 +-
 drivers/media/pci/cx88/cx88-video.c | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/media/pci/cx88/cx88-alsa.c b/drivers/media/pci/cx88/cx88-alsa.c
index 7f8dc60..0703a81 100644
--- a/drivers/media/pci/cx88/cx88-alsa.c
+++ b/drivers/media/pci/cx88/cx88-alsa.c
@@ -890,7 +890,7 @@ static int snd_cx88_create(struct snd_card *card, struct pci_dev *pci,
 		return err;
 	}
 
-	if (!pci_dma_supported(pci,DMA_BIT_MASK(32))) {
+	if (!pci_set_dma_mask(pci,DMA_BIT_MASK(32))) {
 		dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name);
 		err = -EIO;
 		cx88_core_put(core, pci);
diff --git a/drivers/media/pci/cx88/cx88-mpeg.c b/drivers/media/pci/cx88/cx88-mpeg.c
index 34f5057..9b3b565 100644
--- a/drivers/media/pci/cx88/cx88-mpeg.c
+++ b/drivers/media/pci/cx88/cx88-mpeg.c
@@ -393,7 +393,7 @@ static int cx8802_init_common(struct cx8802_dev *dev)
 	if (pci_enable_device(dev->pci))
 		return -EIO;
 	pci_set_master(dev->pci);
-	if (!pci_dma_supported(dev->pci,DMA_BIT_MASK(32))) {
+	if (!pci_set_dma_mask(dev->pci,DMA_BIT_MASK(32))) {
 		printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
 		return -EIO;
 	}
diff --git a/drivers/media/pci/cx88/cx88-video.c b/drivers/media/pci/cx88/cx88-video.c
index 400e5ca..f12af31 100644
--- a/drivers/media/pci/cx88/cx88-video.c
+++ b/drivers/media/pci/cx88/cx88-video.c
@@ -1311,7 +1311,7 @@ static int cx8800_initdev(struct pci_dev *pci_dev,
 	       dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
 
 	pci_set_master(pci_dev);
-	if (!pci_dma_supported(pci_dev,DMA_BIT_MASK(32))) {
+	if (!pci_set_dma_mask(pci_dev,DMA_BIT_MASK(32))) {
 		printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name);
 		err = -EIO;
 		goto fail_core;
-- 
1.9.1


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

* [PATCH 06/15] cx25821: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (4 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 05/15] cx88: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 07/15] cx23885: " Christoph Hellwig
                   ` (8 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/media/pci/cx25821/cx25821-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/pci/cx25821/cx25821-core.c b/drivers/media/pci/cx25821/cx25821-core.c
index 559f829..dbc695f 100644
--- a/drivers/media/pci/cx25821/cx25821-core.c
+++ b/drivers/media/pci/cx25821/cx25821-core.c
@@ -1319,7 +1319,7 @@ static int cx25821_initdev(struct pci_dev *pci_dev,
 		dev->pci_lat, (unsigned long long)dev->base_io_addr);
 
 	pci_set_master(pci_dev);
-	if (!pci_dma_supported(pci_dev, 0xffffffff)) {
+	if (!pci_set_dma_mask(pci_dev, 0xffffffff)) {
 		pr_err("%s/0: Oops: no 32bit PCI DMA ???\n", dev->name);
 		err = -EIO;
 		goto fail_irq;
-- 
1.9.1


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

* [PATCH 07/15] cx23885: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (5 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 06/15] cx25821: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 08/15] netup_unidvb: " Christoph Hellwig
                   ` (7 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/media/pci/cx23885/cx23885-core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/pci/cx23885/cx23885-core.c b/drivers/media/pci/cx23885/cx23885-core.c
index 7aee76a..8194052 100644
--- a/drivers/media/pci/cx23885/cx23885-core.c
+++ b/drivers/media/pci/cx23885/cx23885-core.c
@@ -1990,7 +1990,7 @@ static int cx23885_initdev(struct pci_dev *pci_dev,
 		(unsigned long long)pci_resource_start(pci_dev, 0));
 
 	pci_set_master(pci_dev);
-	if (!pci_dma_supported(pci_dev, 0xffffffff)) {
+	if (!pci_set_dma_mask(pci_dev, 0xffffffff)) {
 		printk("%s/0: Oops: no 32bit PCI DMA ???\n", dev->name);
 		err = -EIO;
 		goto fail_context;
-- 
1.9.1


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

* [PATCH 08/15] netup_unidvb: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (6 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 07/15] cx23885: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-07  8:03   ` Abylay Ospan
  2015-10-03 15:19 ` [PATCH 09/15] mpsc: use dma_set_mask insted of dma_supported Christoph Hellwig
                   ` (6 subsequent siblings)
  14 siblings, 1 reply; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/media/pci/netup_unidvb/netup_unidvb_core.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/media/pci/netup_unidvb/netup_unidvb_core.c b/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
index 6d8bf627..511144f 100644
--- a/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
+++ b/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
@@ -809,7 +809,7 @@ static int netup_unidvb_initdev(struct pci_dev *pci_dev,
 		"%s(): board vendor 0x%x, revision 0x%x\n",
 		__func__, board_vendor, board_revision);
 	pci_set_master(pci_dev);
-	if (!pci_dma_supported(pci_dev, 0xffffffff)) {
+	if (!pci_set_dma_mask(pci_dev, 0xffffffff)) {
 		dev_err(&pci_dev->dev,
 			"%s(): 32bit PCI DMA is not supported\n", __func__);
 		goto pci_detect_err;
-- 
1.9.1


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

* [PATCH 09/15] mpsc: use dma_set_mask insted of dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (7 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 08/15] netup_unidvb: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 10/15] nouveau: don't call pci_dma_supported Christoph Hellwig
                   ` (5 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

This ensures the dma mask that is supported by the driver is recorded
in the device structure.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/tty/serial/mpsc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/tty/serial/mpsc.c b/drivers/tty/serial/mpsc.c
index 82bb6d1..11e084e 100644
--- a/drivers/tty/serial/mpsc.c
+++ b/drivers/tty/serial/mpsc.c
@@ -755,7 +755,7 @@ static int mpsc_alloc_ring_mem(struct mpsc_port_info *pi)
 		pi->port.line);
 
 	if (!pi->dma_region) {
-		if (!dma_supported(pi->port.dev, 0xffffffff)) {
+		if (!dma_set_mask(pi->port.dev, 0xffffffff)) {
 			printk(KERN_ERR "MPSC: Inadequate DMA support\n");
 			rc = -ENXIO;
 		} else if ((pi->dma_region = dma_alloc_noncoherent(pi->port.dev,
-- 
1.9.1


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

* [PATCH 10/15] nouveau: don't call pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (8 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 09/15] mpsc: use dma_set_mask insted of dma_supported Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 11/15] sfc: don't call dma_supported Christoph Hellwig
                   ` (4 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

Just try to set a 64-bit DMA mask first and retry with the smaller dma_mask
if dma_set_mask failed.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/gpu/drm/nouveau/nouveau_ttm.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/nouveau/nouveau_ttm.c b/drivers/gpu/drm/nouveau/nouveau_ttm.c
index 3f0fb55..bb030e6 100644
--- a/drivers/gpu/drm/nouveau/nouveau_ttm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_ttm.c
@@ -350,11 +350,14 @@ nouveau_ttm_init(struct nouveau_drm *drm)
 
 	bits = nvxx_mmu(&drm->device)->dma_bits;
 	if (nvxx_device(&drm->device)->func->pci) {
-		if (drm->agp.bridge ||
-		     !pci_dma_supported(dev->pdev, DMA_BIT_MASK(bits)))
+		if (drm->agp.bridge)
 			bits = 32;
 
 		ret = pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(bits));
+		if (ret && bits != 32) {
+			bits = 32;
+			ret = pci_set_dma_mask(dev->pdev, DMA_BIT_MASK(bits));
+		}
 		if (ret)
 			return ret;
 
-- 
1.9.1


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

* [PATCH 11/15] sfc: don't call dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (9 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 10/15] nouveau: don't call pci_dma_supported Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-05 15:08   ` Bert Kenward
  2015-10-03 15:19 ` [PATCH 12/15] kaweth: remove ifdefed out call to dma_supported Christoph Hellwig
                   ` (3 subsequent siblings)
  14 siblings, 1 reply; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

dma_set_mask already checks for a supported DMA mask before updating it,
the call to dma_supported is redundant.

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/net/ethernet/sfc/efx.c | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/drivers/net/ethernet/sfc/efx.c b/drivers/net/ethernet/sfc/efx.c
index 974637d..4abe886 100644
--- a/drivers/net/ethernet/sfc/efx.c
+++ b/drivers/net/ethernet/sfc/efx.c
@@ -1247,11 +1247,9 @@ static int efx_init_io(struct efx_nic *efx)
 	 * masks event though they reject 46 bit masks.
 	 */
 	while (dma_mask > 0x7fffffffUL) {
-		if (dma_supported(&pci_dev->dev, dma_mask)) {
-			rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
-			if (rc == 0)
-				break;
-		}
+		rc = dma_set_mask_and_coherent(&pci_dev->dev, dma_mask);
+		if (rc == 0)
+			break;
 		dma_mask >>= 1;
 	}
 	if (rc) {
-- 
1.9.1


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

* [PATCH 12/15] kaweth: remove ifdefed out call to dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (10 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 11/15] sfc: don't call dma_supported Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 13/15] usbnet: " Christoph Hellwig
                   ` (2 subsequent siblings)
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/net/usb/kaweth.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/drivers/net/usb/kaweth.c b/drivers/net/usb/kaweth.c
index 1e9cdca..f64b25c 100644
--- a/drivers/net/usb/kaweth.c
+++ b/drivers/net/usb/kaweth.c
@@ -1177,12 +1177,6 @@ err_fw:
 	INIT_DELAYED_WORK(&kaweth->lowmem_work, kaweth_resubmit_tl);
 	usb_set_intfdata(intf, kaweth);
 
-#if 0
-// dma_supported() is deeply broken on almost all architectures
-	if (dma_supported (dev, 0xffffffffffffffffULL))
-		kaweth->net->features |= NETIF_F_HIGHDMA;
-#endif
-
 	SET_NETDEV_DEV(netdev, dev);
 	if (register_netdev(netdev) != 0) {
 		dev_err(dev, "Error registering netdev.\n");
-- 
1.9.1


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

* [PATCH 13/15] usbnet: remove ifdefed out call to dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (11 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 12/15] kaweth: remove ifdefed out call to dma_supported Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 14/15] pci: remove pci_dma_supported Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 15/15] dma: remove external references to dma_supported Christoph Hellwig
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/net/usb/usbnet.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/drivers/net/usb/usbnet.c b/drivers/net/usb/usbnet.c
index b4cf107..9497d51 100644
--- a/drivers/net/usb/usbnet.c
+++ b/drivers/net/usb/usbnet.c
@@ -1661,12 +1661,6 @@ usbnet_probe (struct usb_interface *udev, const struct usb_device_id *prod)
 	 * bind() should set rx_urb_size in that case.
 	 */
 	dev->hard_mtu = net->mtu + net->hard_header_len;
-#if 0
-// dma_supported() is deeply broken on almost all architectures
-	// possible with some EHCI controllers
-	if (dma_supported (&udev->dev, DMA_BIT_MASK(64)))
-		net->features |= NETIF_F_HIGHDMA;
-#endif
 
 	net->netdev_ops = &usbnet_netdev_ops;
 	net->watchdog_timeo = TX_TIMEOUT_JIFFIES;
-- 
1.9.1


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

* [PATCH 14/15] pci: remove pci_dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (12 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 13/15] usbnet: " Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-03 15:19 ` [PATCH 15/15] dma: remove external references to dma_supported Christoph Hellwig
  14 siblings, 0 replies; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 drivers/parisc/ccio-dma.c            | 2 --
 include/asm-generic/pci-dma-compat.h | 6 ------
 2 files changed, 8 deletions(-)

diff --git a/drivers/parisc/ccio-dma.c b/drivers/parisc/ccio-dma.c
index 957b421..8e11fb2 100644
--- a/drivers/parisc/ccio-dma.c
+++ b/drivers/parisc/ccio-dma.c
@@ -704,8 +704,6 @@ ccio_mark_invalid(struct ioc *ioc, dma_addr_t iova, size_t byte_cnt)
  * ccio_dma_supported - Verify the IOMMU supports the DMA address range.
  * @dev: The PCI device.
  * @mask: A bit mask describing the DMA address range of the device.
- *
- * This function implements the pci_dma_supported function.
  */
 static int 
 ccio_dma_supported(struct device *dev, u64 mask)
diff --git a/include/asm-generic/pci-dma-compat.h b/include/asm-generic/pci-dma-compat.h
index c110843..eafce7b 100644
--- a/include/asm-generic/pci-dma-compat.h
+++ b/include/asm-generic/pci-dma-compat.h
@@ -6,12 +6,6 @@
 
 #include <linux/dma-mapping.h>
 
-static inline int
-pci_dma_supported(struct pci_dev *hwdev, u64 mask)
-{
-	return dma_supported(hwdev == NULL ? NULL : &hwdev->dev, mask);
-}
-
 static inline void *
 pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
 		     dma_addr_t *dma_handle)
-- 
1.9.1


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

* [PATCH 15/15] dma: remove external references to dma_supported
  2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
                   ` (13 preceding siblings ...)
  2015-10-03 15:19 ` [PATCH 14/15] pci: remove pci_dma_supported Christoph Hellwig
@ 2015-10-03 15:19 ` Christoph Hellwig
  2015-10-04  9:57   ` Greg KH
  14 siblings, 1 reply; 21+ messages in thread
From: Christoph Hellwig @ 2015-10-03 15:19 UTC (permalink / raw)
  To: Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

Signed-off-by: Christoph Hellwig <hch@lst.de>
---
 Documentation/DMA-API.txt       | 13 -------------
 drivers/usb/host/ehci-hcd.c     |  2 +-
 drivers/usb/host/fotg210-hcd.c  |  2 +-
 drivers/usb/host/fusbh200-hcd.c |  2 +-
 drivers/usb/host/oxu210hp-hcd.c |  2 +-
 5 files changed, 4 insertions(+), 17 deletions(-)

diff --git a/Documentation/DMA-API.txt b/Documentation/DMA-API.txt
index edccacd..55f48684 100644
--- a/Documentation/DMA-API.txt
+++ b/Documentation/DMA-API.txt
@@ -142,19 +142,6 @@ Part Ic - DMA addressing limitations
 ------------------------------------
 
 int
-dma_supported(struct device *dev, u64 mask)
-
-Checks to see if the device can support DMA to the memory described by
-mask.
-
-Returns: 1 if it can and 0 if it can't.
-
-Notes: This routine merely tests to see if the mask is possible.  It
-won't change the current mask settings.  It is more intended as an
-internal API for use by the platform than an external API for use by
-driver writers.
-
-int
 dma_set_mask_and_coherent(struct device *dev, u64 mask)
 
 Checks to see if the mask is possible and updates the device
diff --git a/drivers/usb/host/ehci-hcd.c b/drivers/usb/host/ehci-hcd.c
index c63d82c..48c92bf 100644
--- a/drivers/usb/host/ehci-hcd.c
+++ b/drivers/usb/host/ehci-hcd.c
@@ -589,7 +589,7 @@ static int ehci_run (struct usb_hcd *hcd)
 	 * streaming mappings for I/O buffers, like pci_map_single(),
 	 * can return segments above 4GB, if the device allows.
 	 *
-	 * NOTE:  the dma mask is visible through dma_supported(), so
+	 * NOTE:  the dma mask is visible through dev->dma_mask, so
 	 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
 	 * Scsi_Host.highmem_io, and so forth.  It's readonly to all
 	 * host side drivers though.
diff --git a/drivers/usb/host/fotg210-hcd.c b/drivers/usb/host/fotg210-hcd.c
index 000ed80..c5fc3ef 100644
--- a/drivers/usb/host/fotg210-hcd.c
+++ b/drivers/usb/host/fotg210-hcd.c
@@ -5258,7 +5258,7 @@ static int fotg210_run(struct usb_hcd *hcd)
 	 * streaming mappings for I/O buffers, like pci_map_single(),
 	 * can return segments above 4GB, if the device allows.
 	 *
-	 * NOTE:  the dma mask is visible through dma_supported(), so
+	 * NOTE:  the dma mask is visible through dev->dma_mask, so
 	 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
 	 * Scsi_Host.highmem_io, and so forth.  It's readonly to all
 	 * host side drivers though.
diff --git a/drivers/usb/host/fusbh200-hcd.c b/drivers/usb/host/fusbh200-hcd.c
index 1fd8718..4a1243a 100644
--- a/drivers/usb/host/fusbh200-hcd.c
+++ b/drivers/usb/host/fusbh200-hcd.c
@@ -5181,7 +5181,7 @@ static int fusbh200_run (struct usb_hcd *hcd)
 	 * streaming mappings for I/O buffers, like pci_map_single(),
 	 * can return segments above 4GB, if the device allows.
 	 *
-	 * NOTE:  the dma mask is visible through dma_supported(), so
+	 * NOTE:  the dma mask is visible through dev->dma_mask, so
 	 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
 	 * Scsi_Host.highmem_io, and so forth.  It's readonly to all
 	 * host side drivers though.
diff --git a/drivers/usb/host/oxu210hp-hcd.c b/drivers/usb/host/oxu210hp-hcd.c
index fe3bd1c..1f139d8 100644
--- a/drivers/usb/host/oxu210hp-hcd.c
+++ b/drivers/usb/host/oxu210hp-hcd.c
@@ -2721,7 +2721,7 @@ static int oxu_run(struct usb_hcd *hcd)
 	 * streaming mappings for I/O buffers, like pci_map_single(),
 	 * can return segments above 4GB, if the device allows.
 	 *
-	 * NOTE:  the dma mask is visible through dma_supported(), so
+	 * NOTE:  the dma mask is visible through dev->dma_mask, so
 	 * drivers can pass this info along ... like NETIF_F_HIGHDMA,
 	 * Scsi_Host.highmem_io, and so forth.  It's readonly to all
 	 * host side drivers though.
-- 
1.9.1


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

* Re: [PATCH 05/15] cx88: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 ` [PATCH 05/15] cx88: " Christoph Hellwig
@ 2015-10-03 16:58   ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 21+ messages in thread
From: Mauro Carvalho Chehab @ 2015-10-03 16:58 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Andrew Morton, Don Fry, Oliver Neukum, linux-net-drivers,
	dri-devel, linux-media, netdev, linux-parisc, linux-serial,
	linux-usb, linux-kernel

Hi Christoph,


Em Sat,  3 Oct 2015 17:19:29 +0200
Christoph Hellwig <hch@lst.de> escreveu:

> This ensures the dma mask that is supported by the driver is recorded
> in the device structure.


For this and the other patches touching at drivers/media:

Acked-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>

> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  drivers/media/pci/cx88/cx88-alsa.c  | 2 +-
>  drivers/media/pci/cx88/cx88-mpeg.c  | 2 +-
>  drivers/media/pci/cx88/cx88-video.c | 2 +-
>  3 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/media/pci/cx88/cx88-alsa.c b/drivers/media/pci/cx88/cx88-alsa.c
> index 7f8dc60..0703a81 100644
> --- a/drivers/media/pci/cx88/cx88-alsa.c
> +++ b/drivers/media/pci/cx88/cx88-alsa.c
> @@ -890,7 +890,7 @@ static int snd_cx88_create(struct snd_card *card, struct pci_dev *pci,
>  		return err;
>  	}
>  
> -	if (!pci_dma_supported(pci,DMA_BIT_MASK(32))) {
> +	if (!pci_set_dma_mask(pci,DMA_BIT_MASK(32))) {
>  		dprintk(0, "%s/1: Oops: no 32bit PCI DMA ???\n",core->name);
>  		err = -EIO;
>  		cx88_core_put(core, pci);
> diff --git a/drivers/media/pci/cx88/cx88-mpeg.c b/drivers/media/pci/cx88/cx88-mpeg.c
> index 34f5057..9b3b565 100644
> --- a/drivers/media/pci/cx88/cx88-mpeg.c
> +++ b/drivers/media/pci/cx88/cx88-mpeg.c
> @@ -393,7 +393,7 @@ static int cx8802_init_common(struct cx8802_dev *dev)
>  	if (pci_enable_device(dev->pci))
>  		return -EIO;
>  	pci_set_master(dev->pci);
> -	if (!pci_dma_supported(dev->pci,DMA_BIT_MASK(32))) {
> +	if (!pci_set_dma_mask(dev->pci,DMA_BIT_MASK(32))) {
>  		printk("%s/2: Oops: no 32bit PCI DMA ???\n",dev->core->name);
>  		return -EIO;
>  	}
> diff --git a/drivers/media/pci/cx88/cx88-video.c b/drivers/media/pci/cx88/cx88-video.c
> index 400e5ca..f12af31 100644
> --- a/drivers/media/pci/cx88/cx88-video.c
> +++ b/drivers/media/pci/cx88/cx88-video.c
> @@ -1311,7 +1311,7 @@ static int cx8800_initdev(struct pci_dev *pci_dev,
>  	       dev->pci_lat,(unsigned long long)pci_resource_start(pci_dev,0));
>  
>  	pci_set_master(pci_dev);
> -	if (!pci_dma_supported(pci_dev,DMA_BIT_MASK(32))) {
> +	if (!pci_set_dma_mask(pci_dev,DMA_BIT_MASK(32))) {
>  		printk("%s/0: Oops: no 32bit PCI DMA ???\n",core->name);
>  		err = -EIO;
>  		goto fail_core;

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

* Re: [PATCH 15/15] dma: remove external references to dma_supported
  2015-10-03 15:19 ` [PATCH 15/15] dma: remove external references to dma_supported Christoph Hellwig
@ 2015-10-04  9:57   ` Greg KH
  0 siblings, 0 replies; 21+ messages in thread
From: Greg KH @ 2015-10-04  9:57 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Andrew Morton, Don Fry, Oliver Neukum, linux-net-drivers,
	dri-devel, linux-media, netdev, linux-parisc, linux-serial,
	linux-usb, linux-kernel

On Sat, Oct 03, 2015 at 05:19:39PM +0200, Christoph Hellwig wrote:
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  Documentation/DMA-API.txt       | 13 -------------
>  drivers/usb/host/ehci-hcd.c     |  2 +-
>  drivers/usb/host/fotg210-hcd.c  |  2 +-
>  drivers/usb/host/fusbh200-hcd.c |  2 +-
>  drivers/usb/host/oxu210hp-hcd.c |  2 +-
>  5 files changed, 4 insertions(+), 17 deletions(-)


Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

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

* Re: [PATCH 11/15] sfc: don't call dma_supported
  2015-10-03 15:19 ` [PATCH 11/15] sfc: don't call dma_supported Christoph Hellwig
@ 2015-10-05 15:08   ` Bert Kenward
  0 siblings, 0 replies; 21+ messages in thread
From: Bert Kenward @ 2015-10-05 15:08 UTC (permalink / raw)
  To: Christoph Hellwig, Andrew Morton, Don Fry, Oliver Neukum
  Cc: linux-net-drivers, dri-devel, linux-media, netdev, linux-parisc,
	linux-serial, linux-usb, linux-kernel

On 03/10/15 16:19, Christoph Hellwig wrote:
> dma_set_mask already checks for a supported DMA mask before updating it,
> the call to dma_supported is redundant.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>

Acked-by: Bert Kenward <bkenward@solarflare.com>

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

* Re: [PATCH 01/15] pcnet32: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 ` [PATCH 01/15] pcnet32: use pci_set_dma_mask insted of pci_dma_supported Christoph Hellwig
@ 2015-10-06  3:57   ` Don Fry
  0 siblings, 0 replies; 21+ messages in thread
From: Don Fry @ 2015-10-06  3:57 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Andrew Morton, Oliver Neukum, linux-net-drivers, dri-devel,
	linux-media, netdev, linux-parisc, linux-serial, linux-usb,
	linux-kernel

On Sat, 2015-10-03 at 17:19 +0200, Christoph Hellwig wrote:
> This ensures the dma mask that is supported by the driver is recorded
> in the device structure.
> 
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  drivers/net/ethernet/amd/pcnet32.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Don Fry <pcnet32@frontier.com>

> diff --git a/drivers/net/ethernet/amd/pcnet32.c b/drivers/net/ethernet/amd/pcnet32.c
> index bc8b04f..e2afabf 100644
> --- a/drivers/net/ethernet/amd/pcnet32.c
> +++ b/drivers/net/ethernet/amd/pcnet32.c
> @@ -1500,7 +1500,7 @@ pcnet32_probe_pci(struct pci_dev *pdev, const struct pci_device_id *ent)
>  		return -ENODEV;
>  	}
>  
> -	if (!pci_dma_supported(pdev, PCNET32_DMA_MASK)) {
> +	if (!pci_set_dma_mask(pdev, PCNET32_DMA_MASK)) {
>  		if (pcnet32_debug & NETIF_MSG_PROBE)
>  			pr_err("architecture does not support 32bit PCI busmaster DMA\n");
>  		return -ENODEV;



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

* Re: [PATCH 08/15] netup_unidvb: use pci_set_dma_mask insted of pci_dma_supported
  2015-10-03 15:19 ` [PATCH 08/15] netup_unidvb: " Christoph Hellwig
@ 2015-10-07  8:03   ` Abylay Ospan
  0 siblings, 0 replies; 21+ messages in thread
From: Abylay Ospan @ 2015-10-07  8:03 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Andrew Morton, Don Fry, Oliver Neukum, linux-net-drivers,
	dri-devel, linux-media, netdev, linux-parisc, linux-serial,
	linux-usb, linux-kernel

Hello,

Acked-by: Abylay Ospan <aospan@netup.ru>

thanks !

2015-10-03 18:19 GMT+03:00 Christoph Hellwig <hch@lst.de>:
> This ensures the dma mask that is supported by the driver is recorded
> in the device structure.
>
> Signed-off-by: Christoph Hellwig <hch@lst.de>
> ---
>  drivers/media/pci/netup_unidvb/netup_unidvb_core.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/media/pci/netup_unidvb/netup_unidvb_core.c b/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
> index 6d8bf627..511144f 100644
> --- a/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
> +++ b/drivers/media/pci/netup_unidvb/netup_unidvb_core.c
> @@ -809,7 +809,7 @@ static int netup_unidvb_initdev(struct pci_dev *pci_dev,
>                 "%s(): board vendor 0x%x, revision 0x%x\n",
>                 __func__, board_vendor, board_revision);
>         pci_set_master(pci_dev);
> -       if (!pci_dma_supported(pci_dev, 0xffffffff)) {
> +       if (!pci_set_dma_mask(pci_dev, 0xffffffff)) {
>                 dev_err(&pci_dev->dev,
>                         "%s(): 32bit PCI DMA is not supported\n", __func__);
>                 goto pci_detect_err;
> --
> 1.9.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-media" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html



-- 
Abylay Ospan,
NetUP Inc.
http://www.netup.tv

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

end of thread, other threads:[~2015-10-07  8:03 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-03 15:19 remove dma_supported and pci_dma_supported as public APIs Christoph Hellwig
2015-10-03 15:19 ` [PATCH 01/15] pcnet32: use pci_set_dma_mask insted of pci_dma_supported Christoph Hellwig
2015-10-06  3:57   ` Don Fry
2015-10-03 15:19 ` [PATCH 02/15] tw68-core: " Christoph Hellwig
2015-10-03 15:19 ` [PATCH 03/15] saa7164: " Christoph Hellwig
2015-10-03 15:19 ` [PATCH 04/15] saa7134: " Christoph Hellwig
2015-10-03 15:19 ` [PATCH 05/15] cx88: " Christoph Hellwig
2015-10-03 16:58   ` Mauro Carvalho Chehab
2015-10-03 15:19 ` [PATCH 06/15] cx25821: " Christoph Hellwig
2015-10-03 15:19 ` [PATCH 07/15] cx23885: " Christoph Hellwig
2015-10-03 15:19 ` [PATCH 08/15] netup_unidvb: " Christoph Hellwig
2015-10-07  8:03   ` Abylay Ospan
2015-10-03 15:19 ` [PATCH 09/15] mpsc: use dma_set_mask insted of dma_supported Christoph Hellwig
2015-10-03 15:19 ` [PATCH 10/15] nouveau: don't call pci_dma_supported Christoph Hellwig
2015-10-03 15:19 ` [PATCH 11/15] sfc: don't call dma_supported Christoph Hellwig
2015-10-05 15:08   ` Bert Kenward
2015-10-03 15:19 ` [PATCH 12/15] kaweth: remove ifdefed out call to dma_supported Christoph Hellwig
2015-10-03 15:19 ` [PATCH 13/15] usbnet: " Christoph Hellwig
2015-10-03 15:19 ` [PATCH 14/15] pci: remove pci_dma_supported Christoph Hellwig
2015-10-03 15:19 ` [PATCH 15/15] dma: remove external references to dma_supported Christoph Hellwig
2015-10-04  9:57   ` Greg KH

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