[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20070130171132.7be3b054.akpm@osdl.org>
Date: Tue, 30 Jan 2007 17:11:32 -0800
From: Andrew Morton <akpm@...l.org>
To: David Chinner <dgc@....com>
Cc: "Martin J. Bligh" <mbligh@...igh.org>,
Peter Zijlstra <a.p.zijlstra@...llo.nl>,
linux-kernel@...r.kernel.org, linux-mm@...ck.org,
Ingo Molnar <mingo@...e.hu>
Subject: Re: [PATCH] mm: remove global locks from mm/highmem.c
On Wed, 31 Jan 2007 11:44:36 +1100
David Chinner <dgc@....com> wrote:
> On Mon, Jan 29, 2007 at 06:15:57PM -0800, Andrew Morton wrote:
> > We still don't know what is the source of kmap() activity which
> > necessitated this patch btw. AFAIK the busiest source is ext2 directories,
> > but perhaps NFS under certain conditions?
> >
> > <looks at xfs_iozero>
> >
> > ->prepare_write no longer requires that the caller kmap the page.
>
> Agreed, but don't we (xfs_iozero) have to map it first to zero it?
>
> I think what you are saying here, Andrew, is that we can
> do something like:
>
> page = grab_cache_page
> ->prepare_write(page)
> kaddr = kmap_atomic(page, KM_USER0)
> memset(kaddr+offset, 0, bytes)
> flush_dcache_page(page)
> kunmap_atomic(kaddr, KM_USER0)
> ->commit_write(page)
>
> to avoid using kmap() altogether?
>
Yup. Even better, use clear_highpage().
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists