From: "Jared Hulbert" <jaredeh@gmail.com>
To: "Linus Torvalds" <torvalds@linux-foundation.org>
Cc: "Nick Piggin" <npiggin@suse.de>,
"Andrew Morton" <akpm@linux-foundation.org>,
"Carsten Otte" <cotte@de.ibm.com>,
"Martin Schwidefsky" <schwidefsky@de.ibm.com>,
"Heiko Carstens" <heiko.carstens@de.ibm.com>,
linux-mm@kvack.org, linux-fsdevel@vger.kernel.org,
"Maxim Shchetynin" <maxim@de.ibm.com>
Subject: Re: [RFC][PATCH 1/3] xip: no struct pages -- get_xip_mem
Date: Sat, 8 Mar 2008 10:53:59 -0800 [thread overview]
Message-ID: <6934efce0803081053t7c9c1351sd977803157540ce3@mail.gmail.com> (raw)
In-Reply-To: <alpine.LFD.1.00.0803072331090.2911@woody.linux-foundation.org>
> Is there any way we could just re-use the same calling conventions as we
> already use for "vma->fault()"?
>
>
> > + int (*get_xip_mem)(struct address_space *, pgoff_t, int, void **,
> > + unsigned long *);
>
> This really looks very close to
>
> int (*fault)(struct vm_area_struct *vma, struct vm_fault *vmf);
>
> and "struct vm_fault" returns either a kernel virtual address or a "struct
> page *"
>
> So would it be possible to just use the same calling convention, except
> passing a "struct address_space" instead of a "struct vm_area_struct"?
>
> I realize that "struct vm_fault" doesn't have a pfn in it (if they don't
> do a "struct page", they are expected to fill in the PTE directly instead
> and return VM_FAULT_NOPAGE), but I wonder if it should.
I think that makes a lot of sense. The get_xip_mem() also takes in
vmf->pgoff as an input, yeah that would be nice. I'll do that Monday.
> The whole git_xip_page() issue really looks very similar to "fault in a
> page from an address space". It feels kind of wrong to have filesystems
> implement two functions for what seems to be the exact same issue.
get_xip_mem() does look similar to fault() but if you at it's place in
call stack it's more like
int (*readpage)(struct file *, struct page *);
In AXFS depending on whether a page is XIP or not
axfs_fault() > filemap_fault() > axfs_readpage()
Or for an XIP page it's
axfs_fault() > xip_file_fault() > get_xip_mem()
So I it doesn't feel like overlap to me. I think the overlap is
actually upstream in filemap_fault() vs xip_file_fault(). But I'm not
smart enough to figure it out yet.
next prev parent reply other threads:[~2008-03-08 18:54 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-03-08 4:33 [RFC][PATCH 1/3] xip: no struct pages -- get_xip_mem Jared Hulbert
2008-03-08 7:37 ` Linus Torvalds
2008-03-08 18:53 ` Jared Hulbert [this message]
2008-03-10 23:43 ` Jared Hulbert
2008-03-11 10:58 ` 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=6934efce0803081053t7c9c1351sd977803157540ce3@mail.gmail.com \
--to=jaredeh@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=cotte@de.ibm.com \
--cc=heiko.carstens@de.ibm.com \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=maxim@de.ibm.com \
--cc=npiggin@suse.de \
--cc=schwidefsky@de.ibm.com \
--cc=torvalds@linux-foundation.org \
/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;
as well as URLs for NNTP newsgroup(s).