linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] dma-debug: print information about leaked entry
@ 2011-03-31 12:08 Stanislaw Gruszka
  2011-04-07 15:13 ` Roedel, Joerg
  2011-05-11  0:13 ` Andrew Morton
  0 siblings, 2 replies; 3+ messages in thread
From: Stanislaw Gruszka @ 2011-03-31 12:08 UTC (permalink / raw)
  To: linux-kernel, Andrew Morton; +Cc: Joerg Roedel

When driver leak dma mapping, print additional information about one of
leaked entries, to to help investigate problem. Patch should be useful
for debugging drivers, which maps many different class of buffers.

Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
---
 lib/dma-debug.c |   18 +++++++++++++-----
 1 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/lib/dma-debug.c b/lib/dma-debug.c
index 4bfb047..db07bfd 100644
--- a/lib/dma-debug.c
+++ b/lib/dma-debug.c
@@ -649,7 +649,7 @@ out_err:
 	return -ENOMEM;
 }
 
-static int device_dma_allocations(struct device *dev)
+static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
 {
 	struct dma_debug_entry *entry;
 	unsigned long flags;
@@ -660,8 +660,10 @@ static int device_dma_allocations(struct device *dev)
 	for (i = 0; i < HASH_SIZE; ++i) {
 		spin_lock(&dma_entry_hash[i].lock);
 		list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
-			if (entry->dev == dev)
+			if (entry->dev == dev) {
 				count += 1;
+				*out_entry = entry;
+			}
 		}
 		spin_unlock(&dma_entry_hash[i].lock);
 	}
@@ -674,6 +676,7 @@ static int device_dma_allocations(struct device *dev)
 static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
 {
 	struct device *dev = data;
+	struct dma_debug_entry *uninitialized_var(entry);
 	int count;
 
 	if (global_disable)
@@ -681,12 +684,17 @@ static int dma_debug_device_change(struct notifier_block *nb, unsigned long acti
 
 	switch (action) {
 	case BUS_NOTIFY_UNBOUND_DRIVER:
-		count = device_dma_allocations(dev);
+		count = device_dma_allocations(dev, &entry);
 		if (count == 0)
 			break;
-		err_printk(dev, NULL, "DMA-API: device driver has pending "
+		err_printk(dev, entry, "DMA-API: device driver has pending "
 				"DMA allocations while released from device "
-				"[count=%d]\n", count);
+				"[count=%d]\n"
+				"One of leaked entries details: "
+				"[device address=0x%016llx] [size=%llu bytes] "
+				"[mapped with %s] [mapped as %s]\n",
+			count, entry->dev_addr, entry->size,
+			dir2name[entry->direction], type2name[entry->type]);
 		break;
 	default:
 		break;
-- 
1.7.1


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

* Re: [PATCH] dma-debug: print information about leaked entry
  2011-03-31 12:08 [PATCH] dma-debug: print information about leaked entry Stanislaw Gruszka
@ 2011-04-07 15:13 ` Roedel, Joerg
  2011-05-11  0:13 ` Andrew Morton
  1 sibling, 0 replies; 3+ messages in thread
From: Roedel, Joerg @ 2011-04-07 15:13 UTC (permalink / raw)
  To: Stanislaw Gruszka; +Cc: linux-kernel, Andrew Morton

On Thu, Mar 31, 2011 at 08:08:09AM -0400, Stanislaw Gruszka wrote:
> When driver leak dma mapping, print additional information about one of
> leaked entries, to to help investigate problem. Patch should be useful
> for debugging drivers, which maps many different class of buffers.
> 
> Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>

Applied, thanks.

-- 
AMD Operating System Research Center

Advanced Micro Devices GmbH Einsteinring 24 85609 Dornach
General Managers: Alberto Bozzo, Andrew Bowd
Registration: Dornach, Landkr. Muenchen; Registerger. Muenchen, HRB Nr. 43632


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

* Re: [PATCH] dma-debug: print information about leaked entry
  2011-03-31 12:08 [PATCH] dma-debug: print information about leaked entry Stanislaw Gruszka
  2011-04-07 15:13 ` Roedel, Joerg
@ 2011-05-11  0:13 ` Andrew Morton
  1 sibling, 0 replies; 3+ messages in thread
From: Andrew Morton @ 2011-05-11  0:13 UTC (permalink / raw)
  To: Stanislaw Gruszka; +Cc: linux-kernel, Joerg Roedel

On Thu, 31 Mar 2011 14:08:09 +0200
Stanislaw Gruszka <sgruszka@redhat.com> wrote:

> When driver leak dma mapping, print additional information about one of
> leaked entries, to to help investigate problem. Patch should be useful
> for debugging drivers, which maps many different class of buffers.
> 
> Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
> ---
>  lib/dma-debug.c |   18 +++++++++++++-----
>  1 files changed, 13 insertions(+), 5 deletions(-)
> 
> diff --git a/lib/dma-debug.c b/lib/dma-debug.c
> index 4bfb047..db07bfd 100644
> --- a/lib/dma-debug.c
> +++ b/lib/dma-debug.c
> @@ -649,7 +649,7 @@ out_err:
>  	return -ENOMEM;
>  }
>  
> -static int device_dma_allocations(struct device *dev)
> +static int device_dma_allocations(struct device *dev, struct dma_debug_entry **out_entry)
>  {
>  	struct dma_debug_entry *entry;
>  	unsigned long flags;
> @@ -660,8 +660,10 @@ static int device_dma_allocations(struct device *dev)
>  	for (i = 0; i < HASH_SIZE; ++i) {
>  		spin_lock(&dma_entry_hash[i].lock);
>  		list_for_each_entry(entry, &dma_entry_hash[i].list, list) {
> -			if (entry->dev == dev)
> +			if (entry->dev == dev) {
>  				count += 1;
> +				*out_entry = entry;
> +			}
>  		}
>  		spin_unlock(&dma_entry_hash[i].lock);
>  	}
> @@ -674,6 +676,7 @@ static int device_dma_allocations(struct device *dev)
>  static int dma_debug_device_change(struct notifier_block *nb, unsigned long action, void *data)
>  {
>  	struct device *dev = data;
> +	struct dma_debug_entry *uninitialized_var(entry);

The warning you saw was due to gcc assuming that foo(&bar) might not
write to `bar'.  That was fixed (ie: suppressed) in later gcc's, so we
tend not to bother working around it.

>  	int count;
>  
>  	if (global_disable)
> @@ -681,12 +684,17 @@ static int dma_debug_device_change(struct notifier_block *nb, unsigned long acti
>  
>  	switch (action) {
>  	case BUS_NOTIFY_UNBOUND_DRIVER:
> -		count = device_dma_allocations(dev);
> +		count = device_dma_allocations(dev, &entry);
>  		if (count == 0)
>  			break;
> -		err_printk(dev, NULL, "DMA-API: device driver has pending "
> +		err_printk(dev, entry, "DMA-API: device driver has pending "
>  				"DMA allocations while released from device "
> -				"[count=%d]\n", count);
> +				"[count=%d]\n"
> +				"One of leaked entries details: "
> +				"[device address=0x%016llx] [size=%llu bytes] "
> +				"[mapped with %s] [mapped as %s]\n",
> +			count, entry->dev_addr, entry->size,
> +			dir2name[entry->direction], type2name[entry->type]);

hm, how does the programmer use this info.  Does the device address
identify the device and its driver?  That seems a bit indirect.

ah, I see that the gruesome err_printk() does a WARN, so the stack
backtrace will tell us where the problem is occurring.


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

end of thread, other threads:[~2011-05-11  0:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-31 12:08 [PATCH] dma-debug: print information about leaked entry Stanislaw Gruszka
2011-04-07 15:13 ` Roedel, Joerg
2011-05-11  0:13 ` Andrew Morton

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