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 14:07:57 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2006-03-22 08:09:12 +00:00
|
|
|
#ifndef _LINUX_MIGRATE_H
|
|
|
|
#define _LINUX_MIGRATE_H
|
|
|
|
|
|
|
|
#include <linux/mm.h>
|
2007-05-06 21:50:20 +00:00
|
|
|
#include <linux/mempolicy.h>
|
2012-01-20 22:33:53 +00:00
|
|
|
#include <linux/migrate_mode.h>
|
2017-07-10 22:48:47 +00:00
|
|
|
#include <linux/hugetlb.h>
|
2006-03-22 08:09:12 +00:00
|
|
|
|
2023-05-13 00:11:01 +00:00
|
|
|
typedef struct folio *new_folio_t(struct folio *folio, unsigned long private);
|
|
|
|
typedef void free_folio_t(struct folio *folio, unsigned long private);
|
2006-06-23 09:03:53 +00:00
|
|
|
|
mm/migrate: introduce a standard migration target allocation function
There are some similar functions for migration target allocation. Since
there is no fundamental difference, it's better to keep just one rather
than keeping all variants. This patch implements base migration target
allocation function. In the following patches, variants will be converted
to use this function.
Changes should be mechanical, but, unfortunately, there are some
differences. First, some callers' nodemask is assgined to NULL since NULL
nodemask will be considered as all available nodes, that is,
&node_states[N_MEMORY]. Second, for hugetlb page allocation, gfp_mask is
redefined as regular hugetlb allocation gfp_mask plus __GFP_THISNODE if
user provided gfp_mask has it. This is because future caller of this
function requires to set this node constaint. Lastly, if provided nodeid
is NUMA_NO_NODE, nodeid is set up to the node where migration source
lives. It helps to remove simple wrappers for setting up the nodeid.
Note that PageHighmem() call in previous function is changed to open-code
"is_highmem_idx()" since it provides more readability.
[akpm@linux-foundation.org: tweak patch title, per Vlastimil]
[akpm@linux-foundation.org: fix typo in comment]
Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Mike Kravetz <mike.kravetz@oracle.com>
Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: Roman Gushchin <guro@fb.com>
Link: http://lkml.kernel.org/r/1594622517-20681-6-git-send-email-iamjoonsoo.kim@lge.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2020-08-12 01:37:25 +00:00
|
|
|
struct migration_target_control;
|
|
|
|
|
2012-12-12 00:02:31 +00:00
|
|
|
/*
|
|
|
|
* Return values from addresss_space_operations.migratepage():
|
|
|
|
* - negative errno on page migration failure;
|
|
|
|
* - zero on page migration success;
|
|
|
|
*/
|
|
|
|
#define MIGRATEPAGE_SUCCESS 0
|
2023-02-13 12:34:39 +00:00
|
|
|
#define MIGRATEPAGE_UNMAP 1
|
2014-10-09 22:29:27 +00:00
|
|
|
|
2022-06-07 19:38:48 +00:00
|
|
|
/**
|
|
|
|
* struct movable_operations - Driver page migration
|
|
|
|
* @isolate_page:
|
|
|
|
* The VM calls this function to prepare the page to be moved. The page
|
|
|
|
* is locked and the driver should not unlock it. The driver should
|
|
|
|
* return ``true`` if the page is movable and ``false`` if it is not
|
|
|
|
* currently movable. After this function returns, the VM uses the
|
|
|
|
* page->lru field, so the driver must preserve any information which
|
|
|
|
* is usually stored here.
|
|
|
|
*
|
|
|
|
* @migrate_page:
|
|
|
|
* After isolation, the VM calls this function with the isolated
|
|
|
|
* @src page. The driver should copy the contents of the
|
|
|
|
* @src page to the @dst page and set up the fields of @dst page.
|
|
|
|
* Both pages are locked.
|
|
|
|
* If page migration is successful, the driver should call
|
|
|
|
* __ClearPageMovable(@src) and return MIGRATEPAGE_SUCCESS.
|
|
|
|
* If the driver cannot migrate the page at the moment, it can return
|
|
|
|
* -EAGAIN. The VM interprets this as a temporary migration failure and
|
|
|
|
* will retry it later. Any other error value is a permanent migration
|
|
|
|
* failure and migration will not be retried.
|
|
|
|
* The driver shouldn't touch the @src->lru field while in the
|
|
|
|
* migrate_page() function. It may write to @dst->lru.
|
|
|
|
*
|
|
|
|
* @putback_page:
|
|
|
|
* If migration fails on the isolated page, the VM informs the driver
|
|
|
|
* that the page is no longer a candidate for migration by calling
|
|
|
|
* this function. The driver should put the isolated page back into
|
|
|
|
* its own data structure.
|
|
|
|
*/
|
|
|
|
struct movable_operations {
|
|
|
|
bool (*isolate_page)(struct page *, isolate_mode_t);
|
|
|
|
int (*migrate_page)(struct page *dst, struct page *src,
|
|
|
|
enum migrate_mode);
|
|
|
|
void (*putback_page)(struct page *);
|
|
|
|
};
|
|
|
|
|
2021-11-05 20:43:32 +00:00
|
|
|
/* Defined in mm/debug.c: */
|
2018-12-28 08:35:59 +00:00
|
|
|
extern const char *migrate_reason_names[MR_TYPES];
|
2016-03-15 21:56:18 +00:00
|
|
|
|
2007-05-06 21:50:20 +00:00
|
|
|
#ifdef CONFIG_MIGRATION
|
2009-01-06 22:39:16 +00:00
|
|
|
|
2023-02-16 22:44:24 +00:00
|
|
|
void putback_movable_pages(struct list_head *l);
|
2022-06-06 14:27:41 +00:00
|
|
|
int migrate_folio(struct address_space *mapping, struct folio *dst,
|
|
|
|
struct folio *src, enum migrate_mode mode);
|
2023-05-13 00:11:01 +00:00
|
|
|
int migrate_pages(struct list_head *l, new_folio_t new, free_folio_t free,
|
2023-02-16 22:44:24 +00:00
|
|
|
unsigned long private, enum migrate_mode mode, int reason,
|
|
|
|
unsigned int *ret_succeeded);
|
2023-05-13 00:11:01 +00:00
|
|
|
struct folio *alloc_migration_target(struct folio *src, unsigned long private);
|
2023-02-16 22:44:24 +00:00
|
|
|
bool isolate_movable_page(struct page *page, isolate_mode_t mode);
|
2024-08-27 11:47:27 +00:00
|
|
|
bool isolate_folio_to_list(struct folio *folio, struct list_head *list);
|
2006-06-23 09:03:53 +00:00
|
|
|
|
2022-06-06 14:47:21 +00:00
|
|
|
int migrate_huge_page_move_mapping(struct address_space *mapping,
|
|
|
|
struct folio *dst, struct folio *src);
|
2023-06-09 01:08:20 +00:00
|
|
|
void migration_entry_wait_on_locked(swp_entry_t entry, spinlock_t *ptl)
|
|
|
|
__releases(ptl);
|
2021-05-07 19:26:29 +00:00
|
|
|
void folio_migrate_flags(struct folio *newfolio, struct folio *folio);
|
2021-05-07 11:28:40 +00:00
|
|
|
int folio_migrate_mapping(struct address_space *mapping,
|
|
|
|
struct folio *newfolio, struct folio *folio, int extra_count);
|
2021-11-05 20:43:35 +00:00
|
|
|
|
2022-03-22 21:47:37 +00:00
|
|
|
#else
|
|
|
|
|
2012-12-12 00:02:47 +00:00
|
|
|
static inline void putback_movable_pages(struct list_head *l) {}
|
2023-05-13 00:11:01 +00:00
|
|
|
static inline int migrate_pages(struct list_head *l, new_folio_t new,
|
|
|
|
free_folio_t free, unsigned long private,
|
|
|
|
enum migrate_mode mode, int reason, unsigned int *ret_succeeded)
|
2013-02-23 00:35:14 +00:00
|
|
|
{ return -ENOSYS; }
|
2023-05-13 00:11:01 +00:00
|
|
|
static inline struct folio *alloc_migration_target(struct folio *src,
|
mm/migrate: introduce a standard migration target allocation function
There are some similar functions for migration target allocation. Since
there is no fundamental difference, it's better to keep just one rather
than keeping all variants. This patch implements base migration target
allocation function. In the following patches, variants will be converted
to use this function.
Changes should be mechanical, but, unfortunately, there are some
differences. First, some callers' nodemask is assgined to NULL since NULL
nodemask will be considered as all available nodes, that is,
&node_states[N_MEMORY]. Second, for hugetlb page allocation, gfp_mask is
redefined as regular hugetlb allocation gfp_mask plus __GFP_THISNODE if
user provided gfp_mask has it. This is because future caller of this
function requires to set this node constaint. Lastly, if provided nodeid
is NUMA_NO_NODE, nodeid is set up to the node where migration source
lives. It helps to remove simple wrappers for setting up the nodeid.
Note that PageHighmem() call in previous function is changed to open-code
"is_highmem_idx()" since it provides more readability.
[akpm@linux-foundation.org: tweak patch title, per Vlastimil]
[akpm@linux-foundation.org: fix typo in comment]
Signed-off-by: Joonsoo Kim <iamjoonsoo.kim@lge.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Christoph Hellwig <hch@infradead.org>
Cc: Mike Kravetz <mike.kravetz@oracle.com>
Cc: Naoya Horiguchi <n-horiguchi@ah.jp.nec.com>
Cc: Roman Gushchin <guro@fb.com>
Link: http://lkml.kernel.org/r/1594622517-20681-6-git-send-email-iamjoonsoo.kim@lge.com
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2020-08-12 01:37:25 +00:00
|
|
|
unsigned long private)
|
2020-08-12 01:37:14 +00:00
|
|
|
{ return NULL; }
|
2023-02-15 10:39:37 +00:00
|
|
|
static inline bool isolate_movable_page(struct page *page, isolate_mode_t mode)
|
2024-08-27 11:47:27 +00:00
|
|
|
{ return false; }
|
|
|
|
static inline bool isolate_folio_to_list(struct folio *folio, struct list_head *list)
|
2023-02-15 10:39:37 +00:00
|
|
|
{ return false; }
|
2006-03-31 10:29:56 +00:00
|
|
|
|
2010-09-30 02:54:51 +00:00
|
|
|
static inline int migrate_huge_page_move_mapping(struct address_space *mapping,
|
2022-06-06 14:47:21 +00:00
|
|
|
struct folio *dst, struct folio *src)
|
2010-09-08 01:19:35 +00:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2021-11-05 20:43:35 +00:00
|
|
|
|
2006-03-22 08:09:12 +00:00
|
|
|
#endif /* CONFIG_MIGRATION */
|
2012-10-25 12:16:34 +00:00
|
|
|
|
2016-07-26 22:26:50 +00:00
|
|
|
#ifdef CONFIG_COMPACTION
|
2022-06-07 19:38:48 +00:00
|
|
|
bool PageMovable(struct page *page);
|
|
|
|
void __SetPageMovable(struct page *page, const struct movable_operations *ops);
|
|
|
|
void __ClearPageMovable(struct page *page);
|
2016-07-26 22:26:50 +00:00
|
|
|
#else
|
2022-06-07 19:38:48 +00:00
|
|
|
static inline bool PageMovable(struct page *page) { return false; }
|
2016-07-26 22:26:50 +00:00
|
|
|
static inline void __SetPageMovable(struct page *page,
|
2022-06-07 19:38:48 +00:00
|
|
|
const struct movable_operations *ops)
|
2016-07-26 22:26:50 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
static inline void __ClearPageMovable(struct page *page)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2022-05-13 03:23:05 +00:00
|
|
|
static inline bool folio_test_movable(struct folio *folio)
|
|
|
|
{
|
|
|
|
return PageMovable(&folio->page);
|
|
|
|
}
|
|
|
|
|
2023-01-30 21:43:50 +00:00
|
|
|
static inline
|
|
|
|
const struct movable_operations *folio_movable_ops(struct folio *folio)
|
|
|
|
{
|
|
|
|
VM_BUG_ON(!__folio_test_movable(folio));
|
|
|
|
|
|
|
|
return (const struct movable_operations *)
|
|
|
|
((unsigned long)folio->mapping - PAGE_MAPPING_MOVABLE);
|
|
|
|
}
|
|
|
|
|
2022-06-07 19:38:48 +00:00
|
|
|
static inline
|
|
|
|
const struct movable_operations *page_movable_ops(struct page *page)
|
|
|
|
{
|
|
|
|
VM_BUG_ON(!__PageMovable(page));
|
|
|
|
|
|
|
|
return (const struct movable_operations *)
|
|
|
|
((unsigned long)page->mapping - PAGE_MAPPING_MOVABLE);
|
|
|
|
}
|
|
|
|
|
2012-10-25 12:16:34 +00:00
|
|
|
#ifdef CONFIG_NUMA_BALANCING
|
mm/migrate: move NUMA hinting fault folio isolation + checks under PTL
Currently we always take a folio reference even if migration will not even
be tried or isolation failed, requiring us to grab+drop an additional
reference.
Further, we end up calling folio_likely_mapped_shared() while the folio
might have already been unmapped, because after we dropped the PTL, that
can easily happen. We want to stop touching mapcounts and friends from
such context, and only call folio_likely_mapped_shared() while the folio
is still mapped: mapcount information is pretty much stale and unreliable
otherwise.
So let's move checks into numamigrate_isolate_folio(), rename that
function to migrate_misplaced_folio_prepare(), and call that function from
callsites where we call migrate_misplaced_folio(), but still with the PTL
held.
We can now stop taking temporary folio references, and really only take a
reference if folio isolation succeeded. Doing the
folio_likely_mapped_shared() + folio isolation under PT lock is now
similar to how we handle MADV_PAGEOUT.
While at it, combine the folio_is_file_lru() checks.
[david@redhat.com: fix list_del() corruption]
Link: https://lkml.kernel.org/r/8f85c31a-e603-4578-bf49-136dae0d4b69@redhat.com
Link: https://lkml.kernel.org/r/20240626191129.658CFC32782@smtp.kernel.org
Link: https://lkml.kernel.org/r/20240620212935.656243-3-david@redhat.com
Signed-off-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Reviewed-by: Zi Yan <ziy@nvidia.com>
Tested-by: Donet Tom <donettom@linux.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2024-06-20 21:29:35 +00:00
|
|
|
int migrate_misplaced_folio_prepare(struct folio *folio,
|
|
|
|
struct vm_area_struct *vma, int node);
|
2024-11-26 15:56:54 +00:00
|
|
|
int migrate_misplaced_folio(struct folio *folio, int node);
|
2012-10-25 12:16:34 +00:00
|
|
|
#else
|
mm/migrate: move NUMA hinting fault folio isolation + checks under PTL
Currently we always take a folio reference even if migration will not even
be tried or isolation failed, requiring us to grab+drop an additional
reference.
Further, we end up calling folio_likely_mapped_shared() while the folio
might have already been unmapped, because after we dropped the PTL, that
can easily happen. We want to stop touching mapcounts and friends from
such context, and only call folio_likely_mapped_shared() while the folio
is still mapped: mapcount information is pretty much stale and unreliable
otherwise.
So let's move checks into numamigrate_isolate_folio(), rename that
function to migrate_misplaced_folio_prepare(), and call that function from
callsites where we call migrate_misplaced_folio(), but still with the PTL
held.
We can now stop taking temporary folio references, and really only take a
reference if folio isolation succeeded. Doing the
folio_likely_mapped_shared() + folio isolation under PT lock is now
similar to how we handle MADV_PAGEOUT.
While at it, combine the folio_is_file_lru() checks.
[david@redhat.com: fix list_del() corruption]
Link: https://lkml.kernel.org/r/8f85c31a-e603-4578-bf49-136dae0d4b69@redhat.com
Link: https://lkml.kernel.org/r/20240626191129.658CFC32782@smtp.kernel.org
Link: https://lkml.kernel.org/r/20240620212935.656243-3-david@redhat.com
Signed-off-by: David Hildenbrand <david@redhat.com>
Reviewed-by: Baolin Wang <baolin.wang@linux.alibaba.com>
Reviewed-by: Zi Yan <ziy@nvidia.com>
Tested-by: Donet Tom <donettom@linux.ibm.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
2024-06-20 21:29:35 +00:00
|
|
|
static inline int migrate_misplaced_folio_prepare(struct folio *folio,
|
|
|
|
struct vm_area_struct *vma, int node)
|
|
|
|
{
|
|
|
|
return -EAGAIN; /* can't migrate now */
|
|
|
|
}
|
2024-11-26 15:56:54 +00:00
|
|
|
static inline int migrate_misplaced_folio(struct folio *folio, int node)
|
2012-10-25 12:16:34 +00:00
|
|
|
{
|
|
|
|
return -EAGAIN; /* can't migrate now */
|
|
|
|
}
|
2012-12-05 09:32:56 +00:00
|
|
|
#endif /* CONFIG_NUMA_BALANCING */
|
2012-11-19 12:35:47 +00:00
|
|
|
|
2017-09-08 23:12:09 +00:00
|
|
|
#ifdef CONFIG_MIGRATION
|
|
|
|
|
2017-09-08 23:12:17 +00:00
|
|
|
/*
|
|
|
|
* Watch out for PAE architecture, which has an unsigned long, and might not
|
|
|
|
* have enough bits to store all physical address and flags. So far we have
|
|
|
|
* enough room for all our flags.
|
|
|
|
*/
|
2017-09-08 23:12:09 +00:00
|
|
|
#define MIGRATE_PFN_VALID (1UL << 0)
|
|
|
|
#define MIGRATE_PFN_MIGRATE (1UL << 1)
|
|
|
|
#define MIGRATE_PFN_WRITE (1UL << 3)
|
2017-09-08 23:12:17 +00:00
|
|
|
#define MIGRATE_PFN_SHIFT 6
|
2017-09-08 23:12:09 +00:00
|
|
|
|
|
|
|
static inline struct page *migrate_pfn_to_page(unsigned long mpfn)
|
|
|
|
{
|
|
|
|
if (!(mpfn & MIGRATE_PFN_VALID))
|
|
|
|
return NULL;
|
|
|
|
return pfn_to_page(mpfn >> MIGRATE_PFN_SHIFT);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long migrate_pfn(unsigned long pfn)
|
|
|
|
{
|
|
|
|
return (pfn << MIGRATE_PFN_SHIFT) | MIGRATE_PFN_VALID;
|
|
|
|
}
|
|
|
|
|
2020-07-23 22:30:00 +00:00
|
|
|
enum migrate_vma_direction {
|
|
|
|
MIGRATE_VMA_SELECT_SYSTEM = 1 << 0,
|
|
|
|
MIGRATE_VMA_SELECT_DEVICE_PRIVATE = 1 << 1,
|
2022-07-15 15:05:12 +00:00
|
|
|
MIGRATE_VMA_SELECT_DEVICE_COHERENT = 1 << 2,
|
2020-07-23 22:30:00 +00:00
|
|
|
};
|
|
|
|
|
2019-08-14 07:59:19 +00:00
|
|
|
struct migrate_vma {
|
|
|
|
struct vm_area_struct *vma;
|
|
|
|
/*
|
|
|
|
* Both src and dst array must be big enough for
|
|
|
|
* (end - start) >> PAGE_SHIFT entries.
|
|
|
|
*
|
|
|
|
* The src array must not be modified by the caller after
|
|
|
|
* migrate_vma_setup(), and must not change the dst array after
|
|
|
|
* migrate_vma_pages() returns.
|
|
|
|
*/
|
|
|
|
unsigned long *dst;
|
|
|
|
unsigned long *src;
|
|
|
|
unsigned long cpages;
|
|
|
|
unsigned long npages;
|
|
|
|
unsigned long start;
|
|
|
|
unsigned long end;
|
2020-03-16 19:32:14 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set to the owner value also stored in page->pgmap->owner for
|
2020-07-23 22:30:00 +00:00
|
|
|
* migrating out of device private memory. The flags also need to
|
|
|
|
* be set to MIGRATE_VMA_SELECT_DEVICE_PRIVATE.
|
2020-07-23 22:30:01 +00:00
|
|
|
* The caller should always set this field when using mmu notifier
|
|
|
|
* callbacks to avoid device MMU invalidations for device private
|
|
|
|
* pages that are not being migrated.
|
2020-03-16 19:32:14 +00:00
|
|
|
*/
|
2020-07-23 22:30:00 +00:00
|
|
|
void *pgmap_owner;
|
|
|
|
unsigned long flags;
|
2022-09-28 12:01:15 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set to vmf->page if this is being called to migrate a page as part of
|
|
|
|
* a migrate_to_ram() callback.
|
|
|
|
*/
|
|
|
|
struct page *fault_page;
|
2017-09-08 23:12:09 +00:00
|
|
|
};
|
|
|
|
|
2019-08-14 07:59:19 +00:00
|
|
|
int migrate_vma_setup(struct migrate_vma *args);
|
|
|
|
void migrate_vma_pages(struct migrate_vma *migrate);
|
|
|
|
void migrate_vma_finalize(struct migrate_vma *migrate);
|
2022-09-28 12:01:19 +00:00
|
|
|
int migrate_device_range(unsigned long *src_pfns, unsigned long start,
|
|
|
|
unsigned long npages);
|
|
|
|
void migrate_device_pages(unsigned long *src_pfns, unsigned long *dst_pfns,
|
|
|
|
unsigned long npages);
|
|
|
|
void migrate_device_finalize(unsigned long *src_pfns,
|
|
|
|
unsigned long *dst_pfns, unsigned long npages);
|
|
|
|
|
2017-09-08 23:12:09 +00:00
|
|
|
#endif /* CONFIG_MIGRATION */
|
|
|
|
|
2006-03-22 08:09:12 +00:00
|
|
|
#endif /* _LINUX_MIGRATE_H */
|