From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Pierre Peiffer <pierre.peiffer@bull.net>
Cc: mingo@elte.hu, drepper@redhat.com, linux-kernel@vger.kernel.org,
Jean-Pierre Dion <jean-pierre.dion@bull.net>
Subject: Re: [PATCH 2.6.21-rc3-mm2 3/4] futex_requeue_pi optimization
Date: Tue, 20 Mar 2007 16:55:34 +0100 [thread overview]
Message-ID: <1174406134.16478.37.camel@twins> (raw)
In-Reply-To: <45FFFE72.6000300@bull.net>
On Tue, 2007-03-20 at 16:32 +0100, Pierre Peiffer wrote:
> Peter Zijlstra a écrit :
> >> +static void *get_futex_address(union futex_key *key)
> >> +{
> >> + void *uaddr;
> >> +
> >> + if (key->both.offset & 1) {
> >> + /* shared mapping */
> >> + uaddr = (void*)((key->shared.pgoff << PAGE_SHIFT)
> >> + + key->shared.offset - 1);
> >> + } else {
> >> + /* private mapping */
> >> + uaddr = (void*)(key->private.address + key->private.offset);
> >> + }
> >> +
> >> + return uaddr;
> >> +}
> >
> > This will not work for nonlinear vmas, granted, not a lot of ppl stick
> > futexes in nonlinear vmas, but the futex_key stuff handles it, this
> > doesn't.
>
> Indeed ! Thanks for pointing me to this.
>
> Since I'm not familiar with vmm, does this code look more correct to you ?
Unfortunately not, nonlinear vmas don't have a linear relation between
address and offset. What you would need to do is do a linear walk of the
page tables. But even that might not suffice if nonlinear vmas may form
a non-injective, surjective mapping.
/me checks..
Hmm, yes that seems valid, so in general, this reverse mapping does not
uniquely exist for non-linear vmas. :-(
What to do... disallow futexes in nonlinear mappings, store the address
in the key?
> static void *get_futex_address(union futex_key *key)
> {
> void *uaddr;
> struct vm_area_struct *vma = current->mm->mmap;
>
> if (key->both.offset & 1) {
> /* shared mapping */
> struct file * vmf;
>
> do {
> if ((vmf = vma->vm_file)
> && (key->shared.inode == vmf->f_dentry->d_inode))
> break;
> vma = vma->vm_next;
> } while (vma);
>
> if (likely(!(vma->vm_flags & VM_NONLINEAR)))
> uaddr = (void*)((key->shared.pgoff << PAGE_SHIFT)
> + key->shared.offset - 1);
> else
> uaddr = (void*) vma->vm_start
> + ((key->shared.pgoff - vma->vm_pgoff)
> << PAGE_SHIFT)
> + key->shared.offset - 1;
> } else {
> /* private mapping */
> uaddr = (void*)(key->private.address + key->private.offset);
> }
>
> return uaddr;
> }
>
> Or is there a more direct way to retrieve the vma corresponding to the given inode ?
the vma_prio_tree would be able to give all vmas associated with a
mapping.
next prev parent reply other threads:[~2007-03-20 15:56 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-13 9:52 [PATCH 2.6.21-rc3-mm2 0/4] Futexes functionalities and improvements Pierre.Peiffer
2007-03-13 9:52 ` [PATCH 2.6.21-rc3-mm2 1/4] futex priority based wakeup Pierre.Peiffer
2007-03-13 9:52 ` [PATCH 2.6.21-rc3-mm2 2/4] Make futex_wait() use an hrtimer for timeout Pierre.Peiffer
2007-03-13 9:52 ` [PATCH 2.6.21-rc3-mm2 3/4] futex_requeue_pi optimization Pierre.Peiffer
2007-03-16 10:14 ` Peter Zijlstra
2007-03-20 15:32 ` Pierre Peiffer
2007-03-20 15:55 ` Peter Zijlstra [this message]
2007-03-20 16:32 ` Pierre Peiffer
2007-03-13 9:52 ` [PATCH 2.6.21-rc3-mm2 4/4] sys_futex64 : allows 64bit futexes Pierre.Peiffer
2007-03-15 19:07 ` Andrew Morton
2007-03-15 19:12 ` Ulrich Drepper
2007-03-15 19:31 ` Andrew Morton
2007-03-15 19:37 ` Ulrich Drepper
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=1174406134.16478.37.camel@twins \
--to=a.p.zijlstra@chello.nl \
--cc=drepper@redhat.com \
--cc=jean-pierre.dion@bull.net \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=pierre.peiffer@bull.net \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.