diff options
author | Puneet Kumar <[email protected]> | 2013-11-15 11:41:29 -0800 |
---|---|---|
committer | Rafael J. Wysocki <[email protected]> | 2013-11-15 23:18:27 +0100 |
commit | 36b15875a7819a2ec4cb5748ff7096ad7bd86cbb (patch) | |
tree | e5351fc5dac51c8711f4fc1c469bb9d9a45b5a0b | |
parent | 5e01dc7b26d9f24f39abace5da98ccbd6a5ceb52 (diff) |
ACPI / EC: Ensure lock is acquired before accessing ec struct members
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 <[email protected]>
Fixes: b76b51ba0cef ('ACPI / EC: Add more debug info and trivial code cleanup')
References: http://crbug.com/319019
Signed-off-by: Puneet Kumar <[email protected]>
Reviewed-by: Aaron Durbin <[email protected]>
[olof: Commit message reworded a bit]
Signed-off-by: Olof Johansson <[email protected]>
Cc: 3.8+ <[email protected]> # 3.8+
Signed-off-by: Rafael J. Wysocki <[email protected]>
-rw-r--r-- | drivers/acpi/ec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/acpi/ec.c b/drivers/acpi/ec.c index a06d98374705..15986f32009e 100644 --- a/drivers/acpi/ec.c +++ b/drivers/acpi/ec.c @@ -175,9 +175,10 @@ static void start_transaction(struct acpi_ec *ec) static void advance_transaction(struct acpi_ec *ec, u8 status) { unsigned long flags; - struct transaction *t = ec->curr; + struct transaction *t; spin_lock_irqsave(&ec->lock, flags); + t = ec->curr; if (!t) goto unlock; if (t->wlen > t->wi) { |