From mboxrd@z Thu Jan 1 00:00:00 1970 From: Dmitry Torokhov Subject: Re: [1/1] connector/CBUS: new messaging subsystem. Revision number next. Date: Tue, 26 Apr 2005 13:20:08 -0500 Message-ID: References: <20050411125932.GA19538@uganda.factory.vocord.ru> <20050426202437.234e7d45@zanzibar.2ka.mipt.ru> <20050426203023.378e4831@zanzibar.2ka.mipt.ru> <20050426220713.7915e036@zanzibar.2ka.mipt.ru> Reply-To: dtor_core@ameritech.net Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit Cc: netdev@oss.sgi.com, Greg KH , Jamal Hadi Salim , Kay Sievers , Herbert Xu , James Morris , Guillaume Thouvenin , linux-kernel@vger.kernel.org, Andrew Morton , Thomas Graf , Jay Lan Return-path: To: johnpol@2ka.mipt.ru In-Reply-To: <20050426220713.7915e036@zanzibar.2ka.mipt.ru> Content-Disposition: inline Sender: netdev-bounce@oss.sgi.com Errors-to: netdev-bounce@oss.sgi.com List-Id: netdev.vger.kernel.org On 4/26/05, Evgeniy Polyakov wrote: > Yes, I found it too. > Following patch should be the solution: > > --- orig/drivers/connector/connector.c > +++ mod/drivers/connector/connector.c > @@ -146,13 +146,16 @@ > spin_lock_bh(&dev->cbdev->queue_lock); > list_for_each_entry(__cbq, &dev->cbdev->queue_list, callback_entry) { > if (cn_cb_equal(&__cbq->cb->id, &msg->id)) { > - __cbq->cb->priv = msg; > + > + if (!test_bit(0, &work->pending)) { > + __cbq->cb->priv = msg; > > - __cbq->ddata = data; > - __cbq->destruct_data = destruct_data; > + __cbq->ddata = data; > + __cbq->destruct_data = destruct_data; > Still not good enough - work->pending bit gets cleared when work has been scheduled, but before executing payload. You still have the race. -- Dmitry