Re: 2.6.18 mmap hangs unrelated apps

From: Andrew Morton
Date: Tue Dec 19 2006 - 19:03:58 EST


On Tue, 19 Dec 2006 18:19:38 -0500
Trond Myklebust <trond.myklebust@xxxxxxxxxx> wrote:

> NFS: Fix race in nfs_release_page()
>
> invalidate_inode_pages2() may set the dirty bit on a page owing to the call
> to unmap_mapping_range() after the page was locked. In order to fix this,
> NFS has hooked the releasepage() method. This, however leads to deadlocks
> in other parts of the VM.

hmm, subtle.

> Fix is to add a new callback: flushpage(), which will write out a dirty
> page that is under the page lock.
>

I guess this might permit us to clean up some of the nasties in
invalidate_inode_pages2() - if the page comes dirty again, write it again.
But the requirement that the page remain locked makes it hard. Need to
think about it some more.

Are you sure this is the cause of the NFS problem?

> .prepare_write = nfs_prepare_write,
> .commit_write = nfs_commit_write,
> .invalidatepage = nfs_invalidate_page,
> - .releasepage = nfs_release_page,

A NULL ->releasepage means that try_to_release_page() will call
try_to_free_buffers() if PagePrivate(). I suspect you'll need a stub to
prevent this.

(We were supposed to stop doing that about four years ago - change it so
that all a_ops must implement ->releasepage, but nobody got around to it).

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/