Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S262810AbTENU5F (ORCPT ); Wed, 14 May 2003 16:57:05 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S262834AbTENU5F (ORCPT ); Wed, 14 May 2003 16:57:05 -0400 Received: from h-68-165-86-241.DLLATX37.covad.net ([68.165.86.241]:5187 "EHLO sol.microgate.com") by vger.kernel.org with ESMTP id S262810AbTENUzl (ORCPT ); Wed, 14 May 2003 16:55:41 -0400 Subject: Re: 2.5.69 Interrupt Latency From: Paul Fulghum To: Greg KH Cc: Alan Stern , Andrew Morton , "linux-kernel@vger.kernel.org" , Arnd Bergmann , johannes@erdfelt.com In-Reply-To: <20030513181120.GA10790@kroah.com> References: <1052840106.2255.24.camel@diemos> <20030513173044.GB10284@kroah.com> <1052830860.1992.2.camel@diemos> <20030513180913.GA10752@kroah.com> <20030513181120.GA10790@kroah.com> Content-Type: text/plain Organization: Message-Id: <1052946393.2974.7.camel@diemos> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 (1.2.2-4) Date: 14 May 2003 16:06:33 -0500 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1064 Lines: 38 On Tue, 2003-05-13 at 13:11, Greg KH wrote: I was looking over the PIIX3 datasheet and noticed that the USBSTS_RD bit is only valid when the device is in the suspended state. This bit is being acted on regardless of the suspend state of the controller in the ISR. Could this be why the driver is detecting false 'resume' signals and calling wakeup_hc() when it shouldn't? Maybe the code should be something like: if (uhci->is_suspended && (status & USBSTS_RD)) wakeup_hc(uhci); in the ISR to qualify acting on that status bit. Alternatively, USBCMD_EGSM (BIT3) of the USBCMD register could be tested to qualify action on the state of USBSTS_RD I'm going to test this now, but I wanted to know what you think. Thanks, Paul -- Paul Fulghum, paulkf@microgate.com Microgate Corporation, http://www.microgate.com - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/