From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753899AbYIJMp7 (ORCPT ); Wed, 10 Sep 2008 08:45:59 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752128AbYIJMpv (ORCPT ); Wed, 10 Sep 2008 08:45:51 -0400 Received: from scing.com ([217.160.110.58]:38097 "EHLO scing.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752096AbYIJMpv (ORCPT ); Wed, 10 Sep 2008 08:45:51 -0400 X-GoodMailTo: skipped X-GoodMailTo: skipped X-GoodMailTo: skipped X-GoodMailTo: skipped X-GoodMailTo: skipped X-GoodMailTo: skipped From: Janne Grunau To: Christoph Hellwig Subject: Re: [PATCH 01/18] lirc core device driver infrastructure Date: Wed, 10 Sep 2008 14:45:47 +0200 User-Agent: KMail/1.9.9 Cc: Jarod Wilson , linux-kernel@vger.kernel.org, Jarod Wilson , Christoph Bartelmus , Mario Limonciello References: <1220933164-10160-1-git-send-email-jwilson@redhat.com> <200809101424.36654.j@jannau.net> <20080910122943.GA29441@infradead.org> In-Reply-To: <20080910122943.GA29441@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200809101445.47753.j@jannau.net> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wednesday 10 September 2008 14:29:43 Christoph Hellwig wrote: > On Wed, Sep 10, 2008 at 02:24:36PM +0200, Janne Grunau wrote: > > On Tuesday 09 September 2008 15:01:02 Christoph Hellwig wrote: > > > > + do { > > > > + if (ir->open) { > > > > + if (ir->jiffies_to_wait) { > > > > + set_current_state(TASK_INTERRUPTIBLE); > > > > + schedule_timeout(ir->jiffies_to_wait); > > > > + } else { > > > > + interruptible_sleep_on( > > > > + ir->p.get_queue(ir->p.data)); > > > > + } > > > > > > No sleep on, please. But this one should be trivial to fix > > > anyway, by just changing this to a > > > > > > set_current_state(TASK_INTERRUPTIBLE); > > > schedule(); > > > > > > and using wake_up_process in the wakeup path. > > > > No driver uses the get_queue callback. So I'm inclined to just > > remove it. Christoph, any objections? > > Sounds good. Oh, just realized that there are two Christophs in TO an CC, I meant Christoph Bartelmus, the LIRC maintainer, sorry. Janne