From: Konstantin Khlebnikov <k.khlebnikov@samsung.com>
To: linux-mm@kvack.org, Hugh Dickins <hughd@google.com>,
linux-kernel@vger.kernel.org,
Sasha Levin <sasha.levin@oracle.com>
Cc: Ingo Korb <ingo.korb@tu-dortmund.de>,
"Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
Dave Jones <davej@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>,
Ning Qu <quning@google.com>,
Konstantin Khlebnikov <koct9i@gmail.com>
Subject: [PATCH] mm: fix faulting range in do_fault_around
Date: Tue, 15 Jul 2014 13:55:39 +0400 [thread overview]
Message-ID: <20140715095539.2086.44482.stgit@buzz> (raw)
In-Reply-To: <CALYGNiM9Fu9-i7hXMQNTUP69RfydN+2NqO29wZYd+4Gn25GbCQ@mail.gmail.com>
From: Konstantin Khlebnikov <koct9i@gmail.com>
do_fault_around shoudn't cross pmd boundaries.
This patch does calculation in terms of addresses rather than pgoff.
It looks much cleaner in this way. Probably it's worth to replace
vmf->max_pgoff with vmf->end_address as well.
Signed-off-by: Konstantin Khlebnikov <koct9i@gmail.com>
Reported-by: "Ingo Korb" <ingo.korb@tu-dortmund.de>
---
mm/memory.c | 26 +++++++++++---------------
1 file changed, 11 insertions(+), 15 deletions(-)
diff --git a/mm/memory.c b/mm/memory.c
index d67fd9f..f27638a 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2831,33 +2831,29 @@ late_initcall(fault_around_debugfs);
static void do_fault_around(struct vm_area_struct *vma, unsigned long address,
pte_t *pte, pgoff_t pgoff, unsigned int flags)
{
- unsigned long start_addr;
+ unsigned long start_addr, end_addr;
pgoff_t max_pgoff;
struct vm_fault vmf;
int off;
- start_addr = max(address & fault_around_mask(), vma->vm_start);
- off = ((address - start_addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
+ start_addr = max3(vma->vm_start, address & PMD_MASK,
+ address & fault_around_mask());
+
+ end_addr = min3(vma->vm_end, ALIGN(address, PMD_SIZE),
+ start_addr + PAGE_ALIGN(fault_around_bytes));
+
+ off = (address - start_addr) >> PAGE_SHIFT;
pte -= off;
pgoff -= off;
-
- /*
- * max_pgoff is either end of page table or end of vma
- * or fault_around_pages() from pgoff, depending what is nearest.
- */
- max_pgoff = pgoff - ((start_addr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) +
- PTRS_PER_PTE - 1;
- max_pgoff = min3(max_pgoff, vma_pages(vma) + vma->vm_pgoff - 1,
- pgoff + fault_around_pages() - 1);
+ max_pgoff = pgoff + ((end_addr - start_addr) >> PAGE_SHIFT) - 1;
/* Check if it makes any sense to call ->map_pages */
while (!pte_none(*pte)) {
- if (++pgoff > max_pgoff)
- return;
start_addr += PAGE_SIZE;
- if (start_addr >= vma->vm_end)
+ if (start_addr >= end_addr)
return;
pte++;
+ pgoff++;
}
vmf.virtual_address = (void __user *) start_addr;
--
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>
WARNING: multiple messages have this Message-ID (diff)
From: Konstantin Khlebnikov <k.khlebnikov@samsung.com>
To: linux-mm@kvack.org, Hugh Dickins <hughd@google.com>,
linux-kernel@vger.kernel.org,
Sasha Levin <sasha.levin@oracle.com>
Cc: Ingo Korb <ingo.korb@tu-dortmund.de>,
"Kirill A. Shutemov" <kirill.shutemov@linux.intel.com>,
Dave Jones <davej@redhat.com>,
Andrew Morton <akpm@linux-foundation.org>,
Ning Qu <quning@google.com>,
Konstantin Khlebnikov <koct9i@gmail.com>
Subject: [PATCH] mm: fix faulting range in do_fault_around
Date: Tue, 15 Jul 2014 13:55:39 +0400 [thread overview]
Message-ID: <20140715095539.2086.44482.stgit@buzz> (raw)
In-Reply-To: <CALYGNiM9Fu9-i7hXMQNTUP69RfydN+2NqO29wZYd+4Gn25GbCQ@mail.gmail.com>
From: Konstantin Khlebnikov <koct9i@gmail.com>
do_fault_around shoudn't cross pmd boundaries.
This patch does calculation in terms of addresses rather than pgoff.
It looks much cleaner in this way. Probably it's worth to replace
vmf->max_pgoff with vmf->end_address as well.
Signed-off-by: Konstantin Khlebnikov <koct9i@gmail.com>
Reported-by: "Ingo Korb" <ingo.korb@tu-dortmund.de>
---
mm/memory.c | 26 +++++++++++---------------
1 file changed, 11 insertions(+), 15 deletions(-)
diff --git a/mm/memory.c b/mm/memory.c
index d67fd9f..f27638a 100644
--- a/mm/memory.c
+++ b/mm/memory.c
@@ -2831,33 +2831,29 @@ late_initcall(fault_around_debugfs);
static void do_fault_around(struct vm_area_struct *vma, unsigned long address,
pte_t *pte, pgoff_t pgoff, unsigned int flags)
{
- unsigned long start_addr;
+ unsigned long start_addr, end_addr;
pgoff_t max_pgoff;
struct vm_fault vmf;
int off;
- start_addr = max(address & fault_around_mask(), vma->vm_start);
- off = ((address - start_addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1);
+ start_addr = max3(vma->vm_start, address & PMD_MASK,
+ address & fault_around_mask());
+
+ end_addr = min3(vma->vm_end, ALIGN(address, PMD_SIZE),
+ start_addr + PAGE_ALIGN(fault_around_bytes));
+
+ off = (address - start_addr) >> PAGE_SHIFT;
pte -= off;
pgoff -= off;
-
- /*
- * max_pgoff is either end of page table or end of vma
- * or fault_around_pages() from pgoff, depending what is nearest.
- */
- max_pgoff = pgoff - ((start_addr >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) +
- PTRS_PER_PTE - 1;
- max_pgoff = min3(max_pgoff, vma_pages(vma) + vma->vm_pgoff - 1,
- pgoff + fault_around_pages() - 1);
+ max_pgoff = pgoff + ((end_addr - start_addr) >> PAGE_SHIFT) - 1;
/* Check if it makes any sense to call ->map_pages */
while (!pte_none(*pte)) {
- if (++pgoff > max_pgoff)
- return;
start_addr += PAGE_SIZE;
- if (start_addr >= vma->vm_end)
+ if (start_addr >= end_addr)
return;
pte++;
+ pgoff++;
}
vmf.virtual_address = (void __user *) start_addr;
next prev parent reply other threads:[~2014-07-15 9:56 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-14 12:58 PROBLEM: repeated remap_file_pages on tmpfs triggers bug on process exit Ingo Korb
2014-07-14 19:22 ` Hugh Dickins
2014-07-14 19:22 ` Hugh Dickins
2014-07-14 20:13 ` Konstantin Khlebnikov
2014-07-14 20:13 ` Konstantin Khlebnikov
2014-07-15 9:55 ` Konstantin Khlebnikov [this message]
2014-07-15 9:55 ` [PATCH] mm: fix faulting range in do_fault_around Konstantin Khlebnikov
2014-07-15 10:55 ` PROBLEM: repeated remap_file_pages on tmpfs triggers bug on process exit Kirill A. Shutemov
2014-07-15 10:55 ` Kirill A. Shutemov
2014-07-15 11:33 ` Konstantin Khlebnikov
2014-07-15 11:33 ` Konstantin Khlebnikov
2014-07-15 11:54 ` Kirill A. Shutemov
2014-07-15 11:54 ` Kirill A. Shutemov
2014-07-15 20:46 ` Hugh Dickins
2014-07-15 20:46 ` Hugh Dickins
2014-07-15 11:58 ` [PATCH] mm: do not call do_fault_around for non-linear fault Konstantin Khlebnikov
2014-07-15 11:58 ` Konstantin Khlebnikov
2014-07-15 15:29 ` Ingo Korb
2014-07-15 15:29 ` Ingo Korb
2014-07-15 20:42 ` Andrew Morton
2014-07-15 20:42 ` Andrew Morton
2014-07-15 21:07 ` Konstantin Khlebnikov
2014-07-15 21:07 ` Konstantin Khlebnikov
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=20140715095539.2086.44482.stgit@buzz \
--to=k.khlebnikov@samsung.com \
--cc=akpm@linux-foundation.org \
--cc=davej@redhat.com \
--cc=hughd@google.com \
--cc=ingo.korb@tu-dortmund.de \
--cc=kirill.shutemov@linux.intel.com \
--cc=koct9i@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=quning@google.com \
--cc=sasha.levin@oracle.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 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.