From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Miklos Szeredi <miklos@szeredi.hu>
Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org
Subject: Re: [patch 2/3] only allow nonlinear vmas for ram backed filesystems
Date: Sun, 25 Mar 2007 14:12:32 +0200 [thread overview]
Message-ID: <1174824752.5149.28.camel@lappy> (raw)
In-Reply-To: <E1HVEQJ-0006gF-00@dorka.pomaz.szeredi.hu>
On Sat, 2007-03-24 at 23:09 +0100, Miklos Szeredi wrote:
> From: Miklos Szeredi <mszeredi@suse.cz>
>
> Dirty page accounting/limiting doesn't work for nonlinear mappings, so
> for non-ram backed filesystems emulate with linear mappings. This
> retains ABI compatibility with previous kernels at minimal code cost.
>
> All known users of nonlinear mappings actually use tmpfs, so this
> shouldn't have any negative effect.
>
> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> ---
>
> Index: linux-2.6.21-rc4-mm1/mm/fremap.c
> ===================================================================
> --- linux-2.6.21-rc4-mm1.orig/mm/fremap.c 2007-03-24 22:30:05.000000000 +0100
> +++ linux-2.6.21-rc4-mm1/mm/fremap.c 2007-03-24 22:37:59.000000000 +0100
> @@ -181,6 +181,24 @@ asmlinkage long sys_remap_file_pages(uns
> goto retry;
> }
> mapping = vma->vm_file->f_mapping;
> + /*
> + * page_mkclean doesn't work on nonlinear vmas, so if dirty
> + * pages need to be accounted, emulate with linear vmas.
> + */
> + if (mapping_cap_account_dirty(mapping)) {
> + unsigned long addr;
> +
> + flags &= MAP_NONBLOCK;
> + addr = mmap_region(vma->vm_file, start, size, flags,
> + vma->vm_flags, pgoff, 1);
> + if (IS_ERR_VALUE(addr))
> + err = addr;
> + else {
> + BUG_ON(addr != start);
> + err = 0;
> + }
> + goto out;
> + }
> spin_lock(&mapping->i_mmap_lock);
> flush_dcache_mmap_lock(mapping);
> vma->vm_flags |= VM_NONLINEAR;
WARNING: multiple messages have this Message-ID (diff)
From: Peter Zijlstra <a.p.zijlstra@chello.nl>
To: Miklos Szeredi <miklos@szeredi.hu>
Cc: akpm@linux-foundation.org, linux-kernel@vger.kernel.org,
linux-mm@kvack.org
Subject: Re: [patch 2/3] only allow nonlinear vmas for ram backed filesystems
Date: Sun, 25 Mar 2007 14:12:32 +0200 [thread overview]
Message-ID: <1174824752.5149.28.camel@lappy> (raw)
In-Reply-To: <E1HVEQJ-0006gF-00@dorka.pomaz.szeredi.hu>
On Sat, 2007-03-24 at 23:09 +0100, Miklos Szeredi wrote:
> From: Miklos Szeredi <mszeredi@suse.cz>
>
> Dirty page accounting/limiting doesn't work for nonlinear mappings, so
> for non-ram backed filesystems emulate with linear mappings. This
> retains ABI compatibility with previous kernels at minimal code cost.
>
> All known users of nonlinear mappings actually use tmpfs, so this
> shouldn't have any negative effect.
>
> Signed-off-by: Miklos Szeredi <mszeredi@suse.cz>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
> ---
>
> Index: linux-2.6.21-rc4-mm1/mm/fremap.c
> ===================================================================
> --- linux-2.6.21-rc4-mm1.orig/mm/fremap.c 2007-03-24 22:30:05.000000000 +0100
> +++ linux-2.6.21-rc4-mm1/mm/fremap.c 2007-03-24 22:37:59.000000000 +0100
> @@ -181,6 +181,24 @@ asmlinkage long sys_remap_file_pages(uns
> goto retry;
> }
> mapping = vma->vm_file->f_mapping;
> + /*
> + * page_mkclean doesn't work on nonlinear vmas, so if dirty
> + * pages need to be accounted, emulate with linear vmas.
> + */
> + if (mapping_cap_account_dirty(mapping)) {
> + unsigned long addr;
> +
> + flags &= MAP_NONBLOCK;
> + addr = mmap_region(vma->vm_file, start, size, flags,
> + vma->vm_flags, pgoff, 1);
> + if (IS_ERR_VALUE(addr))
> + err = addr;
> + else {
> + BUG_ON(addr != start);
> + err = 0;
> + }
> + goto out;
> + }
> spin_lock(&mapping->i_mmap_lock);
> flush_dcache_mmap_lock(mapping);
> vma->vm_flags |= VM_NONLINEAR;
--
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>
next prev parent reply other threads:[~2007-03-25 12:13 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-03-24 22:07 [patch 1/3] split mmap Miklos Szeredi
2007-03-24 22:07 ` Miklos Szeredi, Miklos Szeredi
2007-03-24 22:09 ` [patch 2/3] only allow nonlinear vmas for ram backed filesystems Miklos Szeredi
2007-03-24 22:09 ` Miklos Szeredi, Miklos Szeredi
2007-03-25 12:12 ` Peter Zijlstra [this message]
2007-03-25 12:12 ` Peter Zijlstra
2007-03-25 15:51 ` Matt Mackall
2007-03-25 15:51 ` Matt Mackall
2007-03-27 0:02 ` William Lee Irwin III
2007-03-27 0:02 ` William Lee Irwin III
2007-03-26 0:00 ` Andrew Morton
2007-03-26 0:00 ` Andrew Morton
2007-03-26 6:57 ` Peter Zijlstra
2007-03-26 6:57 ` Peter Zijlstra
2007-03-24 22:11 ` [patch 3/3] update ctime and mtime for mmaped write Miklos Szeredi
2007-03-24 22:11 ` Miklos Szeredi, Miklos Szeredi
2007-03-25 12:12 ` Peter Zijlstra
2007-03-25 12:12 ` Peter Zijlstra
2007-03-25 21:08 ` Miklos Szeredi
2007-03-25 21:08 ` Miklos Szeredi
2007-03-25 12:12 ` [patch 1/3] split mmap Peter Zijlstra
2007-03-25 12:12 ` Peter Zijlstra
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=1174824752.5149.28.camel@lappy \
--to=a.p.zijlstra@chello.nl \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=miklos@szeredi.hu \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.