Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 07 Jan 2008 13:39:15 -0800
From:      Nate Lawson <nate@root.org>
To:        Alexey Starikovskiy <astarikovskiy@suse.de>
Cc:        freebsd-acpi@FreeBSD.org, "Moore, Robert" <robert.moore@intel.com>
Subject:   Re: GPE handler livelock
Message-ID:  <47829C03.3010802@root.org>
In-Reply-To: <478272C3.5080704@suse.de>
References:  <200712311556.lBVFuVZf030567@freefall.freebsd.org><477916E0.2090702@root.org><200712311243.18123.jhb@freebsd.org> <47802510.3040203@root.org> <B2D86EF24E7E4BEF90BA00C945189463@kamino> <B28E9812BAF6E2498B7EC5C427F293A403F607B4@orsmsx415.amr.corp.intel.com> <47826AAA.6040101@root.org> <B28E9812BAF6E2498B7EC5C427F293A403F6087A@orsmsx415.amr.corp.intel.com> <47827291.60405@suse.de> <478272C3.5080704@suse.de>

next in thread | previous in thread | raw e-mail | index | archive | help
Alex,

I had one question about your approach.  It maintains two single-thread
task queues (kacpid and kacpi_notify).  It inserts each type of event on
its own queue.  So there is no strict ordering of handling notifies in
priority to other acpi tasks unless you're assuming something about the
linux task priority model.  Do you have any expectation that notify
tasks run before other tasks (perhaps by a special priority assigned to
the kacpi_notify work queue)?

In FreeBSD, we have a single task queue.  However, we prioritize events
in the queue in the following order (highest to lowest priority):

* GPE
* EC/global lock
* Notify
* Debugger

If an event is inserted on the queue with a higher priority and a
previous event has not started executing yet, this priority determines
the order of insertion.  Thus if GPEs keep arriving, the Notify won't be
executed until they're done.

Thanks,
Nate

Alexey Starikovskiy wrote:
> Here is the patch...
> Alexey Starikovskiy wrote:
>> I proposed this patch some time ago, it moves _Lxx enabling to the end
>> of Notify queue, thus all notifies must complete before event becomes
>> enabled again.
>> Hope it is readable to non-Linux people...
>>
>> Regards,
>> Alex.
>>
>> Moore, Robert wrote:
>>> No changes that I know of before 20070508.
>>>
>>> You'll need to figure out why you are getting another GPE before the
>>> _Lxx method completes. There was something like this on Linux with an HP
>>> machine, perhaps Alexey can help.
>>>
>>> As I recall, there was something nasty happening where the TZ trip
>>> points had to be reset before the Notify() handler completed, but this
>>> ended up causing another GPE, etc. etc.
>>>
>>> Bob
>>>
>>>
>>>> -----Original Message-----
>>>> From: Nate Lawson [mailto:nate@root.org]
>>>> Sent: Monday, January 07, 2008 10:09 AM
>>>> To: Moore, Robert
>>>> Cc: Yousif Hassan; freebsd-acpi@FreeBSD.org
>>>> Subject: Re: GPE handler livelock
>>>>
>>>> Bob, thanks for the reply.  That's exactly what my investigation is
>>>> showing also.  It appears we're still on 20070320 so I'm not sure why
>>>> this would affect us though.  Perhaps a similar change was already
>>>> present?  In any case, we should see if an import fixes this.
>>>>
>>>> Thanks,
>>>> Nate
>>>>
>>>> Moore, Robert wrote:
>>>>> This sounds suspiciously like the changes we made to the Notify()
>>>>> handling last year. We attempted to make the notify handler run
>>>>> synchronously with the caller to Notify(), but this created more
>>>>> problems than it solved. We ended up returning the behavior of Notify
>>>>> handlers to be asynchronous:
>>>>>
>>>>>
>>>>>
>>>>> 19 October 2007. Summary of changes for version 20071019:
>>>>>
>>>>> 1) ACPI CA Core Subsystem:
>>>>>
>>>>> Reverted a change to Notify handling that was introduced in version
>>>>> 20070508. This version changed the Notify handling from asynchronous
>>> to
>>>>> fully synchronous (Device driver Notify handling with respect to the
>>>>> Notify
>>>>> ASL operator). It was found that this change caused more problems
>>> than
>>>>> it
>>>>> solved and was removed by most users.
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>> -----Original Message-----
>>>>>> From: owner-freebsd-acpi@freebsd.org [mailto:owner-freebsd-
>>>>>> acpi@freebsd.org] On Behalf Of Yousif Hassan
>>>>>> Sent: Sunday, January 06, 2008 12:18 PM
>>>>>> To: Nate Lawson
>>>>>> Cc: freebsd-acpi@FreeBSD.org
>>>>>> Subject: Re: GPE handler livelock
>>>>>>
>>>>>> Nate wrote:
>>>>>>> Thanks for digging into this.  I reviewed this and am trying to
>>>>> figure
>>>>>>> out why the _L00 handler never completes.  It keeps getting
>>> preempted
>>>>> by
>>>>>>> the next one.  To help track this down, try removing these two
>>> lines
>>>>>>> from the _L00 method and recompile your ASL:
>>>>>>>
>>>>>>>    Acquire (\_TZ.C173, 0xFFFF)
>>>>>>>    ...
>>>>>>>    Release (\_TZ.C173)
>>>>>>>
>>>>>>> For others who have this problem, instructions on how to recompile
>>>>> and
>>>>>>> load your custom ASL can be found here (11.16.4 and 5):
>>>>>>>
>>> http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/acpi-debug.htm
>>>>> l




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?47829C03.3010802>