From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Daniel Lowengrub <lowdanie@gmail.com>
Cc: linux-mm@kvack.org, Ingo Molnar <mingo@elte.hu>,
linux-kernel@vger.kernel.org,
Nick Piggin <nickpiggin@yahoo.com.au>,
Alexey Dobriyan <adobriyan@gmail.com>,
Wolfram Strepp <wstrepp@gmx.de>
Subject: Re: [PATCH 1/2] mm: use list.h for vma list
Date: Thu, 12 Mar 2009 10:58:32 +0100 [thread overview]
Message-ID: <1236851912.5090.93.camel@laptop> (raw)
In-Reply-To: <8c5a844a0903110255q45b7cdf4u1453ce40d495ee2c@mail.gmail.com>
On Wed, 2009-03-11 at 11:55 +0200, Daniel Lowengrub wrote:
> Use the linked list defined list.h for the list of vmas that's stored
> in the mm_struct structure. Wrapper functions "vma_next" and
> "vma_prev" are also implemented. Functions that operate on more than
> one vma are now given a list of vmas as input.
>
> Signed-off-by: Daniel Lowengrub
While this is the approach I've taken for a patch I'm working on, a
better solution has come up if you keep the RB tree (I don't).
It is, however, even more invasive than the this one ;-)
Wolfram has been working on implementing a threaded RB-tree. This means
rb_prev() and rb_next() will be O(1) operations, so you could simply use
those to iterate the vmas.
The only draw-back is that each and every RB-tree user in the kernel
needs to be adapted because its not quite possible to maintain the
current API.
I was planning to help Wolfram do that, but I'm utterly swamped atm. :-(
What needs to be done is introduce rb_left(), rb_right() and rb_node()
helpers that for now look like:
static inline struct rb_node *rb_left(struct rb_node *n)
{
return n->rb_left;
}
static inline struct rb_node *rb_right(struct rb_node *n)
{
return n->rb_right;
}
static inline struct rb_node *rb_node(struct rb_node *n)
{
return n;
}
We need these because the left and right child pointers will be
over-loaded with threading information.
After that we can flip the implementation of the RB-tree.
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2009-03-12 9:58 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-03-11 9:55 Daniel Lowengrub
2009-03-11 10:40 ` Alexey Dobriyan
2009-03-11 10:52 ` Ingo Molnar
2009-03-11 11:54 ` Nick Piggin
2009-03-11 13:25 ` Daniel Lowengrub
2009-03-12 3:00 ` Nick Piggin
2009-03-12 8:32 ` KOSAKI Motohiro
2009-03-12 9:58 ` Peter Zijlstra [this message]
2009-04-02 9:56 ` Daniel Lowengrub
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1236851912.5090.93.camel@laptop \
--to=a.p.zijlstra@chello.nl \
--cc=adobriyan@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=lowdanie@gmail.com \
--cc=mingo@elte.hu \
--cc=nickpiggin@yahoo.com.au \
--cc=wstrepp@gmx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox