mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 13:20:52 +07:00
Merge branch 'acpi-ec'
* acpi-ec: ACPI / EC: Ensure lock is acquired before accessing ec struct members
This commit is contained in:
commit
dcaea2c18e
@ -173,9 +173,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) {
|
||||
|
Loading…
Reference in New Issue
Block a user