projects
/
platform
/
kernel
/
linux-starfive.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1b656e9
)
firmware: qemu_fw_cfg: remove sysfs entries explicitly
author
Johan Hovold
<johan@kernel.org>
Wed, 1 Dec 2021 13:25:28 +0000
(14:25 +0100)
committer
Michael S. Tsirkin
<mst@redhat.com>
Fri, 14 Jan 2022 23:50:52 +0000
(18:50 -0500)
Explicitly remove the file entries from sysfs before dropping the final
reference for symmetry reasons and for consistency with the rest of the
driver.
Signed-off-by: Johan Hovold <johan@kernel.org>
Link:
https://lore.kernel.org/r/20211201132528.30025-5-johan@kernel.org
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
drivers/firmware/qemu_fw_cfg.c
patch
|
blob
|
history
diff --git
a/drivers/firmware/qemu_fw_cfg.c
b/drivers/firmware/qemu_fw_cfg.c
index
f08e056
..
b436342
100644
(file)
--- a/
drivers/firmware/qemu_fw_cfg.c
+++ b/
drivers/firmware/qemu_fw_cfg.c
@@
-389,6
+389,7
@@
static void fw_cfg_sysfs_cache_cleanup(void)
list_for_each_entry_safe(entry, next, &fw_cfg_entry_cache, list) {
fw_cfg_sysfs_cache_delist(entry);
+ kobject_del(&entry->kobj);
kobject_put(&entry->kobj);
}
}