From 2c9464c5a39154d7348a0b65c49229b785c5837b Mon Sep 17 00:00:00 2001 From: Eugene Syromyatnikov Date: Sat, 19 Nov 2016 03:36:22 +0300 Subject: [PATCH] xlat: add values to new ARCH_* constants Since UAPI header declares them under CONFIG_CHECKPOINT_RESTORE and they would never be defined in user space. * xlat/archvals.in: Add numeric values to ARCH_MAP_VDSO_* constants. --- xlat/archvals.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xlat/archvals.in b/xlat/archvals.in index ba519830..def419d0 100644 --- a/xlat/archvals.in +++ b/xlat/archvals.in @@ -2,6 +2,6 @@ ARCH_SET_GS ARCH_SET_FS ARCH_GET_FS ARCH_GET_GS -ARCH_MAP_VDSO_X32 -ARCH_MAP_VDSO_32 -ARCH_MAP_VDSO_64 +ARCH_MAP_VDSO_X32 0x2001 +ARCH_MAP_VDSO_32 0x2002 +ARCH_MAP_VDSO_64 0x2003 -- 2.50.1