From: Nick Piggin <nickpiggin@yahoo.com.au>
To: Nick Piggin <npiggin@suse.de>
Cc: gerg@uclinux.org,
Linux Memory Management List <linux-mm@kvack.org>,
Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
David Howells <dhowells@redhat.com>
Subject: Re: [patch][rfc] nommu: reverse mappings for nommu to solve get_user_pages problem
Date: Sat, 11 Mar 2006 15:54:42 +1100 [thread overview]
Message-ID: <44125812.1090408@yahoo.com.au> (raw)
In-Reply-To: <20060311032606.GK26501@wotan.suse.de>
Nick Piggin wrote:
> int get_user_pages(struct task_struct *tsk, struct mm_struct *mm,
> unsigned long start, int len, int write, int force,
> struct page **pages, struct vm_area_struct **vmas)
> {
> int i;
> - static struct vm_area_struct dummy_vma;
> + struct page *__page;
> + static struct vm_area_struct *__vma;
> + unsigned long addr = start;
>
> for (i = 0; i < len; i++) {
> + __vma = find_vma(mm, addr);
> + if (!__vma)
> + goto out_failed;
> +
> + __page = virt_to_page(addr);
> + if (!__page)
> + goto out_failed;
> +
> + BUG_ON(page_vma(__page) != __vma);
> +
Actually this check is leftover from a previous version. I think it
needs to be removed.
> if (pages) {
> - pages[i] = virt_to_page(start);
> - if (pages[i])
> - page_cache_get(pages[i]);
> + if (!__page->mapping) {
> + printk(KERN_INFO "get_user_pages on unaligned"
> + "anonymous page unsupported\n"); dump_stack();
> + goto out_failed;
> + }
> +
And this could trigger for file-backed pages that have been truncated meanwhile
I think. It wouldn't be a problem for a simple test-run, but does need to be
reworked slightly in order to be correct. Sub-page anonymous mappings cause a
lot of headaches :)
--
SUSE Labs, Novell Inc.
Send instant messages to your online friends http://au.messenger.yahoo.com
--
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:[~2006-03-11 4:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-03-11 3:26 Nick Piggin
2006-03-11 4:54 ` Nick Piggin [this message]
2006-03-15 1:35 ` Greg Ungerer
2006-03-16 8:05 ` Nick Piggin
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=44125812.1090408@yahoo.com.au \
--to=nickpiggin@yahoo.com.au \
--cc=dhowells@redhat.com \
--cc=gerg@uclinux.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=npiggin@suse.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