diff options
author | Toshi Kani <toshi.kani@hpe.com> | 2016-01-26 15:57:32 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2016-01-30 03:49:59 -0500 |
commit | a8fc42530ddd19d7580fe8c9f2ea86220a97e94c (patch) | |
tree | cf9eda28772e7868a1af2c0788aa08527a2f38f7 /kernel/resource.c | |
parent | f296f2634920d205b93d878b48d87bb7e0a4c256 (diff) |
resource: Kill walk_iomem_res()
walk_iomem_res_desc() replaced walk_iomem_res() and there is no
caller to walk_iomem_res() any more. Kill it. Also remove @name
from find_next_iomem_res() as it is no longer used.
Signed-off-by: Toshi Kani <toshi.kani@hpe.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Dave Young <dyoung@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Dan Williams <dan.j.williams@intel.com>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Hanjun Guo <hanjun.guo@linaro.org>
Cc: Jakub Sitnicki <jsitnicki@gmail.com>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Luis R. Rodriguez <mcgrof@suse.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Toshi Kani <toshi.kani@hp.com>
Cc: Vinod Koul <vinod.koul@intel.com>
Cc: linux-arch@vger.kernel.org
Cc: linux-mm <linux-mm@kvack.org>
Link: http://lkml.kernel.org/r/1453841853-11383-17-git-send-email-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel/resource.c')
-rw-r--r-- | kernel/resource.c | 49 |
1 files changed, 5 insertions, 44 deletions
diff --git a/kernel/resource.c b/kernel/resource.c index 37ed2fcb8246..49834309043c 100644 --- a/kernel/resource.c +++ b/kernel/resource.c | |||
@@ -335,13 +335,12 @@ EXPORT_SYMBOL(release_resource); | |||
335 | /* | 335 | /* |
336 | * Finds the lowest iomem resource existing within [res->start.res->end). | 336 | * Finds the lowest iomem resource existing within [res->start.res->end). |
337 | * The caller must specify res->start, res->end, res->flags, and optionally | 337 | * The caller must specify res->start, res->end, res->flags, and optionally |
338 | * desc and "name". If found, returns 0, res is overwritten, if not found, | 338 | * desc. If found, returns 0, res is overwritten, if not found, returns -1. |
339 | * returns -1. | ||
340 | * This function walks the whole tree and not just first level children until | 339 | * This function walks the whole tree and not just first level children until |
341 | * and unless first_level_children_only is true. | 340 | * and unless first_level_children_only is true. |
342 | */ | 341 | */ |
343 | static int find_next_iomem_res(struct resource *res, unsigned long desc, | 342 | static int find_next_iomem_res(struct resource *res, unsigned long desc, |
344 | char *name, bool first_level_children_only) | 343 | bool first_level_children_only) |
345 | { | 344 | { |
346 | resource_size_t start, end; | 345 | resource_size_t start, end; |
347 | struct resource *p; | 346 | struct resource *p; |
@@ -363,8 +362,6 @@ static int find_next_iomem_res(struct resource *res, unsigned long desc, | |||
363 | continue; | 362 | continue; |
364 | if ((desc != IORES_DESC_NONE) && (desc != p->desc)) | 363 | if ((desc != IORES_DESC_NONE) && (desc != p->desc)) |
365 | continue; | 364 | continue; |
366 | if (name && strcmp(p->name, name)) | ||
367 | continue; | ||
368 | if (p->start > end) { | 365 | if (p->start > end) { |
369 | p = NULL; | 366 | p = NULL; |
370 | break; | 367 | break; |
@@ -411,7 +408,7 @@ int walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start, | |||
411 | orig_end = res.end; | 408 | orig_end = res.end; |
412 | 409 | ||
413 | while ((res.start < res.end) && | 410 | while ((res.start < res.end) && |
414 | (!find_next_iomem_res(&res, desc, NULL, false))) { | 411 | (!find_next_iomem_res(&res, desc, false))) { |
415 | 412 | ||
416 | ret = (*func)(res.start, res.end, arg); | 413 | ret = (*func)(res.start, res.end, arg); |
417 | if (ret) | 414 | if (ret) |
@@ -425,42 +422,6 @@ int walk_iomem_res_desc(unsigned long desc, unsigned long flags, u64 start, | |||
425 | } | 422 | } |
426 | 423 | ||
427 | /* | 424 | /* |
428 | * Walks through iomem resources and calls @func with matching resource | ||
429 | * ranges. This walks the whole tree and not just first level children. | ||
430 | * All the memory ranges which overlap start,end and also match flags and | ||
431 | * name are valid candidates. | ||
432 | * | ||
433 | * @name: name of resource | ||
434 | * @flags: resource flags | ||
435 | * @start: start addr | ||
436 | * @end: end addr | ||
437 | * | ||
438 | * NOTE: This function is deprecated and should not be used in new code. | ||
439 | * Use walk_iomem_res_desc(), instead. | ||
440 | */ | ||
441 | int walk_iomem_res(char *name, unsigned long flags, u64 start, u64 end, | ||
442 | void *arg, int (*func)(u64, u64, void *)) | ||
443 | { | ||
444 | struct resource res; | ||
445 | u64 orig_end; | ||
446 | int ret = -1; | ||
447 | |||
448 | res.start = start; | ||
449 | res.end = end; | ||
450 | res.flags = flags; | ||
451 | orig_end = res.end; | ||
452 | while ((res.start < res.end) && | ||
453 | (!find_next_iomem_res(&res, IORES_DESC_NONE, name, false))) { | ||
454 | ret = (*func)(res.start, res.end, arg); | ||
455 | if (ret) | ||
456 | break; | ||
457 | res.start = res.end + 1; | ||
458 | res.end = orig_end; | ||
459 | } | ||
460 | return ret; | ||
461 | } | ||
462 | |||
463 | /* | ||
464 | * This function calls the @func callback against all memory ranges of type | 425 | * This function calls the @func callback against all memory ranges of type |
465 | * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY. | 426 | * System RAM which are marked as IORESOURCE_SYSTEM_RAM and IORESOUCE_BUSY. |
466 | * Now, this function is only for System RAM, it deals with full ranges and | 427 | * Now, this function is only for System RAM, it deals with full ranges and |
@@ -479,7 +440,7 @@ int walk_system_ram_res(u64 start, u64 end, void *arg, | |||
479 | res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; | 440 | res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; |
480 | orig_end = res.end; | 441 | orig_end = res.end; |
481 | while ((res.start < res.end) && | 442 | while ((res.start < res.end) && |
482 | (!find_next_iomem_res(&res, IORES_DESC_NONE, NULL, true))) { | 443 | (!find_next_iomem_res(&res, IORES_DESC_NONE, true))) { |
483 | ret = (*func)(res.start, res.end, arg); | 444 | ret = (*func)(res.start, res.end, arg); |
484 | if (ret) | 445 | if (ret) |
485 | break; | 446 | break; |
@@ -509,7 +470,7 @@ int walk_system_ram_range(unsigned long start_pfn, unsigned long nr_pages, | |||
509 | res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; | 470 | res.flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY; |
510 | orig_end = res.end; | 471 | orig_end = res.end; |
511 | while ((res.start < res.end) && | 472 | while ((res.start < res.end) && |
512 | (find_next_iomem_res(&res, IORES_DESC_NONE, NULL, true) >= 0)) { | 473 | (find_next_iomem_res(&res, IORES_DESC_NONE, true) >= 0)) { |
513 | pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT; | 474 | pfn = (res.start + PAGE_SIZE - 1) >> PAGE_SHIFT; |
514 | end_pfn = (res.end + 1) >> PAGE_SHIFT; | 475 | end_pfn = (res.end + 1) >> PAGE_SHIFT; |
515 | if (end_pfn > pfn) | 476 | if (end_pfn > pfn) |