The patch titled acpi cpufreq cleanup: move bailing out of function before locking the mutex has been removed from the -mm tree. Its filename was acpi-cpufreq-cleanup-move-bailing-out-of-function-before-locking-the-mutex.patch This patch was dropped because it was merged into mainline or a subsystem tree The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: acpi cpufreq cleanup: move bailing out of function before locking the mutex From: Thomas Renninger <trenn@xxxxxxx> Signed-off-by: Thomas Renninger <trenn@xxxxxxx> Cc: Andi Kleen <andi@xxxxxxxxxxxxxx> Cc: Len Brown <lenb@xxxxxxxxxx> Cc: Dave Jones <davej@xxxxxxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Venkatesh Pallipadi <venkatesh.pallipadi@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/acpi/processor_perflib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff -puN drivers/acpi/processor_perflib.c~acpi-cpufreq-cleanup-move-bailing-out-of-function-before-locking-the-mutex drivers/acpi/processor_perflib.c --- a/drivers/acpi/processor_perflib.c~acpi-cpufreq-cleanup-move-bailing-out-of-function-before-locking-the-mutex +++ a/drivers/acpi/processor_perflib.c @@ -95,10 +95,10 @@ static int acpi_processor_ppc_notifier(s if (ignore_ppc) return 0; - mutex_lock(&performance_mutex); - if (event != CPUFREQ_INCOMPATIBLE) - goto out; + return 0; + + mutex_lock(&performance_mutex); pr = per_cpu(processors, policy->cpu); if (!pr || !pr->performance) _ Patches currently in -mm which might be from trenn@xxxxxxx are origin.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html