Patch "ASoC: rt5682: Fix panic in rt5682_jack_detect_handler happening during system shutdown" has been added to the 5.11-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ASoC: rt5682: Fix panic in rt5682_jack_detect_handler happening during system shutdown

to the 5.11-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     asoc-rt5682-fix-panic-in-rt5682_jack_detect_handler-.patch
and it can be found in the queue-5.11 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit feb6e59e0326e2941bbcaf3d355b01c4f1bee357
Author: Sathyanarayana Nujella <sathyanarayana.nujella@xxxxxxxxx>
Date:   Fri Feb 5 09:14:28 2021 -0800

    ASoC: rt5682: Fix panic in rt5682_jack_detect_handler happening during system shutdown
    
    [ Upstream commit 45a2702ce10993eda7a5b12690294782d565519c ]
    
    During Coldboot stress tests, system encountered the following panic.
    Panic logs depicts rt5682_i2c_shutdown() happened first and then later
    jack detect handler workqueue function triggered.
    This situation causes panic as rt5682_i2c_shutdown() resets codec.
    Fix this panic by cancelling all jack detection delayed work.
    
    Panic log:
    [   20.936124] sof_pci_shutdown
    [   20.940248] snd_sof_device_shutdown
    [   20.945023] snd_sof_shutdown
    [   21.126849] rt5682_i2c_shutdown
    [   21.286053] rt5682_jack_detect_handler
    [   21.291235] BUG: kernel NULL pointer dereference, address: 000000000000037c
    [   21.299302] #PF: supervisor read access in kernel mode
    [   21.305254] #PF: error_code(0x0000) - not-present page
    [   21.311218] PGD 0 P4D 0
    [   21.314155] Oops: 0000 [#1] PREEMPT SMP NOPTI
    [   21.319206] CPU: 2 PID: 123 Comm: kworker/2:3 Tainted: G     U            5.4.68 #10
    [   21.333687] ACPI: Preparing to enter system sleep state S5
    [   21.337669] Workqueue: events_power_efficient rt5682_jack_detect_handler [snd_soc_rt5682]
    [   21.337671] RIP: 0010:rt5682_jack_detect_handler+0x6c/0x279 [snd_soc_rt5682]
    
    Fixes: a50067d4f3c1d ('ASoC: rt5682: split i2c driver into separate module')
    Signed-off-by: Jairaj Arava <jairaj.arava@xxxxxxxxx>
    Signed-off-by: Sathyanarayana Nujella <sathyanarayana.nujella@xxxxxxxxx>
    Reviewed-by: Pierre-Louis Bossart <pierre-louis.bossart@xxxxxxxxx>
    Reviewed-by: Shuming Fan <shumingf@xxxxxxxxxxx>
    Signed-off-by: Ranjani Sridharan <ranjani.sridharan@xxxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20210205171428.2344210-1-ranjani.sridharan@xxxxxxxxxxxxxxx
    Signed-off-by: Mark Brown <broonie@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/sound/soc/codecs/rt5682-i2c.c b/sound/soc/codecs/rt5682-i2c.c
index 37d13120f5ba8..93c1603b42f10 100644
--- a/sound/soc/codecs/rt5682-i2c.c
+++ b/sound/soc/codecs/rt5682-i2c.c
@@ -273,6 +273,9 @@ static void rt5682_i2c_shutdown(struct i2c_client *client)
 {
 	struct rt5682_priv *rt5682 = i2c_get_clientdata(client);
 
+	cancel_delayed_work_sync(&rt5682->jack_detect_work);
+	cancel_delayed_work_sync(&rt5682->jd_check_work);
+
 	rt5682_reset(rt5682);
 }
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux