License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 15:07:57 +01:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2017-02-24 23:57:45 +01:00
|
|
|
#include <linux/mm.h>
|
|
|
|
#include <linux/rmap.h>
|
|
|
|
#include <linux/hugetlb.h>
|
|
|
|
#include <linux/swap.h>
|
|
|
|
#include <linux/swapops.h>
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
static inline bool not_found(struct page_vma_mapped_walk *pvmw)
|
|
|
|
{
|
|
|
|
page_vma_mapped_walk_done(pvmw);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool map_pte(struct page_vma_mapped_walk *pvmw)
|
|
|
|
{
|
|
|
|
pvmw->pte = pte_offset_map(pvmw->pmd, pvmw->address);
|
|
|
|
if (!(pvmw->flags & PVMW_SYNC)) {
|
|
|
|
if (pvmw->flags & PVMW_MIGRATION) {
|
|
|
|
if (!is_swap_pte(*pvmw->pte))
|
|
|
|
return false;
|
|
|
|
} else {
|
2018-10-30 23:04:11 +01:00
|
|
|
/*
|
|
|
|
* We get here when we are trying to unmap a private
|
|
|
|
* device page from the process address space. Such
|
|
|
|
* page is not CPU accessible and thus is mapped as
|
|
|
|
* a special swap entry, nonetheless it still does
|
|
|
|
* count as a valid regular mapping for the page (and
|
|
|
|
* is accounted as such in page maps count).
|
|
|
|
*
|
|
|
|
* So handle this special case as if it was a normal
|
|
|
|
* page mapping ie lock CPU page table and returns
|
|
|
|
* true.
|
|
|
|
*
|
|
|
|
* For more details on device private memory see HMM
|
|
|
|
* (include/linux/hmm.h or mm/hmm.c).
|
|
|
|
*/
|
|
|
|
if (is_swap_pte(*pvmw->pte)) {
|
|
|
|
swp_entry_t entry;
|
|
|
|
|
|
|
|
/* Handle un-addressable ZONE_DEVICE memory */
|
|
|
|
entry = pte_to_swp_entry(*pvmw->pte);
|
|
|
|
if (!is_device_private_entry(entry))
|
|
|
|
return false;
|
|
|
|
} else if (!pte_present(*pvmw->pte))
|
2017-02-24 23:57:45 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pvmw->ptl = pte_lockptr(pvmw->vma->vm_mm, pvmw->pmd);
|
|
|
|
spin_lock(pvmw->ptl);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-22 10:22:30 +01:00
|
|
|
static inline bool pfn_in_hpage(struct page *hpage, unsigned long pfn)
|
|
|
|
{
|
|
|
|
unsigned long hpage_pfn = page_to_pfn(hpage);
|
|
|
|
|
|
|
|
/* THP can be referenced by any subpage */
|
|
|
|
return pfn >= hpage_pfn && pfn - hpage_pfn < hpage_nr_pages(hpage);
|
|
|
|
}
|
|
|
|
|
2018-01-19 13:49:24 +01:00
|
|
|
/**
|
|
|
|
* check_pte - check if @pvmw->page is mapped at the @pvmw->pte
|
|
|
|
*
|
|
|
|
* page_vma_mapped_walk() found a place where @pvmw->page is *potentially*
|
|
|
|
* mapped. check_pte() has to validate this.
|
|
|
|
*
|
|
|
|
* @pvmw->pte may point to empty PTE, swap PTE or PTE pointing to arbitrary
|
|
|
|
* page.
|
|
|
|
*
|
|
|
|
* If PVMW_MIGRATION flag is set, returns true if @pvmw->pte contains migration
|
|
|
|
* entry that points to @pvmw->page or any subpage in case of THP.
|
|
|
|
*
|
|
|
|
* If PVMW_MIGRATION flag is not set, returns true if @pvmw->pte points to
|
|
|
|
* @pvmw->page or any subpage in case of THP.
|
|
|
|
*
|
|
|
|
* Otherwise, return false.
|
|
|
|
*
|
|
|
|
*/
|
2017-02-24 23:57:45 +01:00
|
|
|
static bool check_pte(struct page_vma_mapped_walk *pvmw)
|
|
|
|
{
|
2018-01-19 13:49:24 +01:00
|
|
|
unsigned long pfn;
|
|
|
|
|
2017-02-24 23:57:45 +01:00
|
|
|
if (pvmw->flags & PVMW_MIGRATION) {
|
|
|
|
swp_entry_t entry;
|
|
|
|
if (!is_swap_pte(*pvmw->pte))
|
|
|
|
return false;
|
|
|
|
entry = pte_to_swp_entry(*pvmw->pte);
|
2017-09-09 01:12:17 +02:00
|
|
|
|
2017-02-24 23:57:45 +01:00
|
|
|
if (!is_migration_entry(entry))
|
|
|
|
return false;
|
2017-09-09 01:12:17 +02:00
|
|
|
|
2018-01-19 13:49:24 +01:00
|
|
|
pfn = migration_entry_to_pfn(entry);
|
|
|
|
} else if (is_swap_pte(*pvmw->pte)) {
|
|
|
|
swp_entry_t entry;
|
2017-09-09 01:12:17 +02:00
|
|
|
|
2018-01-19 13:49:24 +01:00
|
|
|
/* Handle un-addressable ZONE_DEVICE memory */
|
|
|
|
entry = pte_to_swp_entry(*pvmw->pte);
|
|
|
|
if (!is_device_private_entry(entry))
|
2017-02-24 23:57:45 +01:00
|
|
|
return false;
|
|
|
|
|
2018-01-19 13:49:24 +01:00
|
|
|
pfn = device_private_entry_to_pfn(entry);
|
|
|
|
} else {
|
|
|
|
if (!pte_present(*pvmw->pte))
|
2017-02-24 23:57:45 +01:00
|
|
|
return false;
|
2018-01-19 13:49:24 +01:00
|
|
|
|
|
|
|
pfn = pte_pfn(*pvmw->pte);
|
2017-02-24 23:57:45 +01:00
|
|
|
}
|
|
|
|
|
2018-01-22 10:22:30 +01:00
|
|
|
return pfn_in_hpage(pvmw->page, pfn);
|
2017-02-24 23:57:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* page_vma_mapped_walk - check if @pvmw->page is mapped in @pvmw->vma at
|
|
|
|
* @pvmw->address
|
|
|
|
* @pvmw: pointer to struct page_vma_mapped_walk. page, vma, address and flags
|
|
|
|
* must be set. pmd, pte and ptl must be NULL.
|
|
|
|
*
|
|
|
|
* Returns true if the page is mapped in the vma. @pvmw->pmd and @pvmw->pte point
|
|
|
|
* to relevant page table entries. @pvmw->ptl is locked. @pvmw->address is
|
|
|
|
* adjusted if needed (for PTE-mapped THPs).
|
|
|
|
*
|
|
|
|
* If @pvmw->pmd is set but @pvmw->pte is not, you have found PMD-mapped page
|
|
|
|
* (usually THP). For PTE-mapped THP, you should run page_vma_mapped_walk() in
|
|
|
|
* a loop to find all PTEs that map the THP.
|
|
|
|
*
|
|
|
|
* For HugeTLB pages, @pvmw->pte is set to the relevant page table entry
|
|
|
|
* regardless of which page table level the page is mapped at. @pvmw->pmd is
|
|
|
|
* NULL.
|
|
|
|
*
|
|
|
|
* Retruns false if there are no more page table entries for the page in
|
|
|
|
* the vma. @pvmw->ptl is unlocked and @pvmw->pte is unmapped.
|
|
|
|
*
|
|
|
|
* If you need to stop the walk before page_vma_mapped_walk() returned false,
|
|
|
|
* use page_vma_mapped_walk_done(). It will do the housekeeping.
|
|
|
|
*/
|
|
|
|
bool page_vma_mapped_walk(struct page_vma_mapped_walk *pvmw)
|
|
|
|
{
|
|
|
|
struct mm_struct *mm = pvmw->vma->vm_mm;
|
|
|
|
struct page *page = pvmw->page;
|
|
|
|
pgd_t *pgd;
|
2017-03-09 15:24:07 +01:00
|
|
|
p4d_t *p4d;
|
2017-02-24 23:57:45 +01:00
|
|
|
pud_t *pud;
|
2017-10-14 00:58:25 +02:00
|
|
|
pmd_t pmde;
|
2017-02-24 23:57:45 +01:00
|
|
|
|
|
|
|
/* The only possible pmd mapping has been handled on last iteration */
|
|
|
|
if (pvmw->pmd && !pvmw->pte)
|
|
|
|
return not_found(pvmw);
|
|
|
|
|
mm: fix page_vma_mapped_walk() for ksm pages
Doug Smythies reports oops with KSM in this backtrace, I've been seeing
the same:
page_vma_mapped_walk+0xe6/0x5b0
page_referenced_one+0x91/0x1a0
rmap_walk_ksm+0x100/0x190
rmap_walk+0x4f/0x60
page_referenced+0x149/0x170
shrink_active_list+0x1c2/0x430
shrink_node_memcg+0x67a/0x7a0
shrink_node+0xe1/0x320
kswapd+0x34b/0x720
Just as observed in commit 4b0ece6fa016 ("mm: migrate: fix
remove_migration_pte() for ksm pages"), you cannot use page->index
calculations on ksm pages.
page_vma_mapped_walk() is relying on __vma_address(), where a ksm page
can lead it off the end of the page table, and into whatever nonsense is
in the next page, ending as an oops inside check_pte()'s pte_page().
KSM tells page_vma_mapped_walk() exactly where to look for the page, it
does not need any page->index calculation: and that's so also for all
the normal and file and anon pages - just not for THPs and their
subpages. Get out early in most cases: instead of a PageKsm test, move
down the earlier not-THP-page test, as suggested by Kirill.
I'm also slightly worried that this loop can stray into other vmas, so
added a vm_end test to prevent surprises; though I have not imagined
anything worse than a very contrived case, in which a page mlocked in
the next vma might be reclaimed because it is not mlocked in this vma.
Fixes: ace71a19cec5 ("mm: introduce page_vma_mapped_walk()")
Link: http://lkml.kernel.org/r/alpine.LSU.2.11.1704031104400.1118@eggly.anvils
Signed-off-by: Hugh Dickins <hughd@google.com>
Reported-by: Doug Smythies <dsmythies@telus.net>
Tested-by: Doug Smythies <dsmythies@telus.net>
Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-04-08 01:04:39 +02:00
|
|
|
if (pvmw->pte)
|
2017-02-24 23:57:45 +01:00
|
|
|
goto next_pte;
|
|
|
|
|
|
|
|
if (unlikely(PageHuge(pvmw->page))) {
|
|
|
|
/* when pud is not present, pte will be NULL */
|
2019-09-24 00:34:25 +02:00
|
|
|
pvmw->pte = huge_pte_offset(mm, pvmw->address, page_size(page));
|
2017-02-24 23:57:45 +01:00
|
|
|
if (!pvmw->pte)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
pvmw->ptl = huge_pte_lockptr(page_hstate(page), mm, pvmw->pte);
|
|
|
|
spin_lock(pvmw->ptl);
|
|
|
|
if (!check_pte(pvmw))
|
|
|
|
return not_found(pvmw);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
restart:
|
|
|
|
pgd = pgd_offset(mm, pvmw->address);
|
|
|
|
if (!pgd_present(*pgd))
|
|
|
|
return false;
|
2017-03-09 15:24:07 +01:00
|
|
|
p4d = p4d_offset(pgd, pvmw->address);
|
|
|
|
if (!p4d_present(*p4d))
|
|
|
|
return false;
|
|
|
|
pud = pud_offset(p4d, pvmw->address);
|
2017-02-24 23:57:45 +01:00
|
|
|
if (!pud_present(*pud))
|
|
|
|
return false;
|
|
|
|
pvmw->pmd = pmd_offset(pud, pvmw->address);
|
2017-10-14 00:58:25 +02:00
|
|
|
/*
|
|
|
|
* Make sure the pmd value isn't cached in a register by the
|
|
|
|
* compiler and used as a stale value after we've observed a
|
|
|
|
* subsequent update.
|
|
|
|
*/
|
|
|
|
pmde = READ_ONCE(*pvmw->pmd);
|
|
|
|
if (pmd_trans_huge(pmde) || is_pmd_migration_entry(pmde)) {
|
2017-02-24 23:57:45 +01:00
|
|
|
pvmw->ptl = pmd_lock(mm, pvmw->pmd);
|
|
|
|
if (likely(pmd_trans_huge(*pvmw->pmd))) {
|
|
|
|
if (pvmw->flags & PVMW_MIGRATION)
|
|
|
|
return not_found(pvmw);
|
|
|
|
if (pmd_page(*pvmw->pmd) != page)
|
|
|
|
return not_found(pvmw);
|
|
|
|
return true;
|
2017-09-09 01:10:57 +02:00
|
|
|
} else if (!pmd_present(*pvmw->pmd)) {
|
|
|
|
if (thp_migration_supported()) {
|
|
|
|
if (!(pvmw->flags & PVMW_MIGRATION))
|
|
|
|
return not_found(pvmw);
|
|
|
|
if (is_migration_entry(pmd_to_swp_entry(*pvmw->pmd))) {
|
|
|
|
swp_entry_t entry = pmd_to_swp_entry(*pvmw->pmd);
|
|
|
|
|
|
|
|
if (migration_entry_to_page(entry) != page)
|
|
|
|
return not_found(pvmw);
|
|
|
|
return true;
|
|
|
|
}
|
2017-10-14 00:57:47 +02:00
|
|
|
}
|
2017-09-09 01:10:57 +02:00
|
|
|
return not_found(pvmw);
|
2017-02-24 23:57:45 +01:00
|
|
|
} else {
|
|
|
|
/* THP pmd was split under us: handle on pte level */
|
|
|
|
spin_unlock(pvmw->ptl);
|
|
|
|
pvmw->ptl = NULL;
|
|
|
|
}
|
2017-10-14 00:58:25 +02:00
|
|
|
} else if (!pmd_present(pmde)) {
|
|
|
|
return false;
|
2017-02-24 23:57:45 +01:00
|
|
|
}
|
|
|
|
if (!map_pte(pvmw))
|
|
|
|
goto next_pte;
|
|
|
|
while (1) {
|
|
|
|
if (check_pte(pvmw))
|
|
|
|
return true;
|
mm: fix page_vma_mapped_walk() for ksm pages
Doug Smythies reports oops with KSM in this backtrace, I've been seeing
the same:
page_vma_mapped_walk+0xe6/0x5b0
page_referenced_one+0x91/0x1a0
rmap_walk_ksm+0x100/0x190
rmap_walk+0x4f/0x60
page_referenced+0x149/0x170
shrink_active_list+0x1c2/0x430
shrink_node_memcg+0x67a/0x7a0
shrink_node+0xe1/0x320
kswapd+0x34b/0x720
Just as observed in commit 4b0ece6fa016 ("mm: migrate: fix
remove_migration_pte() for ksm pages"), you cannot use page->index
calculations on ksm pages.
page_vma_mapped_walk() is relying on __vma_address(), where a ksm page
can lead it off the end of the page table, and into whatever nonsense is
in the next page, ending as an oops inside check_pte()'s pte_page().
KSM tells page_vma_mapped_walk() exactly where to look for the page, it
does not need any page->index calculation: and that's so also for all
the normal and file and anon pages - just not for THPs and their
subpages. Get out early in most cases: instead of a PageKsm test, move
down the earlier not-THP-page test, as suggested by Kirill.
I'm also slightly worried that this loop can stray into other vmas, so
added a vm_end test to prevent surprises; though I have not imagined
anything worse than a very contrived case, in which a page mlocked in
the next vma might be reclaimed because it is not mlocked in this vma.
Fixes: ace71a19cec5 ("mm: introduce page_vma_mapped_walk()")
Link: http://lkml.kernel.org/r/alpine.LSU.2.11.1704031104400.1118@eggly.anvils
Signed-off-by: Hugh Dickins <hughd@google.com>
Reported-by: Doug Smythies <dsmythies@telus.net>
Tested-by: Doug Smythies <dsmythies@telus.net>
Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-04-08 01:04:39 +02:00
|
|
|
next_pte:
|
|
|
|
/* Seek to next pte only makes sense for THP */
|
|
|
|
if (!PageTransHuge(pvmw->page) || PageHuge(pvmw->page))
|
|
|
|
return not_found(pvmw);
|
|
|
|
do {
|
2017-02-24 23:57:45 +01:00
|
|
|
pvmw->address += PAGE_SIZE;
|
mm: fix page_vma_mapped_walk() for ksm pages
Doug Smythies reports oops with KSM in this backtrace, I've been seeing
the same:
page_vma_mapped_walk+0xe6/0x5b0
page_referenced_one+0x91/0x1a0
rmap_walk_ksm+0x100/0x190
rmap_walk+0x4f/0x60
page_referenced+0x149/0x170
shrink_active_list+0x1c2/0x430
shrink_node_memcg+0x67a/0x7a0
shrink_node+0xe1/0x320
kswapd+0x34b/0x720
Just as observed in commit 4b0ece6fa016 ("mm: migrate: fix
remove_migration_pte() for ksm pages"), you cannot use page->index
calculations on ksm pages.
page_vma_mapped_walk() is relying on __vma_address(), where a ksm page
can lead it off the end of the page table, and into whatever nonsense is
in the next page, ending as an oops inside check_pte()'s pte_page().
KSM tells page_vma_mapped_walk() exactly where to look for the page, it
does not need any page->index calculation: and that's so also for all
the normal and file and anon pages - just not for THPs and their
subpages. Get out early in most cases: instead of a PageKsm test, move
down the earlier not-THP-page test, as suggested by Kirill.
I'm also slightly worried that this loop can stray into other vmas, so
added a vm_end test to prevent surprises; though I have not imagined
anything worse than a very contrived case, in which a page mlocked in
the next vma might be reclaimed because it is not mlocked in this vma.
Fixes: ace71a19cec5 ("mm: introduce page_vma_mapped_walk()")
Link: http://lkml.kernel.org/r/alpine.LSU.2.11.1704031104400.1118@eggly.anvils
Signed-off-by: Hugh Dickins <hughd@google.com>
Reported-by: Doug Smythies <dsmythies@telus.net>
Tested-by: Doug Smythies <dsmythies@telus.net>
Reviewed-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2017-04-08 01:04:39 +02:00
|
|
|
if (pvmw->address >= pvmw->vma->vm_end ||
|
|
|
|
pvmw->address >=
|
2017-02-24 23:57:45 +01:00
|
|
|
__vma_address(pvmw->page, pvmw->vma) +
|
|
|
|
hpage_nr_pages(pvmw->page) * PAGE_SIZE)
|
|
|
|
return not_found(pvmw);
|
|
|
|
/* Did we cross page table boundary? */
|
|
|
|
if (pvmw->address % PMD_SIZE == 0) {
|
|
|
|
pte_unmap(pvmw->pte);
|
|
|
|
if (pvmw->ptl) {
|
|
|
|
spin_unlock(pvmw->ptl);
|
|
|
|
pvmw->ptl = NULL;
|
|
|
|
}
|
|
|
|
goto restart;
|
|
|
|
} else {
|
|
|
|
pvmw->pte++;
|
|
|
|
}
|
|
|
|
} while (pte_none(*pvmw->pte));
|
|
|
|
|
|
|
|
if (!pvmw->ptl) {
|
|
|
|
pvmw->ptl = pte_lockptr(mm, pvmw->pmd);
|
|
|
|
spin_lock(pvmw->ptl);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-24 23:58:10 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* page_mapped_in_vma - check whether a page is really mapped in a VMA
|
|
|
|
* @page: the page to test
|
|
|
|
* @vma: the VMA to test
|
|
|
|
*
|
|
|
|
* Returns 1 if the page is mapped into the page tables of the VMA, 0
|
|
|
|
* if the page is not mapped into the page tables of this VMA. Only
|
|
|
|
* valid for normal file or anonymous VMAs.
|
|
|
|
*/
|
|
|
|
int page_mapped_in_vma(struct page *page, struct vm_area_struct *vma)
|
|
|
|
{
|
|
|
|
struct page_vma_mapped_walk pvmw = {
|
|
|
|
.page = page,
|
|
|
|
.vma = vma,
|
|
|
|
.flags = PVMW_SYNC,
|
|
|
|
};
|
|
|
|
unsigned long start, end;
|
|
|
|
|
|
|
|
start = __vma_address(page, vma);
|
|
|
|
end = start + PAGE_SIZE * (hpage_nr_pages(page) - 1);
|
|
|
|
|
|
|
|
if (unlikely(end < vma->vm_start || start >= vma->vm_end))
|
|
|
|
return 0;
|
|
|
|
pvmw.address = max(start, vma->vm_start);
|
|
|
|
if (!page_vma_mapped_walk(&pvmw))
|
|
|
|
return 0;
|
|
|
|
page_vma_mapped_walk_done(&pvmw);
|
|
|
|
return 1;
|
|
|
|
}
|