Patch "soundwire: debugfs: use controller id instead of link_id" has been added to the 5.10-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

    soundwire: debugfs: use controller id instead of link_id

to the 5.10-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:
     soundwire-debugfs-use-controller-id-instead-of-link_.patch
and it can be found in the queue-5.10 subdirectory.

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



commit 7abd55a43f186fd1f58fc0ec99dda57c9d66e1ef
Author: Srinivas Kandagatla <srinivas.kandagatla@xxxxxxxxxx>
Date:   Fri Jan 15 16:25:59 2021 +0000

    soundwire: debugfs: use controller id instead of link_id
    
    [ Upstream commit 6d5e7af1f6f5924de5dd1ebe97675c2363100878 ]
    
    link_id can be zero and if we have multiple controller instances
    in a system like Qualcomm debugfs will end-up with duplicate namespace
    resulting in incorrect debugfs entries.
    
    Using id should give a unique debugfs directory entry and should fix below
    warning too.
    "debugfs: Directory 'master-0' with parent 'soundwire' already present!"
    
    Fixes: bf03473d5bcc ("soundwire: add debugfs support")
    Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@xxxxxxxxxx>
    Link: https://lore.kernel.org/r/20210115162559.20869-1-srinivas.kandagatla@xxxxxxxxxx
    Signed-off-by: Vinod Koul <vkoul@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/soundwire/debugfs.c b/drivers/soundwire/debugfs.c
index b6cad0d59b7b9..5f9efa42bb25b 100644
--- a/drivers/soundwire/debugfs.c
+++ b/drivers/soundwire/debugfs.c
@@ -19,7 +19,7 @@ void sdw_bus_debugfs_init(struct sdw_bus *bus)
 		return;
 
 	/* create the debugfs master-N */
-	snprintf(name, sizeof(name), "master-%d", bus->link_id);
+	snprintf(name, sizeof(name), "master-%d", bus->id);
 	bus->debugfs = debugfs_create_dir(name, sdw_debugfs_root);
 }
 



[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