From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965104AbVHZQk7 (ORCPT ); Fri, 26 Aug 2005 12:40:59 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S965105AbVHZQk7 (ORCPT ); Fri, 26 Aug 2005 12:40:59 -0400 Received: from zproxy.gmail.com ([64.233.162.200]:52072 "EHLO zproxy.gmail.com") by vger.kernel.org with ESMTP id S965104AbVHZQk6 convert rfc822-to-8bit (ORCPT ); Fri, 26 Aug 2005 12:40:58 -0400 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=WFI1N2aY5pYZ0ADEHVEyTyDED9UAgMHvKntVdqTbLMhfOASdGj6NE8oObl73AgSdVdx3XUVUznN9KKGaUItFEY+vNMGff27GUd1FqINR4z2cSmkaE3JZTYOOVZBHV0jh/Hhd1GToJjHYbhKbs0TnNMjX3IxOkcjAz7jHLpE4jMo= Message-ID: <29495f1d05082609407c147df7@mail.gmail.com> Date: Fri, 26 Aug 2005 09:40:56 -0700 From: Nish Aravamudan To: Richard Stover Subject: Re: waiting process in procfs read Cc: linux-kernel@vger.kernel.org In-Reply-To: <430F3C6B.7070303@ucolick.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT Content-Disposition: inline References: <430F3C6B.7070303@ucolick.org> Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org On 8/26/05, Richard Stover wrote: > I submitted this as a bugzilla kernel bug report but was directed here. > Perhaps someone can help me. > > I have a device driver developed with 2.4 kernels. I've ported > it to the 2.6 kernel (FC3) and it all works fine except for one > aspect of procfs. > THE PROBLEM: In FC3 (2.6.11-13_FC3) the reading process blocks but it never > wakes up. > if (offset == 0) { > > printk("####%s waiting event %x\n",__FUNCTION__, > (unsigned int)&dev->read_proc_wait); > > wait_event_interruptible(dev->read_proc_wait,(offset != 0)); > printk("####%s WOKE UP\n",__FUNCTION__); > /* Wake up anyone waiting on reading /proc/readXw */ > printk(KERN_INFO "#### waking up anyone waiting on read_proc_wait event %x\n", > (unsigned int)&dev->read_proc_wait); > > wake_up_interruptible(&dev->read_proc_wait); Your symptoms indicate to me that the "event" in wait_event_interruptible() has not been satisifed, and thus the (potentially) infinite loop in wait_event_interruptible() is continuing, e.g. event still is 0. A signal (as you've specified _interruptible()) causes that loop to break out. One option to debug would be to use wait_event_interruptible_timeout() and then see if it returns from that (it should in this case after the timeout has passed) and then print out the value of offset. If it's still 0, then wait_event_interruptible() is functioning as expected. Thanks, Nish