2
0
mirror of https://github.com/checkpoint-restore/criu synced 2025-08-29 13:28:27 +00:00

zdtm: Correct syscall numbers for fanotify00 testcase

Define correct syscall numbers for fanotify_init
and fanotify_mark for arm64.

Signed-off-by: Vijaya Kumar K <vijayak@caviumnetworks.com>
Reviewed-by: Christopher Covington <cov@codeaurora.org>
Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
This commit is contained in:
Vijaya Kumar K 2015-12-30 19:56:00 +03:00 committed by Pavel Emelyanov
parent 8a7c006bdd
commit db0cc36417

View File

@ -23,6 +23,9 @@
#elif defined(__PPC64__) #elif defined(__PPC64__)
# define __NR_fanotify_init 323 # define __NR_fanotify_init 323
# define __NR_fanotify_mark 324 # define __NR_fanotify_mark 324
#elif __aarch64__
# define __NR_fanotify_init 262
# define __NR_fanotify_mark 263
#else #else
# define __NR_fanotify_init 338 # define __NR_fanotify_init 338
# define __NR_fanotify_mark 339 # define __NR_fanotify_mark 339