linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* One comment on the __release_region in kernel/resource.c
@ 2011-10-02 13:57 Wei Yang
  2011-10-03 10:24 ` KAMEZAWA Hiroyuki
  0 siblings, 1 reply; 8+ messages in thread
From: Wei Yang @ 2011-10-02 13:57 UTC (permalink / raw)
  To: linux-kernel, kamezawa.hiroyu, linux-mm

[-- Attachment #1: Type: text/plain, Size: 1273 bytes --]

Dear experts,

I am viewing the source code of __release_region() in kernel/resource.c.
And I have one comment for the performance issue.

For example, we have a resource tree like this.
10-89
   20-79
       30-49
       55-59
       60-64
       65-69
   80-89
100-279

If the caller wants to release a region of [50,59], the original code will
execute four times in the for loop in the subtree of 20-79.

After changing the code below, it will execute two times instead.

By using the "git annotate", I see this code is committed by Linus as the
initial version. So don't get more information about why this code is
written
in this way.

Maybe the case I thought will not happen in the real world?

Your comment is warmly welcome. :)

diff --git a/kernel/resource.c b/kernel/resource.c
index 8461aea..81525b4 100644
--- a/kernel/resource.c
+++ b/kernel/resource.c
@@ -931,7 +931,7 @@ void __release_region(struct resource *parent,
resource_size_t start,
       for (;;) {
               struct resource *res = *p;

-               if (!res)
+               if (!res || res->start > start)
                       break;
               if (res->start <= start && res->end >= end) {
                       if (!(res->flags & IORESOURCE_BUSY)) {

Wei Yang
Help You, Help Me

[-- Attachment #2: Type: text/html, Size: 1609 bytes --]

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-10-04 14:17 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-02 13:57 One comment on the __release_region in kernel/resource.c Wei Yang
2011-10-03 10:24 ` KAMEZAWA Hiroyuki
2011-10-03 11:15   ` Geert Uytterhoeven
2011-10-03 13:35     ` Wei Yang
2011-10-03 14:03       ` Geert Uytterhoeven
2011-10-03 14:24         ` Wei Yang
2011-10-04 14:17         ` Wei Yang
2011-10-03 13:30   ` Wei Yang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).