netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>)
@ 2005-07-19 20:44 chas williams - CONTRACTOR
  2005-07-19 22:31 ` Francois Romieu
  2005-07-20  7:19 ` [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>) Jakub Jelinek
  0 siblings, 2 replies; 8+ messages in thread
From: chas williams - CONTRACTOR @ 2005-07-19 20:44 UTC (permalink / raw)
  To: netdev; +Cc: davem

please apply to 2.6 -- thanks!

[ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>)

  Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>


---
commit 4932248439d20412610ffaade625cbde0e001e37
tree 35a60e3551f5f1abced8a435238575c488041af6
parent 238921d2cb04eb6dcc2ff5914d555d7dcaa4dfc5
author chas williams <chas@relax.(none)> Wed, 06 Jul 2005 13:10:18 -0400
committer chas williams <chas@relax.(none)> Wed, 06 Jul 2005 13:10:18 -0400

 drivers/atm/zatm.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/atm/zatm.c b/drivers/atm/zatm.c
--- a/drivers/atm/zatm.c
+++ b/drivers/atm/zatm.c
@@ -1339,7 +1339,7 @@ static int __init zatm_start(struct atm_
 	return 0;
     out:
 	for (i = 0; i < NR_MBX; i++)
-		kfree(zatm_dev->mbx_start[i]);
+		kfree(&zatm_dev->mbx_start[i]);
 	kfree(zatm_dev->rx_map);
 	kfree(zatm_dev->tx_map);
 	free_irq(zatm_dev->irq, dev);

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

* Re: [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>)
  2005-07-19 20:44 [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>) chas williams - CONTRACTOR
@ 2005-07-19 22:31 ` Francois Romieu
  2005-07-19 22:36   ` [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent() Francois Romieu
  2005-07-20  7:19 ` [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>) Jakub Jelinek
  1 sibling, 1 reply; 8+ messages in thread
From: Francois Romieu @ 2005-07-19 22:31 UTC (permalink / raw)
  To: chas williams - CONTRACTOR; +Cc: netdev, davem

chas williams - CONTRACTOR <chas@cmf.nrl.navy.mil> :
[...]
> diff --git a/drivers/atm/zatm.c b/drivers/atm/zatm.c
> --- a/drivers/atm/zatm.c
> +++ b/drivers/atm/zatm.c
> @@ -1339,7 +1339,7 @@ static int __init zatm_start(struct atm_
>  	return 0;
>      out:
>  	for (i = 0; i < NR_MBX; i++)
> -		kfree(zatm_dev->mbx_start[i]);
> +		kfree(&zatm_dev->mbx_start[i]);
>  	kfree(zatm_dev->rx_map);
>  	kfree(zatm_dev->tx_map);
>  	free_irq(zatm_dev->irq, dev);

Wow...

static int __init zatm_start(struct atm_dev *dev)
{
[...]
        for (i = 0; i < NR_MBX; i++)
[blah blah]
                        here = (unsigned long) kmalloc(2*MBX_SIZE(i),
                            GFP_KERNEL);
[blah blah]
                        zatm_dev->mbx_start[i] = here;

There is some stuff in my patchbucket for this one, please wait a minute.

--
Ueimor

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

* [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent()
  2005-07-19 22:31 ` Francois Romieu
@ 2005-07-19 22:36   ` Francois Romieu
  2005-07-20 15:07     ` chas
  2005-07-20 19:02     ` David S. Miller
  0 siblings, 2 replies; 8+ messages in thread
From: Francois Romieu @ 2005-07-19 22:36 UTC (permalink / raw)
  To: chas williams; +Cc: netdev, davem

mailbox converted to pci_alloc_consistent()

- request_region() is not needed: zatm_init_one() issues
  pci_request_regions();
- the warning related to kfree(zatm_dev->mbx_start) disappears;

Compiled with i386 and sparc64 as target.

Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>

diff -puN drivers/atm/zatm.c~drivers-atm-zatm-mbx drivers/atm/zatm.c
--- linux-2.6.13-rc2-gitXX/drivers/atm/zatm.c~drivers-atm-zatm-mbx	2005-07-19 23:40:48.696490366 +0200
+++ linux-2.6.13-rc2-gitXX-fr/drivers/atm/zatm.c	2005-07-20 00:27:48.263131297 +0200
@@ -16,9 +16,9 @@
 #include <linux/skbuff.h>
 #include <linux/netdevice.h>
 #include <linux/delay.h>
-#include <linux/ioport.h> /* for request_region */
 #include <linux/uio.h>
 #include <linux/init.h>
+#include <linux/dma-mapping.h>
 #include <linux/atm_zatm.h>
 #include <linux/capability.h>
 #include <linux/bitops.h>
@@ -1260,22 +1260,22 @@ static int __init zatm_init(struct atm_d
 
 static int __init zatm_start(struct atm_dev *dev)
 {
-	struct zatm_dev *zatm_dev;
+	struct zatm_dev *zatm_dev = ZATM_DEV(dev);
+	struct pci_dev *pdev = zatm_dev->pci_dev;
 	unsigned long curr;
 	int pools,vccs,rx;
-	int error,i,ld;
+	int error, i, ld;
 
 	DPRINTK("zatm_start\n");
-	zatm_dev = ZATM_DEV(dev);
 	zatm_dev->rx_map = zatm_dev->tx_map = NULL;
-	for (i = 0; i < NR_MBX; i++)
-		zatm_dev->mbx_start[i] = 0;
-	if (request_irq(zatm_dev->irq,&zatm_int,SA_SHIRQ,DEV_LABEL,dev)) {
-		printk(KERN_ERR DEV_LABEL "(itf %d): IRQ%d is already in use\n",
-		    dev->number,zatm_dev->irq);
-		return -EAGAIN;
+ 	for (i = 0; i < NR_MBX; i++)
+ 		zatm_dev->mbx_start[i] = 0;
+ 	error = request_irq(zatm_dev->irq, zatm_int, SA_SHIRQ, DEV_LABEL, dev);
+	if (error < 0) {
+ 		printk(KERN_ERR DEV_LABEL "(itf %d): IRQ%d is already in use\n",
+ 		    dev->number,zatm_dev->irq);
+		goto done;
 	}
-	request_region(zatm_dev->base,uPD98401_PORTS,DEV_LABEL);
 	/* define memory regions */
 	pools = NR_POOLS;
 	if (NR_SHAPERS*SHAPER_SIZE > pools*POOL_SIZE)
@@ -1302,51 +1302,66 @@ static int __init zatm_start(struct atm_
 	    "%ld VCs\n",dev->number,NR_SHAPERS,pools,rx,
 	    (zatm_dev->mem-curr*4)/VC_SIZE);
 	/* create mailboxes */
-	for (i = 0; i < NR_MBX; i++)
-		if (mbx_entries[i]) {
-			unsigned long here;
-
-			here = (unsigned long) kmalloc(2*MBX_SIZE(i),
-			    GFP_KERNEL);
-			if (!here) {
-				error = -ENOMEM;
-				goto out;
-			}
-			if ((here^(here+MBX_SIZE(i))) & ~0xffffUL)/* paranoia */
-				here = (here & ~0xffffUL)+0x10000;
-			zatm_dev->mbx_start[i] = here;
-			if ((here^virt_to_bus((void *) here)) & 0xffff) {
-				printk(KERN_ERR DEV_LABEL "(itf %d): system "
-				    "bus incompatible with driver\n",
-				    dev->number);
-				error = -ENODEV;
-				goto out;
-			}
-			DPRINTK("mbx@0x%08lx-0x%08lx\n",here,here+MBX_SIZE(i));
-			zatm_dev->mbx_end[i] = (here+MBX_SIZE(i)) & 0xffff;
-			zout(virt_to_bus((void *) here) >> 16,MSH(i));
-			zout(virt_to_bus((void *) here),MSL(i));
-			zout((here+MBX_SIZE(i)) & 0xffff,MBA(i));
-			zout(here & 0xffff,MTA(i));
-			zout(here & 0xffff,MWA(i));
-		}
+	for (i = 0; i < NR_MBX; i++) {
+		void *mbx;
+		dma_addr_t mbx_dma;
+
+		if (!mbx_entries[i])
+			continue;
+		mbx = pci_alloc_consistent(pdev, 2*MBX_SIZE(i), &mbx_dma);
+		if (!mbx) {
+			error = -ENOMEM;
+			goto out;
+		}
+		/*
+		 * Alignment provided by pci_alloc_consistent() isn't enough
+		 * for this device.
+		 */
+		if (((unsigned long)mbx ^ mbx_dma) & 0xffff) {
+			printk(KERN_ERR DEV_LABEL "(itf %d): system "
+			       "bus incompatible with driver\n", dev->number);
+			pci_free_consistent(pdev, 2*MBX_SIZE(i), mbx, mbx_dma);
+			error = -ENODEV;
+			goto out;
+		}
+		DPRINTK("mbx@0x%08lx-0x%08lx\n", mbx, mbx + MBX_SIZE(i));
+		zatm_dev->mbx_start[i] = (unsigned long)mbx;
+		zatm_dev->mbx_dma[i] = mbx_dma;
+		zatm_dev->mbx_end[i] = (zatm_dev->mbx_start[i] + MBX_SIZE(i)) &
+					0xffff;
+		zout(mbx_dma >> 16, MSH(i));
+		zout(mbx_dma, MSL(i));
+		zout(zatm_dev->mbx_end[i], MBA(i));
+		zout((unsigned long)mbx & 0xffff, MTA(i));
+		zout((unsigned long)mbx & 0xffff, MWA(i));
+	}
 	error = start_tx(dev);
-	if (error) goto out;
+	if (error)
+		goto out;
 	error = start_rx(dev);
-	if (error) goto out;
+	if (error)
+		goto out_tx;
 	error = dev->phy->start(dev);
-	if (error) goto out;
+	if (error)
+		goto out_rx;
 	zout(0xffffffff,IMR); /* enable interrupts */
 	/* enable TX & RX */
 	zout(zin(GMR) | uPD98401_GMR_SE | uPD98401_GMR_RE,GMR);
-	return 0;
-    out:
-	for (i = 0; i < NR_MBX; i++)
-		kfree(zatm_dev->mbx_start[i]);
+done:
+	return error;
+
+out_rx:
 	kfree(zatm_dev->rx_map);
+out_tx:
 	kfree(zatm_dev->tx_map);
+out:
+	while (i-- > 0) {
+		pci_free_consistent(pdev, 2*MBX_SIZE(i), 
+				    (void *)zatm_dev->mbx_start[i],
+				    zatm_dev->mbx_dma[i]);
+	}
 	free_irq(zatm_dev->irq, dev);
-	return error;
+	goto done;
 }
 
 
diff -puN drivers/atm/zatm.h~drivers-atm-zatm-mbx drivers/atm/zatm.h
--- linux-2.6.13-rc2-gitXX/drivers/atm/zatm.h~drivers-atm-zatm-mbx	2005-07-19 23:40:48.711487946 +0200
+++ linux-2.6.13-rc2-gitXX-fr/drivers/atm/zatm.h	2005-07-19 23:40:48.764479397 +0200
@@ -73,6 +73,7 @@ struct zatm_dev {
 	int chans;			/* map size, must be 2^n */
 	/*-------------------------------- mailboxes */
 	unsigned long mbx_start[NR_MBX];/* start addresses */
+	dma_addr_t mbx_dma[NR_MBX];
 	u16 mbx_end[NR_MBX];		/* end offset (in bytes) */
 	/*-------------------------------- other pointers */
 	u32 pool_base;			/* Free buffer pool dsc (word addr) */

_

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

* Re: [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>)
  2005-07-19 20:44 [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>) chas williams - CONTRACTOR
  2005-07-19 22:31 ` Francois Romieu
@ 2005-07-20  7:19 ` Jakub Jelinek
  2005-07-20 18:56   ` David S. Miller
  1 sibling, 1 reply; 8+ messages in thread
From: Jakub Jelinek @ 2005-07-20  7:19 UTC (permalink / raw)
  To: chas williams - CONTRACTOR; +Cc: netdev, davem

On Tue, Jul 19, 2005 at 04:44:54PM -0400, chas williams - CONTRACTOR wrote:
> please apply to 2.6 -- thanks!
> 
> [ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>)
> 
>   Signed-off-by: Chas Williams <chas@cmf.nrl.navy.mil>
> 
> 
> ---
> commit 4932248439d20412610ffaade625cbde0e001e37
> tree 35a60e3551f5f1abced8a435238575c488041af6
> parent 238921d2cb04eb6dcc2ff5914d555d7dcaa4dfc5
> author chas williams <chas@relax.(none)> Wed, 06 Jul 2005 13:10:18 -0400
> committer chas williams <chas@relax.(none)> Wed, 06 Jul 2005 13:10:18 -0400
> 
>  drivers/atm/zatm.c |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/drivers/atm/zatm.c b/drivers/atm/zatm.c
> --- a/drivers/atm/zatm.c
> +++ b/drivers/atm/zatm.c
> @@ -1339,7 +1339,7 @@ static int __init zatm_start(struct atm_
>  	return 0;
>      out:
>  	for (i = 0; i < NR_MBX; i++)
> -		kfree(zatm_dev->mbx_start[i]);
> +		kfree(&zatm_dev->mbx_start[i]);

This can't be right.  zatm_dev->mbx_start[i] is allocated with:
   1306                         here = (unsigned long) kmalloc(2*MBX_SIZE(i),
   1307                             GFP_KERNEL);
   1308                         if (!here) {
   1309                                 error = -ENOMEM;
   1310                                 goto out;
   1311                         }
   1312                         if ((here^(here+MBX_SIZE(i))) & ~0xffffUL)/* paranoia */
   1313                                 here = (here & ~0xffffUL)+0x10000;
   1314                         zatm_dev->mbx_start[i] = here;

so even kfree((void *)zatm_dev->mbx_start[i]); is wrong in case
there was an alignment, but kfree(&zatm_dev->mbx_start[i])
is wrong in all cases.

	Jakub

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

* Re: [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent()
  2005-07-19 22:36   ` [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent() Francois Romieu
@ 2005-07-20 15:07     ` chas
  2005-07-20 18:55       ` David S. Miller
  2005-07-20 19:02     ` David S. Miller
  1 sibling, 1 reply; 8+ messages in thread
From: chas @ 2005-07-20 15:07 UTC (permalink / raw)
  To: Francois Romieu; +Cc: netdev

In message <20050719223655.GA27724@electric-eye.fr.zoreil.com>,Francois Romieu 
writes:
>+		mbx = pci_alloc_consistent(pdev, 2*MBX_SIZE(i), &mbx_dma);

you might want a pci_set_dma_mask(,DMA_32BIT_MASK) before you call this.

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

* Re: [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent()
  2005-07-20 15:07     ` chas
@ 2005-07-20 18:55       ` David S. Miller
  0 siblings, 0 replies; 8+ messages in thread
From: David S. Miller @ 2005-07-20 18:55 UTC (permalink / raw)
  To: chas3, chas; +Cc: romieu, netdev

From: chas@cmf.nrl.navy.mil
Subject: Re: [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent() 
Date: Wed, 20 Jul 2005 11:07:12 -0400

> In message <20050719223655.GA27724@electric-eye.fr.zoreil.com>,Francois Romieu 
> writes:
> >+		mbx = pci_alloc_consistent(pdev, 2*MBX_SIZE(i), &mbx_dma);
> 
> you might want a pci_set_dma_mask(,DMA_32BIT_MASK) before you call this.

That's the default, no need.

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

* Re: [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>)
  2005-07-20  7:19 ` [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>) Jakub Jelinek
@ 2005-07-20 18:56   ` David S. Miller
  0 siblings, 0 replies; 8+ messages in thread
From: David S. Miller @ 2005-07-20 18:56 UTC (permalink / raw)
  To: jakub; +Cc: chas, netdev

From: Jakub Jelinek <jakub@redhat.com>
Date: Wed, 20 Jul 2005 09:19:20 +0200

> This can't be right.  zatm_dev->mbx_start[i] is allocated with:

Correct, Francois posted a much better fix and I'll put
that into my tree.

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

* Re: [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent()
  2005-07-19 22:36   ` [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent() Francois Romieu
  2005-07-20 15:07     ` chas
@ 2005-07-20 19:02     ` David S. Miller
  1 sibling, 0 replies; 8+ messages in thread
From: David S. Miller @ 2005-07-20 19:02 UTC (permalink / raw)
  To: romieu; +Cc: chas, netdev

From: Francois Romieu <romieu@fr.zoreil.com>
Date: Wed, 20 Jul 2005 00:36:55 +0200

> mailbox converted to pci_alloc_consistent()
> 
> - request_region() is not needed: zatm_init_one() issues
>   pci_request_regions();
> - the warning related to kfree(zatm_dev->mbx_start) disappears;
> 
> Compiled with i386 and sparc64 as target.
> 
> Signed-off-by: Francois Romieu <romieu@fr.zoreil.com>

This looks great, applied.

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

end of thread, other threads:[~2005-07-20 19:02 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-07-19 20:44 [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>) chas williams - CONTRACTOR
2005-07-19 22:31 ` Francois Romieu
2005-07-19 22:36   ` [patch linux-2.6.13-rc2-gitXX 1/1] zatm: mailbox converted to pci_alloc_consistent() Francois Romieu
2005-07-20 15:07     ` chas
2005-07-20 18:55       ` David S. Miller
2005-07-20 19:02     ` David S. Miller
2005-07-20  7:19 ` [PATCH 1/8][ATM]: [zatm] eliminate kfree warning (from Tobias Hirning <sskyman@web.de>) Jakub Jelinek
2005-07-20 18:56   ` David S. 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).