From: Eugene Syromyatnikov Date: Sat, 19 Nov 2016 00:36:22 +0000 (+0300) Subject: xlat: add values to new ARCH_* constants X-Git-Tag: v4.15~104 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2c9464c5a39154d7348a0b65c49229b785c5837b;p=strace 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. --- 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