mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Hugh Dickins <hugh@veritas.com>
To: Jens Axboe <jens.axboe@oracle.com>
Cc: Andrew Morton <akpm@linux-foundation.org>, linux-kernel@vger.kernel.org
Subject: Re: shmem: convert to using splice instead of sendfile()
Date: Wed, 11 Jul 2007 17:33:29 +0100 (BST)	[thread overview]
Message-ID: <Pine.LNX.4.64.0707111710110.22786@blonde.wat.veritas.com> (raw)
In-Reply-To: <20070711062021.GF4587@kernel.dk>

On Wed, 11 Jul 2007, Jens Axboe wrote:
> On Tue, Jul 10 2007, Andrew Morton wrote:
> > On Tue, 10 Jul 2007 23:00:59 GMT Linux Kernel Mailing List <linux-kernel@vger.kernel.org> wrote:
> > 
> > > +static int shmem_readpage(struct file *file, struct page *page)
> > > +{
> > > +	struct inode *inode = page->mapping->host;
> > > +	int error = shmem_getpage(inode, page->index, &page, SGP_CACHE, NULL);
> > > +	unlock_page(page);
> > > +	return error;
> > > +}
> > 
> > Worried.  shmem_getpage() does
> > 
> > done:
> > 	if (*pagep != filepage) {
> > 		unlock_page(filepage);
> > 		*pagep = filepage;
> > 	}
> > 	return 0;
> > 
> > so we end up unlocking an unlocked page?
> 
> It certainly looks like it - Hugh?

No, it's fine.  The relevant comment is up at the entry to shmem_getpage:
	struct page *filepage = *pagep;  /* (moved down, I'm cheating!) */
	/*
	 * Normally, filepage is NULL on entry, and either found
	 * uptodate immediately, or allocated and zeroed, or read
	 * in under swappage, which is then assigned to filepage.
	 * But shmem_readpage and shmem_prepare_write pass in a locked
	 * filepage, which may be found not uptodate by other callers
	 * too, and may need to be copied from the swappage read in.
	 */
So down at the exit from shmem_getpage, in the shmem_readpage case,
filepage _is_ *pagep, and so it skips that unlock_page - the caller
passed in a locked page, it's up to the caller to unlock it; but
the general ->readpage interface then demands that shmem_readpage
unlock the page which was passed in to it with lock held.  

(The *pagep != filepage test is also trying to skip the unlock_page
in the case when shmem_getpage needed to allocate the page itself,
but couldn't: both *pagep and filepage NULL.)

Ironically, the need for shmem_getpage to handle the case of a page
passed into it almost vanished - Nick's upcoming aops ->write_begin
abolishes the shmem_prepare_write case - but now it is needed for
readpage for splice: but I'm hoping perhaps we'll devise a readpage
replacement more like write_begin/write_end, then can eliminate it.

Hugh

      reply	other threads:[~2007-07-11 16:34 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <200707102300.l6AN0xM4026841@hera.kernel.org>
2007-07-11  1:43 ` Andrew Morton
2007-07-11  6:20   ` Jens Axboe
2007-07-11 16:33     ` Hugh Dickins [this message]

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=Pine.LNX.4.64.0707111710110.22786@blonde.wat.veritas.com \
    --to=hugh@veritas.com \
    --cc=akpm@linux-foundation.org \
    --cc=jens.axboe@oracle.com \
    --cc=linux-kernel@vger.kernel.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

all inboxes | Powered by JetHome®