projects
/
linux-4.9.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
07b74df
)
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>
Mon, 20 Feb 2017 12:17:33 +0000
(12:17 +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 9b5f04404152c296af3a96132f27cfc80ffa9af9..f8a9af6e6b915812be2ba2c1c2b4010644bdc882 100644
(file)
--- a/
kernel/resource.c
+++ b/
kernel/resource.c
@@
-246,6
+246,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;