From patchwork Tue Dec 17 21:47:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Adhemerval Zanella Netto X-Patchwork-Id: 36929 Received: (qmail 111423 invoked by alias); 17 Dec 2019 21:47:54 -0000 Mailing-List: contact libc-alpha-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: libc-alpha-owner@sourceware.org Delivered-To: mailing list libc-alpha@sourceware.org Received: (qmail 111373 invoked by uid 89); 17 Dec 2019 21:47:54 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-21.7 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_NUMSUBJECT, RCVD_IN_DNSWL_NONE, SPF_PASS autolearn=ham version=3.3.1 spammy=5.3.0 X-HELO: mail-pl1-f196.google.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:subject:date:message-id:in-reply-to:references; bh=ksM5WLZsOihCy56Sm0ULLXBsJZzuRJv6DVViIctJXn0=; b=hYGhF70yLANXcfk7A+YMJKDQ0H0QRrw7vylpiTDwUS9jjlL/phy2ScExdqhU2Oz/Dh TmedkA1c+qu3XRXzqSIb2SH4ft6LkO1rydDBeEdEfDRf+/LlPFZbzv3Cg0Dv3BMWrfNi i5mAykxizJKRYxpW3X/7m8krREBD91LGl9intTtLIxkfYGmuUcQgyY5QD7mQ5brgDiMR yku41BMgGkkZ8BvGoe3UrKRBf5pl4MmvFjre0pHbf2rx0jPnDftEgaKs/suNKL+biSgg epRhqi6e54zB9qu53f/erpG1v/9KHG2y4istzdKlJihY7letLJqo/1zQi4EfW/bl4+D7 /8fw== Return-Path: From: Adhemerval Zanella To: libc-alpha@sourceware.org Subject: [PATCH 12/16] linux: Enable vDSO clock_gettime64 for i386 Date: Tue, 17 Dec 2019 18:47:24 -0300 Message-Id: <20191217214728.2886-12-adhemerval.zanella@linaro.org> In-Reply-To: <20191217214728.2886-1-adhemerval.zanella@linaro.org> References: <20191217214728.2886-1-adhemerval.zanella@linaro.org> It was added on Linux 5.3 (commit 22ca962288c0a). Checked on i686-linux-gnu with 5.3.0 kernel. Reviewed-by: Siddhesh Poyarekar Reviewed-by: Siddhesh Poyarekar --- sysdeps/unix/sysv/linux/i386/sysdep.h | 1 + 1 file changed, 1 insertion(+) diff --git a/sysdeps/unix/sysv/linux/i386/sysdep.h b/sysdeps/unix/sysv/linux/i386/sysdep.h index b2e750d490..5156587d95 100644 --- a/sysdeps/unix/sysv/linux/i386/sysdep.h +++ b/sysdeps/unix/sysv/linux/i386/sysdep.h @@ -314,6 +314,7 @@ struct libc_do_syscall_args /* List of system calls which are supported as vsyscalls. */ # define HAVE_CLOCK_GETTIME_VSYSCALL "__vdso_clock_gettime" +# define HAVE_CLOCK_GETTIME64_VSYSCALL "__vdso_clock_gettime64" # define HAVE_GETTIMEOFDAY_VSYSCALL "__vdso_gettimeofday" # define HAVE_TIME_VSYSCALL "__vdso_time" # define HAVE_CLOCK_GETRES_VSYSCALL "__vdso_clock_getres"