From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756791AbXJOS2W (ORCPT ); Mon, 15 Oct 2007 14:28:22 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932954AbXJOS2A (ORCPT ); Mon, 15 Oct 2007 14:28:00 -0400 Received: from ug-out-1314.google.com ([66.249.92.172]:61828 "EHLO ug-out-1314.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1764880AbXJOS17 (ORCPT ); Mon, 15 Oct 2007 14:27:59 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:date:to:cc:subject:message-id:references:mime-version:content-type:content-disposition:in-reply-to:user-agent:from; b=ch9xhLSdO4jXghBWG7QSEQAf4B+4+jpVxupf4Rxby6wlxZAAQfFAW0J53uQbhTKTfUsFHC+MNdUacI1YIdxOC35vEdp2DKMdZpFQlxioXovhKbNOasAxAIy5BDsSXH4ZsWrGr7kfPGdqeS/X9uI2JQTfZmvQWZ/zZBFH/muyiOI= Date: Mon, 15 Oct 2007 20:27:43 +0200 To: Dmitry Torokhov Cc: bryan.wu@analog.com, Andrey Panin , Roel Kluin <12o3l@tiscali.nl>, linux-input@atrey.karlin.mff.cuni.cz, linux-joystick@atrey.karlin.mff.cuni.cz, linux-kernel@vger.kernel.org, akpm@linux-foundation.org, Jean Delvare Subject: Re: [PATCH try #3] Input/Joystick Driver: add support AD7142 joystick driver Message-ID: <20071015182743.GA2529@Ahmed> References: <1192459625.6215.17.camel@roc-laptop> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 From: "Ahmed S. Darwish" Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 15, 2007 at 11:48:17AM -0400, Dmitry Torokhov wrote: > Hi Bryan, > > On 10/15/07, Bryan Wu wrote: > > + > > +static int ad7142_thread(void *nothing) > > +{ > > + do { > > + wait_for_completion(&ad7142_completion); > > + ad7142_decode(); > > + enable_irq(CONFIG_BFIN_JOYSTICK_IRQ_PFX); > > + } while (!kthread_should_stop()); > > + > > No, this is not going to work well: > - you at least need to reinitialize the completion before enabling > IRQ, otherwise you will spin in a very tight loop > - if noone would touch the joystick ad7142_clsoe would() block > infinitely because noone would signal the completion and > ad7142_thread() would never stop. > > Completion is just not a good abstraction here... Please use work > abstraction and possibly a separate workqueue. > Bryan, I'm very interested in the technical advantage of using a completion here. In my _not-experienced_ opinion, I remember completions was created mainly for "create_task, wait till task got finished, go on" case. Why using it in a different context while workqueues was created for a similar situation to ad7142 one (non-irq context bottom-half) ? Regards, -- Ahmed S. Darwish HomePage: http://darwish.07.googlepages.com Blog: http://darwish-07.blogspot.com