migrate_pages internals: lazy copy

valdis.kletnieks at vt.edu valdis.kletnieks at vt.edu
Fri Jan 19 14:26:30 EST 2018


On Fri, 19 Jan 2018 13:57:18 -0500, Karaoui mohamed lamine said:
>
> Does the "migrate_pages" syscall migrate memory pages in a *lazy* manner?
> if not, is there another syscall or patch that does it?

man 2 migrate_pages says:

RETURN VALUE
       On  success  migrate_pages() returns the number of pages that could not be moved (i.e., a return of zero means
       that all pages were successfully moved).  On error, it returns -1, and sets errno to indicate the error.

which implies that it doesn't return until an attempt has been made to migrate all relevant
pages. And that rules out lazy migration.

What problem are you trying to solve by doing it in a lazy manner?
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 486 bytes
Desc: not available
URL: <http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20180119/15498860/attachment.sig>


More information about the Kernelnewbies mailing list