* [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c
@ 2011-11-06 15:18 Rakib Mullick
2011-11-06 19:46 ` Srivatsa S. Bhat
2011-11-06 21:13 ` Rafael J. Wysocki
0 siblings, 2 replies; 5+ messages in thread
From: Rakib Mullick @ 2011-11-06 15:18 UTC (permalink / raw)
To: linux-kernel, linux-acpi; +Cc: akpm, ming Lin, len.brown, srivatsa.bhat
Calling pm-suspend might trigger a recursive lock in it's code path. In function acpi_hw_clear_acpi_status, acpi_os_acquire_lock holds the lock acpi_gbl_hardware_lock before calling acpi_hw_register_write(), then without releasing acpi_gbl_hardware_lock, this function calls acpi_ev_walk_gpe_list, which tries to hold acpi_gbl_gpe_lock. Both acpi_gbl_hardware_lock and acpi_gbl_gpe_lock are at same lock-class and which might cause lock recursion deadlock.
Following patch fixes this scenario by just releasing acpi_gbl_hardware_lock before calling acpi_ev_walk_gpe_list.
Changes since v0(https://lkml.org/lkml/2011/9/21/355):
- Fix changelog, thanks to Lin Ming.
Changes since v1 (https://lkml.org/lkml/2011/11/3/89):
- Update changelog and rename goto label, courtesy Srivatsa S. Bhat.
Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com>
Cc: Lin Ming <ming.m.lin@intel.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Len Brown <len.brown@intel.com>
Cc: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
---
diff --git a/drivers/acpi/acpica/hwregs.c b/drivers/acpi/acpica/hwregs.c
index 55accb7..cc70f3f 100644
--- a/drivers/acpi/acpica/hwregs.c
+++ b/drivers/acpi/acpica/hwregs.c
@@ -269,16 +269,17 @@ acpi_status acpi_hw_clear_acpi_status(void)
status = acpi_hw_register_write(ACPI_REGISTER_PM1_STATUS,
ACPI_BITMASK_ALL_FIXED_STATUS);
- if (ACPI_FAILURE(status)) {
- goto unlock_and_exit;
- }
+
+ acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
+
+ if (ACPI_FAILURE(status))
+ goto exit;
/* Clear the GPE Bits in all GPE registers in all GPE blocks */
status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL);
- unlock_and_exit:
- acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
+exit:
return_ACPI_STATUS(status);
}
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c
2011-11-06 15:18 [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c Rakib Mullick
@ 2011-11-06 19:46 ` Srivatsa S. Bhat
2011-11-07 12:13 ` Rakib Mullick
2011-11-06 21:13 ` Rafael J. Wysocki
1 sibling, 1 reply; 5+ messages in thread
From: Srivatsa S. Bhat @ 2011-11-06 19:46 UTC (permalink / raw)
To: Rakib Mullick; +Cc: linux-kernel, linux-acpi, akpm, ming Lin, len.brown
On 11/06/2011 08:48 PM, Rakib Mullick wrote:
> Calling pm-suspend might trigger a recursive lock in it's code path. In function acpi_hw_clear_acpi_status, acpi_os_acquire_lock holds the lock acpi_gbl_hardware_lock before calling acpi_hw_register_write(), then without releasing acpi_gbl_hardware_lock, this function calls acpi_ev_walk_gpe_list, which tries to hold acpi_gbl_gpe_lock. Both acpi_gbl_hardware_lock and acpi_gbl_gpe_lock are at same lock-class and which might cause lock recursion deadlock.
>
> Following patch fixes this scenario by just releasing acpi_gbl_hardware_lock before calling acpi_ev_walk_gpe_list.
>
> Changes since v0(https://lkml.org/lkml/2011/9/21/355):
> - Fix changelog, thanks to Lin Ming.
>
> Changes since v1 (https://lkml.org/lkml/2011/11/3/89):
> - Update changelog and rename goto label, courtesy Srivatsa S. Bhat.
>
> Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com>
> Cc: Lin Ming <ming.m.lin@intel.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Len Brown <len.brown@intel.com>
> Cc: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
> ---
>
It would be a good idea to also give the lockdep warning in the changelog
(though you triggered it in a modified kernel), since that would make
it very clear as to what problem your patch is trying to solve.
[And please line-wrap your changelog to 80 characters at most, per line].
Code-wise, the patch looks good to me. So,
Reviewed-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Thanks,
Srivatsa S. Bhat
> diff --git a/drivers/acpi/acpica/hwregs.c b/drivers/acpi/acpica/hwregs.c
> index 55accb7..cc70f3f 100644
> --- a/drivers/acpi/acpica/hwregs.c
> +++ b/drivers/acpi/acpica/hwregs.c
> @@ -269,16 +269,17 @@ acpi_status acpi_hw_clear_acpi_status(void)
>
> status = acpi_hw_register_write(ACPI_REGISTER_PM1_STATUS,
> ACPI_BITMASK_ALL_FIXED_STATUS);
> - if (ACPI_FAILURE(status)) {
> - goto unlock_and_exit;
> - }
> +
> + acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
> +
> + if (ACPI_FAILURE(status))
> + goto exit;
>
> /* Clear the GPE Bits in all GPE registers in all GPE blocks */
>
> status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL);
>
> - unlock_and_exit:
> - acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
> +exit:
> return_ACPI_STATUS(status);
> }
>
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c
2011-11-06 15:18 [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c Rakib Mullick
2011-11-06 19:46 ` Srivatsa S. Bhat
@ 2011-11-06 21:13 ` Rafael J. Wysocki
2011-11-07 1:10 ` Len Brown
1 sibling, 1 reply; 5+ messages in thread
From: Rafael J. Wysocki @ 2011-11-06 21:13 UTC (permalink / raw)
To: Rakib Mullick
Cc: linux-kernel, linux-acpi, akpm, ming Lin, len.brown,
srivatsa.bhat, Len Brown, Linux PM list
On Sunday, November 06, 2011, Rakib Mullick wrote:
> Calling pm-suspend might trigger a recursive lock in it's code path. In function acpi_hw_clear_acpi_status, acpi_os_acquire_lock holds the lock acpi_gbl_hardware_lock before calling acpi_hw_register_write(), then without releasing acpi_gbl_hardware_lock, this function calls acpi_ev_walk_gpe_list, which tries to hold acpi_gbl_gpe_lock. Both acpi_gbl_hardware_lock and acpi_gbl_gpe_lock are at same lock-class and which might cause lock recursion deadlock.
>
> Following patch fixes this scenario by just releasing acpi_gbl_hardware_lock before calling acpi_ev_walk_gpe_list.
>
> Changes since v0(https://lkml.org/lkml/2011/9/21/355):
> - Fix changelog, thanks to Lin Ming.
>
> Changes since v1 (https://lkml.org/lkml/2011/11/3/89):
> - Update changelog and rename goto label, courtesy Srivatsa S. Bhat.
>
> Signed-off-by: Rakib Mullick <rakib.mullick@gmail.com>
> Cc: Lin Ming <ming.m.lin@intel.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Len Brown <len.brown@intel.com>
> Cc: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
Acked-by: Rafael J. Wysocki <rjw@sisk.pl>
> ---
>
> diff --git a/drivers/acpi/acpica/hwregs.c b/drivers/acpi/acpica/hwregs.c
> index 55accb7..cc70f3f 100644
> --- a/drivers/acpi/acpica/hwregs.c
> +++ b/drivers/acpi/acpica/hwregs.c
> @@ -269,16 +269,17 @@ acpi_status acpi_hw_clear_acpi_status(void)
>
> status = acpi_hw_register_write(ACPI_REGISTER_PM1_STATUS,
> ACPI_BITMASK_ALL_FIXED_STATUS);
> - if (ACPI_FAILURE(status)) {
> - goto unlock_and_exit;
> - }
> +
> + acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
> +
> + if (ACPI_FAILURE(status))
> + goto exit;
>
> /* Clear the GPE Bits in all GPE registers in all GPE blocks */
>
> status = acpi_ev_walk_gpe_list(acpi_hw_clear_gpe_block, NULL);
>
> - unlock_and_exit:
> - acpi_os_release_lock(acpi_gbl_hardware_lock, lock_flags);
> +exit:
> return_ACPI_STATUS(status);
> }
>
>
>
> --
> 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/
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c
2011-11-06 21:13 ` Rafael J. Wysocki
@ 2011-11-07 1:10 ` Len Brown
0 siblings, 0 replies; 5+ messages in thread
From: Len Brown @ 2011-11-07 1:10 UTC (permalink / raw)
To: Rafael J. Wysocki
Cc: Rakib Mullick, linux-kernel, linux-acpi, akpm, ming Lin,
len.brown, srivatsa.bhat, Linux PM list
applied.
thanks,
Len Brown, Intel Open Source Technology Center
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c
2011-11-06 19:46 ` Srivatsa S. Bhat
@ 2011-11-07 12:13 ` Rakib Mullick
0 siblings, 0 replies; 5+ messages in thread
From: Rakib Mullick @ 2011-11-07 12:13 UTC (permalink / raw)
To: Srivatsa S. Bhat; +Cc: linux-kernel, linux-acpi, akpm, ming Lin, len.brown
On Mon, Nov 7, 2011 at 1:46 AM, Srivatsa S. Bhat
<srivatsa.bhat@linux.vnet.ibm.com> wrote:
> On 11/06/2011 08:48 PM, Rakib Mullick wrote:
>
> It would be a good idea to also give the lockdep warning in the changelog
> (though you triggered it in a modified kernel), since that would make
> it very clear as to what problem your patch is trying to solve.
At the time of this reply, it's been taken. So, I'll keep it on mind
for next time.
> [And please line-wrap your changelog to 80 characters at most, per line].
>
Gmail's email editor automatically puts break on a line, that's why I
didn't put any line break on changelog. While I was reading my patch
on lkml.org, I've noticed that it creates a big one line changelog,
which is a bit weird. So, will keep it under 80 line from next time.
> Code-wise, the patch looks good to me. So,
> Reviewed-by: Srivatsa S. Bhat <srivatsa.bhat@linux.vnet.ibm.com>
>
Thanks,
Rakib
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-11-07 12:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-06 15:18 [PATCH -v2] acpi: Fix possible recursive locking in hwregs.c Rakib Mullick
2011-11-06 19:46 ` Srivatsa S. Bhat
2011-11-07 12:13 ` Rakib Mullick
2011-11-06 21:13 ` Rafael J. Wysocki
2011-11-07 1:10 ` Len Brown
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox