Re: [RFC] Suspicious bug in module refcounting

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Dan Williams
Date: Wednesday, February 4, 2009 - 9:33 am

On Tue, Feb 3, 2009 at 8:48 PM, Rusty Russell <rusty@rustcorp.com.au> wrote:

Currently there is no feedback loop for clients calling
dmaengine_get().  It simply means "I want to do offload, pin any
offload resources you may see, and don't let the resource leave until
dmaengine_ref_count == 0".  Even if we always called try_module_get()
we would still need to wait until dmaengine_ref_count reached zero to
be sure no transactions are in flight, effectively ignoring module_get
failures.

However, dma-driver module removal is still in the central control of
the administrator as downing all network interfaces and unloading the
async_tx api (i.e. raid456) will kill all dmaengine references.  We
just have the caveat highlighted below:

modprobe raid456
ifup eth0
rmmod --wait ioat_dma &
ifup eth1
modprobe -r raid456
ifdown eth0  <-- module removal succeeds here in a perfect world
ifdown eth1 <-- module removal currently succeeds here

Regards,
Dan
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
Re: [RFC] Suspicious bug in module refcounting, Rusty Russell, (Tue Feb 3, 8:48 pm)
Re: [RFC] Suspicious bug in module refcounting, Russell King, (Wed Feb 4, 3:11 am)
Re: [RFC] Suspicious bug in module refcounting, Rusty Russell, (Wed Feb 4, 3:55 am)
Re: [RFC] Suspicious bug in module refcounting, Russell King, (Wed Feb 4, 3:59 am)
Re: [RFC] Suspicious bug in module refcounting, Dan Williams, (Wed Feb 4, 9:33 am)
Re: [RFC] Suspicious bug in module refcounting, Karsten Keil, (Fri Feb 6, 3:41 pm)
Re: [RFC] Suspicious bug in module refcounting, Michal Hocko, (Mon Feb 9, 8:18 am)
Re: [RFC] Suspicious bug in module refcounting, Rusty Russell, (Mon Feb 9, 8:15 pm)
Re: [RFC] Suspicious bug in module refcounting, Karsten Keil, (Mon Feb 9, 8:42 pm)
Re: [RFC] Suspicious bug in module refcounting, Michal Hocko, (Tue Feb 10, 3:31 am)
Re: [RFC] Suspicious bug in module refcounting, Rusty Russell, (Tue Feb 10, 6:36 am)