linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: clameter@sgi.com
Cc: linux-mm@kvack.org, Mel Gorman <mel@csn.ul.ie>,
	KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com>,
	William Lee Irwin III <wli@holomorphy.com>
Subject: Re: [patch 0/6] Compound Page Enhancements
Date: Thu, 24 May 2007 23:00:32 -0700	[thread overview]
Message-ID: <20070524230032.554be39e.akpm@linux-foundation.org> (raw)
In-Reply-To: <20070525051716.030494061@sgi.com>

On Thu, 24 May 2007 22:17:16 -0700 clameter@sgi.com wrote:

> This patch enhances the handling of compound pages in the VM. It may also
> be important also for the antifrag patches that need to manage a set of
> higher order free pages and also for other uses of compound pages.
> 
> For now it simplifies accounting for SLUB pages but the groundwork here is
> important for the large block size patches and for allowing to page migration
> of larger pages. With this framework we may be able to get to a point where
> compound pages keep their flags while they are free and Mel may avoid having
> special functions for determining the page order of higher order freed pages.
> If we can avoid the setup and teardown of higher order pages then allocation
> and release of compound pages will be faster.
> 
> Looking at the handling of compound pages we see that the fact that a page
> is part of a higher order page is not that interesting. The differentiation
> is mainly for head pages and tail pages of higher order pages. Head pages
> usually need special handling to accomodate the larger size. It is usually
> an error if tail pages are encountered. Or else they need to be treated
> like PAGE_SIZE pages. So a compound flag in the page flags is not what we
> need. Instead we introduce a flag for the head page and another for the tail
> page. The PageCompound test is preserved for backward compatibility and
> will test if either PageTail or PageHead has been set.
> 
> After this patchset the uses of CompoundPage() will be reduced significantly
> in the core VM. The I/O layer will still use CompoundPage() for direct I/O.
> However, if we at some point convert direct I/O to also support compound
> pages as a single unit then CompoundPage() there may become unecessary as
> well as the leftover check in mm/swap.c. We may end up mostly with checks
> for PageTail and PageHead.
> 

Well I've read that, and I've read the patches and I still don't see what
the point in all this is.

And looking back on it, I don't see the point in that PG_head_tail_mask
hack either.  We could have done

static inline int page_tail(struct page *page)
{
	return PageCompound(page) && (page->first_page != page);
}

Confused.  Don't know where this is all headed.

--
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>

  parent reply	other threads:[~2007-05-25  6:00 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-25  5:17 clameter
2007-05-25  5:17 ` [patch 1/6] Compound page handling enhancements clameter
2007-05-25  5:17 ` [patch 2/6] compound pages: Add new support functions clameter
2007-05-25  5:17 ` [patch 3/6] compound pages: vmstat support clameter
2007-05-25  5:17 ` [patch 4/6] compound pages: Use new compound vmstat functions in SLUB clameter
2007-05-25  5:17 ` [patch 5/6] compound pages: Allow use of get_page_unless_zero with compound pages clameter
2007-05-25  5:17 ` [patch 6/6] compound pages: Allow freeing of compound pages via pagevec clameter
2007-05-25  6:00 ` Andrew Morton [this message]
2007-05-25 13:54   ` [patch 0/6] Compound Page Enhancements Christoph Lameter
2007-05-25 14:03   ` Christoph Lameter
2007-05-25 17:14     ` Andrew Morton
2007-05-25 18:56       ` Christoph Lameter
2007-05-25  8:05 ` KAMEZAWA Hiroyuki
2007-05-25 13:42   ` Christoph Lameter

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=20070524230032.554be39e.akpm@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=clameter@sgi.com \
    --cc=kamezawa.hiroyu@jp.fujitsu.com \
    --cc=linux-mm@kvack.org \
    --cc=mel@csn.ul.ie \
    --cc=wli@holomorphy.com \
    /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