From 8621b95eaa19d9b5ee624db156057b3d9e7029b0 Mon Sep 17 00:00:00 2001 From: "Dmitry V. Levin" Date: Mon, 15 Apr 2019 00:39:53 +0000 Subject: [PATCH] arm: wire up migrate_pages syscall * linux/arm/syscallent.h [400]: Wire up migrate_pages syscall introduced on arm by linux commit v5.1-rc1~160^2~3^2~11. * NEWS: Mention this. --- NEWS | 1 + linux/arm/syscallent.h | 1 + 2 files changed, 2 insertions(+) diff --git a/NEWS b/NEWS index 93dabd58..7916a76d 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,7 @@ Noteworthy changes in release ?.? (????-??-??) * Improvements * Added C-SKY architecture support. * Wired up io_pgetevents syscall on alpha. + * Wired up migrate_pages syscall on arm. * Wired up io_pgetevents, perf_event_open, seccomp, and statx syscalls on ia64. diff --git a/linux/arm/syscallent.h b/linux/arm/syscallent.h index dbb8ca06..7ce2c1fc 100644 --- a/linux/arm/syscallent.h +++ b/linux/arm/syscallent.h @@ -407,6 +407,7 @@ [397] = { 5, TD|TF|TSTA, SEN(statx), "statx" }, [398] = { 4, 0, SEN(rseq), "rseq" }, [399] = { 6, 0, SEN(io_pgetevents), "io_pgetevents" }, +[400] = { 4, TM, SEN(migrate_pages), "migrate_pages" }, #ifdef __ARM_EABI__ # define ARM_FIRST_SHUFFLED_SYSCALL 500 -- 2.40.0