From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Rafael J. Wysocki" Date: Sat, 20 Aug 2011 19:31:19 +0000 Subject: [PATCH 0/2] sh-sci / PM: Fix problem with runtime PM callbacks run with interrupts off Message-Id: <201108202131.19479.rjw@sisk.pl> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-sh@vger.kernel.org Cc: Linux PM mailing list , LKML , Magnus Damm Hi, The sh-sci driver uses pm_runtime_get/put_sync() in such a way that they may be run with interrupts off and cause the (recently added) might_sleep_if() to trigger in rpm_suspend/resume(). To avoid that, it's necessary to set the SCI device's power.irq_safe flag to indicate that it's runtime PM callbacks may be executed with interrupts off safely. However, the sh-sci driver needs to be able to clear that flag sometimes, so a new runtime PM helper for doing that is needed. [1/2] - Add pm_runtime_irq_unsafe() for clearing the power.irq_safe device flag. [2/2] - Make sh-sci use power.irq_safe to indicate that runtime PM callbacks may be run with interrupts off. Thanks, Rafael