From patchwork Wed Nov 28 23:58:50 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Rafael Avila de Espindola X-Patchwork-Id: 30374 Received: (qmail 119517 invoked by alias); 28 Nov 2018 23:59:07 -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 119492 invoked by uid 89); 28 Nov 2018 23:59:04 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.8 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, KAM_ASCII_DIVIDERS, RCVD_IN_DNSWL_LOW, SPF_HELO_PASS, SPF_PASS autolearn=ham version=3.3.2 spammy=servers, 20de, Hx-languages-length:1362 X-HELO: mail1.protonmail.ch Date: Wed, 28 Nov 2018 23:58:50 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=espindo.la; s=protonmail; t=1543449534; bh=GAB7+aSf/QRrvKdUCRon9ammI0gTRcl2Q9A/XxoXj9M=; h=Date:To:From:Cc:Reply-To:Subject:In-Reply-To:References: Feedback-ID:From; b=B116kEm8n2/qp24wwAqcAGpwwYAvVPHB/kqXKPI2VDeTPznQdZbGhTIVL/py5GqsO dpeRylBsdU8TTB5WqO5z335REJ1iM/RxieR6eS23C2veyLoDP0D4PyKv/igDXe1UqK LwIMeQQbTY0l3TmAyj5F8IxXDMKiwuO+c0WP2pHs= To: Rafal Luzynski From: Rafael Avila de Espindola Cc: GNU C Library Reply-To: Rafael Avila de Espindola Subject: Re: [PATCH v4] Enable VDSO on x86_64 statically linked programs. Message-ID: In-Reply-To: <2059405759.447883.1543444534113@poczta.nazwa.pl> References: <-yy_gcoGxeBfRYWaYqeQoGv_Ncla1BkdHh44XR5pzPx-3e7STsc2mm6v5pwSpqcGjCNJ65xaBtRa3Yl6ATRjT5CRpkEVd0Gv_YPT6KIqceA=@espindo.la> <5xsfJfzVjG6CYwl8_ZXiKw8uaSD0NDUQV-hzL2fgeumBab7KDLlPtZuxQhf0j_FuhHAkBOi581_NqxmkiTlTmrNb9kgh03d4wlnKc9rA48w=@espindo.la> <87efb6xzm4.fsf@linux.ibm.com> <875zwhxsy8.fsf@linux.ibm.com> <2059405759.447883.1543444534113@poczta.nazwa.pl> MIME-Version: 1.0 "Rafal Luzynski" writes: > Rafael, does your email body contain a line consisting of only a single > dot? I saw SMTP servers treating it as the end of message and removing > everything below. Not that I can see. It looks like just the patch is missing. The content I have after what is in https://sourceware.org/ml/libc-alpha/2018-11/msg00717.html is: ------------------------------------------------------------ From be1a08b6257b4043ffab0cae9f4f49f49e47d0b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20=C3=81vila=20de=20Esp=C3=ADndola?= Date: Mon, 26 Nov 2018 08:14:39 -0800 Subject: [PATCH] Include missing header. We need to include sysdep.h to make sure USE_VSYSCALL is defined. --- sysdeps/unix/sysv/linux/sysdep-vdso.h | 2 ++ 1 file changed, 2 insertions(+) ------------------------------------------------------------ Cheers, Rafael diff --git a/sysdeps/unix/sysv/linux/sysdep-vdso.h b/sysdeps/unix/sysv/linux/sysdep-vdso.h index 1ee0657ad3..9ac31d3c06 100644 --- a/sysdeps/unix/sysv/linux/sysdep-vdso.h +++ b/sysdeps/unix/sysv/linux/sysdep-vdso.h @@ -19,6 +19,8 @@ #ifndef SYSDEP_VDSO_LINUX_H # define SYSDEP_VDSO_LINUX_H +#include + #define VDSO_SYMBOL(__name) __vdso_##__name #ifndef INTERNAL_VSYSCALL_CALL