aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPuneet Kumar <puneetster@chromium.org>2013-11-15 14:41:29 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-11-29 14:11:43 -0500
commit968f56ccc37ae686e226fbd2cec9b826c4b6f7c4 (patch)
treeea2b723c8f7ad1bcef283133155d055fd3610d89
parent65b4037862eeec836fef612bbcd558ea10efe1a8 (diff)
ACPI / EC: Ensure lock is acquired before accessing ec struct members
commit 36b15875a7819a2ec4cb5748ff7096ad7bd86cbb upstream. A bug was introduced by commit b76b51ba0cef ('ACPI / EC: Add more debug info and trivial code cleanup') that erroneously caused the struct member to be accessed before acquiring the required lock. This change fixes it by ensuring the lock acquisition is done first. Found by Aaron Durbin <adurbin@chromium.org> Fixes: b76b51ba0cef ('ACPI / EC: Add more debug info and trivial code cleanup') References: http://crbug.com/319019 Signed-off-by: Puneet Kumar <puneetster@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org> [olof: Commit message reworded a bit] Signed-off-by: Olof Johansson <olof@lixom.net> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/acpi/ec.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c
index 45af90a1ec1b..1ad5a4f9e0c3 100644
--- a/drivers/acpi/ec.c
+++ b/drivers/acpi/ec.c
@@ -175,9 +175,10 @@ static void start_transaction(struct acpi_ec *ec)
175static void advance_transaction(struct acpi_ec *ec, u8 status) 175static void advance_transaction(struct acpi_ec *ec, u8 status)
176{ 176{
177 unsigned long flags; 177 unsigned long flags;
178 struct transaction *t = ec->curr; 178 struct transaction *t;
179 179
180 spin_lock_irqsave(&ec->lock, flags); 180 spin_lock_irqsave(&ec->lock, flags);
181 t = ec->curr;
181 if (!t) 182 if (!t)
182 goto unlock; 183 goto unlock;
183 if (t->wlen > t->wi) { 184 if (t->wlen > t->wi) {