936cd00cb89014478afc7a1ecf08b7738ffbeb7c
[librecmc/librecmc.git] / target / linux / brcm2708 / patches-4.4 / 0180-Protect-__release_resource-against-resources-without.patch
1 From c841449374b2acd024ae8971bbd2474c6ba27309 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 180/232] Protect __release_resource against resources without
5  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 @@ -237,6 +237,12 @@ static int __release_resource(struct res
17  {
18         struct resource *tmp, **p;
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;