mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-29 09:16:33 +00:00
resource: fix locking in find_next_iomem_res()
[ Upstream commit49f17c26c1
] Since resources can be removed, locking should ensure that the resource is not removed while accessing it. However, find_next_iomem_res() does not hold the lock while copying the data of the resource. Keep holding the lock while the data is copied. While at it, change the return value to a more informative value. It is disregarded by the callers. [akpm@linux-foundation.org: fix find_next_iomem_res() documentation] Link: http://lkml.kernel.org/r/20190613045903.4922-2-namit@vmware.com Fixes:ff3cc952d3
("resource: Add remove_resource interface") Signed-off-by: Nadav Amit <namit@vmware.com> Reviewed-by: Andrew Morton <akpm@linux-foundation.org> Reviewed-by: Dan Williams <dan.j.williams@intel.com> Cc: Borislav Petkov <bp@suse.de> Cc: Toshi Kani <toshi.kani@hpe.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Dave Hansen <dave.hansen@linux.intel.com> Cc: Bjorn Helgaas <bhelgaas@google.com> Cc: Ingo Molnar <mingo@kernel.org> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
485bcc29a2
commit
192b9af8ca
@ -325,7 +325,7 @@ EXPORT_SYMBOL(release_resource);
|
||||
*
|
||||
* If a resource is found, returns 0 and *res is overwritten with the part
|
||||
* of the resource that's within [start..end]; if none is found, returns
|
||||
* -1.
|
||||
* -ENODEV. Returns -EINVAL for invalid parameters.
|
||||
*
|
||||
* This function walks the whole tree and not just first level children
|
||||
* unless @first_level_children_only is true.
|
||||
@ -359,16 +359,16 @@ static int find_next_iomem_res(resource_size_t start, resource_size_t end,
|
||||
break;
|
||||
}
|
||||
|
||||
read_unlock(&resource_lock);
|
||||
if (!p)
|
||||
return -1;
|
||||
if (p) {
|
||||
/* copy data */
|
||||
res->start = max(start, p->start);
|
||||
res->end = min(end, p->end);
|
||||
res->flags = p->flags;
|
||||
res->desc = p->desc;
|
||||
}
|
||||
|
||||
/* copy data */
|
||||
res->start = max(start, p->start);
|
||||
res->end = min(end, p->end);
|
||||
res->flags = p->flags;
|
||||
res->desc = p->desc;
|
||||
return 0;
|
||||
read_unlock(&resource_lock);
|
||||
return p ? 0 : -ENODEV;
|
||||
}
|
||||
|
||||
static int __walk_iomem_res_desc(resource_size_t start, resource_size_t end,
|
||||
|
Loading…
Reference in New Issue
Block a user