* [PATCH V2] ATHEROS-ALX: Use dma_set_mask_and_coherent and fix a bug
@ 2014-03-15 23:30 Peter Senna Tschudin
2014-03-16 8:39 ` hahnjo
2014-03-17 21:20 ` David Miller
0 siblings, 2 replies; 3+ messages in thread
From: Peter Senna Tschudin @ 2014-03-15 23:30 UTC (permalink / raw)
To: jcliburn, chris.snook, davem, johannes, jg1.han, wangyijing,
linux, sd, hahnjo, netdev, linux-kernel, kernel-janitors
Cc: Peter Senna Tschudin
1. For the 64 bits dma mask use dma_set_mask_and_coherent instead of
dma_set_mask and dma_set_coherent_mask.
2. For the 32 bits dma mask dma_set_coherent_mask is only called if
dma_set_mask fails, which is unusual. Assuming this as a bug, fixes
it by replacing calls to dma_set_mask and dma_set_coherent_mask by a
call to dma_set_mask_and_coherent.
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
---
Tested by compilation only.
Change from V1: Updated commit message.
drivers/net/ethernet/atheros/alx/main.c | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/drivers/net/ethernet/atheros/alx/main.c b/drivers/net/ethernet/atheros/alx/main.c
index 2e45f6e..380d249 100644
--- a/drivers/net/ethernet/atheros/alx/main.c
+++ b/drivers/net/ethernet/atheros/alx/main.c
@@ -1248,19 +1248,13 @@ static int alx_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
* shared register for the high 32 bits, so only a single, aligned,
* 4 GB physical address range can be used for descriptors.
*/
- if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
- !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
+ if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
dev_dbg(&pdev->dev, "DMA to 64-BIT addresses\n");
} else {
- err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
+ err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
if (err) {
- err = dma_set_coherent_mask(&pdev->dev,
- DMA_BIT_MASK(32));
- if (err) {
- dev_err(&pdev->dev,
- "No usable DMA config, aborting\n");
- goto out_pci_disable;
- }
+ dev_err(&pdev->dev, "No usable DMA config, aborting\n");
+ goto out_pci_disable;
}
}
--
1.8.3.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH V2] ATHEROS-ALX: Use dma_set_mask_and_coherent and fix a bug
2014-03-15 23:30 [PATCH V2] ATHEROS-ALX: Use dma_set_mask_and_coherent and fix a bug Peter Senna Tschudin
@ 2014-03-16 8:39 ` hahnjo
2014-03-17 21:20 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: hahnjo @ 2014-03-16 8:39 UTC (permalink / raw)
To: Peter Senna Tschudin
Cc: jcliburn, chris.snook, davem, johannes, jg1.han, wangyijing, sd,
netdev, linux-kernel, kernel-janitors
Am Sonntag, den 16.03.2014, 00:30 +0100 schrieb Peter Senna Tschudin:
> 1. For the 64 bits dma mask use dma_set_mask_and_coherent instead of
> dma_set_mask and dma_set_coherent_mask.
>
> 2. For the 32 bits dma mask dma_set_coherent_mask is only called if
> dma_set_mask fails, which is unusual. Assuming this as a bug, fixes
> it by replacing calls to dma_set_mask and dma_set_coherent_mask by a
> call to dma_set_mask_and_coherent.
>
Tested-by: Jonas Hahnfeld <hahnjo@hahnjo.de>
> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
> ---
>
> Tested by compilation only.
>
> Change from V1: Updated commit message.
>
> drivers/net/ethernet/atheros/alx/main.c | 14 ++++----------
> 1 file changed, 4 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/net/ethernet/atheros/alx/main.c b/drivers/net/ethernet/atheros/alx/main.c
> index 2e45f6e..380d249 100644
> --- a/drivers/net/ethernet/atheros/alx/main.c
> +++ b/drivers/net/ethernet/atheros/alx/main.c
> @@ -1248,19 +1248,13 @@ static int alx_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
> * shared register for the high 32 bits, so only a single, aligned,
> * 4 GB physical address range can be used for descriptors.
> */
> - if (!dma_set_mask(&pdev->dev, DMA_BIT_MASK(64)) &&
> - !dma_set_coherent_mask(&pdev->dev, DMA_BIT_MASK(64))) {
> + if (!dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(64))) {
> dev_dbg(&pdev->dev, "DMA to 64-BIT addresses\n");
> } else {
> - err = dma_set_mask(&pdev->dev, DMA_BIT_MASK(32));
> + err = dma_set_mask_and_coherent(&pdev->dev, DMA_BIT_MASK(32));
> if (err) {
> - err = dma_set_coherent_mask(&pdev->dev,
> - DMA_BIT_MASK(32));
> - if (err) {
> - dev_err(&pdev->dev,
> - "No usable DMA config, aborting\n");
> - goto out_pci_disable;
> - }
> + dev_err(&pdev->dev, "No usable DMA config, aborting\n");
> + goto out_pci_disable;
> }
> }
>
No obvious problems noticed on my ASUS N56VZ.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH V2] ATHEROS-ALX: Use dma_set_mask_and_coherent and fix a bug
2014-03-15 23:30 [PATCH V2] ATHEROS-ALX: Use dma_set_mask_and_coherent and fix a bug Peter Senna Tschudin
2014-03-16 8:39 ` hahnjo
@ 2014-03-17 21:20 ` David Miller
1 sibling, 0 replies; 3+ messages in thread
From: David Miller @ 2014-03-17 21:20 UTC (permalink / raw)
To: peter.senna
Cc: jcliburn, chris.snook, johannes, jg1.han, wangyijing, linux, sd,
hahnjo, netdev, linux-kernel, kernel-janitors
From: Peter Senna Tschudin <peter.senna@gmail.com>
Date: Sun, 16 Mar 2014 00:30:52 +0100
> 1. For the 64 bits dma mask use dma_set_mask_and_coherent instead of
> dma_set_mask and dma_set_coherent_mask.
>
> 2. For the 32 bits dma mask dma_set_coherent_mask is only called if
> dma_set_mask fails, which is unusual. Assuming this as a bug, fixes
> it by replacing calls to dma_set_mask and dma_set_coherent_mask by a
> call to dma_set_mask_and_coherent.
>
> Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-03-17 21:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-15 23:30 [PATCH V2] ATHEROS-ALX: Use dma_set_mask_and_coherent and fix a bug Peter Senna Tschudin
2014-03-16 8:39 ` hahnjo
2014-03-17 21:20 ` David Miller
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).