projects
/
platform
/
kernel
/
linux-rpi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e9fa43c
)
Protect __release_resource against resources without parents
author
Phil Elwell
<phil@raspberrypi.org>
Fri, 13 Mar 2015 12:43:36 +0000
(12:43 +0000)
committer
popcornmix
<popcornmix@gmail.com>
Wed, 27 Jan 2021 19:12:45 +0000
(19:12 +0000)
Without this patch, removing a device tree overlay can crash here.
Signed-off-by: Phil Elwell <phil@raspberrypi.org>
kernel/resource.c
patch
|
blob
|
history
diff --git
a/kernel/resource.c
b/kernel/resource.c
index
3ae2f56
..
2f1a85c
100644
(file)
--- a/
kernel/resource.c
+++ b/
kernel/resource.c
@@
-214,6
+214,12
@@
static int __release_resource(struct resource *old, bool release_child)
{
struct resource *tmp, **p, *chd;
+ if (!old->parent) {
+ WARN(old->sibling, "sibling but no parent");
+ if (old->sibling)
+ return -EINVAL;
+ return 0;
+ }
p = &old->parent->child;
for (;;) {
tmp = *p;