1 From f641853ee23864c1ea7c36553e6406662b8cd0ba 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 005/454] Protect __release_resource against resources without
7 Without this patch, removing a device tree overlay can crash here.
9 Signed-off-by: Phil Elwell <phil@raspberrypi.org>
11 kernel/resource.c | 6 ++++++
12 1 file changed, 6 insertions(+)
14 --- a/kernel/resource.c
15 +++ b/kernel/resource.c
16 @@ -246,6 +246,12 @@ static int __release_resource(struct res
18 struct resource *tmp, **p, *chd;
21 + WARN(old->sibling, "sibling but no parent");
26 p = &old->parent->child;