diff options
author | Bjorn Helgaas <bhelgaas@google.com> | 2014-03-07 11:22:19 -0500 |
---|---|---|
committer | Bjorn Helgaas <bhelgaas@google.com> | 2014-03-19 17:00:16 -0400 |
commit | 6404e88e8385638123f4b18b104430480870601a (patch) | |
tree | 640e5214d954492e08b14fcf0d23011736a7e2d7 /kernel | |
parent | e20fa6609a0076def469aeb799b1c25558e70042 (diff) |
resources: Set type in __request_region()
We don't set the type (I/O, memory, etc.) of resources added by
__request_region(), which leads to confusing messages like this:
address space collision: [io 0x1000-0x107f] conflicts with ACPI CPU throttle [??? 0x00001010-0x00001015 flags 0x80000000]
Set the type of a new resource added by __request_region() (used by
request_region() and request_mem_region()) to the type of its parent. This
makes the resource tree internally consistent and fixes messages like the
above, where the ACPI CPU throttle resource really is an I/O port region,
but request_region() didn't fill in the type, so %pR didn't know how to
print it.
Sample dmesg showing the issue at the link below.
Link: https://bugzilla.kernel.org/show_bug.cgi?id=71611
Reported-by: Paul Bolle <pebolle@tiscali.nl>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/resource.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/resource.c b/kernel/resource.c index a8344dda7049..673061c06da1 100644 --- a/kernel/resource.c +++ b/kernel/resource.c | |||
@@ -945,8 +945,8 @@ struct resource * __request_region(struct resource *parent, | |||
945 | res->name = name; | 945 | res->name = name; |
946 | res->start = start; | 946 | res->start = start; |
947 | res->end = start + n - 1; | 947 | res->end = start + n - 1; |
948 | res->flags = IORESOURCE_BUSY; | 948 | res->flags = resource_type(parent); |
949 | res->flags |= flags; | 949 | res->flags |= IORESOURCE_BUSY | flags; |
950 | 950 | ||
951 | write_lock(&resource_lock); | 951 | write_lock(&resource_lock); |
952 | 952 | ||