Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Feb 2005 23:38:41 +0000 (UTC)
From:      Nate Lawson <njl@FreeBSD.org>
To:        src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org
Subject:   cvs commit: src/sys/dev/acpica acpi_ec.c
Message-ID:  <200502212338.j1LNcfFV075500@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
njl         2005-02-21 23:38:41 UTC

  FreeBSD src repository

  Modified files:
    sys/dev/acpica       acpi_ec.c 
  Log:
  Since the GPE handler is directly called by ACPI-CA and it may have unknown
  locks held, specify the ACPI_ISR flag to keep it from acquiring any more
  mutexes (which could potentially sleep.)  This should fix "could sleep"
  warning messages on the following path:
  
      msleep()
      AcpiOsWaitSemaphore()
      AcpiUtAcquireMutex()
      AcpiDisableGpe()
      EcGpeHandler()
      AcpiEvGpeDispatch()
      AcpiEvGpeDetect()
      AcpiEvGpeDetect()
      AcpiEvSciXruptHandler()
  
  Revision  Changes    Path
  1.62      +8 -3      src/sys/dev/acpica/acpi_ec.c



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