[PATCH v2] dmaengine: Simple DMA memcpy test client

Previous thread: Re: An additional entry to the by oc666 on Friday, November 23, 2007 - 8:05 am. (1 message)

Next thread: [PATCH] atmel_lcdfb: LCDC startup fix by Nicolas Ferre on Friday, November 23, 2007 - 8:12 am. (1 message)
From: Haavard Skinnemoen
Date: Friday, November 23, 2007 - 8:34 am

[Empty message]
From: Olof Johansson
Date: Thursday, December 13, 2007 - 8:32 pm

Hi,

First of all: Thanks for sharing this, it's quite useful! I've been
playing around with this a bit today, and I've been seeing some odd
behaviour.

It seems that once a channel is allocated to dmatest, it will never be
freed, i.e. the drivers device_free_chan_resources will never be called
on it. Looking at the dma stack, I'm not sure just where it's expected
to happen. Once the channel is allocated, the dma_chan_get/put calls all
just modify the per-cpu variables, and nothing will ever boil down to a
call to kref_put() of the refcount until the _driver_ is deregistered.
Not even deregistering the client seems to do it.

Or am I missing something here? Shannon? Dan?

I happened to catch it due to a BUG_ON() in my device_alloc_chan_resources
that checked to make sure it wasn't allocated twice without a free
inbetween. It hit on the second load of the dmatest module, since they
were never freed on unload.


-Olof
--

From: Nelson, Shannon
Date: Friday, December 14, 2007 - 10:45 am

No, you're not missing anything, you've read it right.  Notice at the
top of the ioatdma's ioat_dma_alloc_chan_resources() we check to see if
we've already been here.

I suspect this is a hangover from the earlier dmaengine design where TCP
was the only client and it never released things, so the only time we
needed to free the resources was when ioatdma was unloaded.

sln
--
======================================================================
Mr. Shannon Nelson                 LAN Access Division, Intel Corp.
Shannon.Nelson@intel.com                I don't speak for Intel
(503) 712-7659                    Parents can't afford to be squeamish.

--

Previous thread: Re: An additional entry to the by oc666 on Friday, November 23, 2007 - 8:05 am. (1 message)

Next thread: [PATCH] atmel_lcdfb: LCDC startup fix by Nicolas Ferre on Friday, November 23, 2007 - 8:12 am. (1 message)