LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: Oleg Nesterov <oleg@tv-sign.ru>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: Miklos Szeredi <mszeredi@suse.cz>,
Peter Zijlstra <a.p.zijlstra@chello.nl>,
William Lee Irwin III <wli@holomorphy.com>,
Nick Piggin <nickpiggin@yahoo.com.au>,
Ingo Molnar <mingo@elte.hu>,
linux-kernel@vger.kernel.org, stable@kernel.org
Subject: [PATCH] sys_remap_file_pages: fix ->vm_file accounting
Date: Wed, 30 Jan 2008 17:20:14 +0300 [thread overview]
Message-ID: <20080130142014.GA2164@tv-sign.ru> (raw)
Fix ->vm_file accounting, mmap_region() may do do_munmap().
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
--- MM/mm/fremap.c~RFP 2007-10-25 16:22:12.000000000 +0400
+++ MM/mm/fremap.c 2008-01-30 16:56:39.000000000 +0300
@@ -192,8 +192,10 @@ asmlinkage long sys_remap_file_pages(uns
unsigned long addr;
flags &= MAP_NONBLOCK;
+ get_file(vma->vm_file);
addr = mmap_region(vma->vm_file, start, size,
flags, vma->vm_flags, pgoff, 1);
+ fput(vma->vm_file);
if (IS_ERR_VALUE(addr)) {
err = addr;
} else {
next reply other threads:[~2008-01-30 14:17 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-01-30 14:20 Oleg Nesterov [this message]
2008-01-30 16:55 ` Miklos Szeredi
2008-01-30 17:26 ` Oleg Nesterov
2008-02-02 20:52 ` Matt Helsley
2008-02-02 21:17 ` Matt Helsley
2008-02-03 18:21 ` Oleg Nesterov
2008-02-06 20:33 ` Hugh Dickins
2008-02-07 0:16 ` Matt Helsley
2008-02-07 16:40 ` Hugh Dickins
2008-02-03 18:29 ` Oleg Nesterov
2008-02-06 20:13 ` Hugh Dickins
2008-02-11 10:15 ` Oleg Nesterov
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=20080130142014.GA2164@tv-sign.ru \
--to=oleg@tv-sign.ru \
--cc=a.p.zijlstra@chello.nl \
--cc=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@elte.hu \
--cc=mszeredi@suse.cz \
--cc=nickpiggin@yahoo.com.au \
--cc=stable@kernel.org \
--cc=wli@holomorphy.com \
--subject='Re: [PATCH] sys_remap_file_pages: fix ->vm_file accounting' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).