]> git.ipfire.org Git - thirdparty/openwrt.git/blob
2070df5c17c31ad5466f54cce9da018c69c60559
[thirdparty/openwrt.git] /
1 From fd4dd0612e2b97840bb5ca1699ff7d779704c4a9 Mon Sep 17 00:00:00 2001
2 From: Phil Elwell <phil@raspberrypi.org>
3 Date: Fri, 13 Mar 2015 12:43:36 +0000
4 Subject: [PATCH 0066/1085] Protect __release_resource against resources
5 without parents
6
7 Without this patch, removing a device tree overlay can crash here.
8
9 Signed-off-by: Phil Elwell <phil@raspberrypi.org>
10 ---
11 kernel/resource.c | 6 ++++++
12 1 file changed, 6 insertions(+)
13
14 --- a/kernel/resource.c
15 +++ b/kernel/resource.c
16 @@ -200,6 +200,12 @@ static int __release_resource(struct res
17 {
18 struct resource *tmp, **p, *chd;
19
20 + if (!old->parent) {
21 + WARN(old->sibling, "sibling but no parent");
22 + if (old->sibling)
23 + return -EINVAL;
24 + return 0;
25 + }
26 p = &old->parent->child;
27 for (;;) {
28 tmp = *p;