From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id 3033B6CD2 for ; Wed, 2 Mar 2016 17:46:42 +0100 (CET) Received: by mail-wm0-f53.google.com with SMTP id l68so86187381wml.1 for ; Wed, 02 Mar 2016 08:46:42 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=WZe2TOpzOHKx5dtxuL+w4GF9bBkFUgC+qnfSmpRF/Xw=; b=tH3RmB5Dv+D1hs8q9o8+ZdKmuf5G6nOacuP9wOuPIhQz8RMGqc53SzKWg7mLcFeALp P8T89D/NMr/LpPRj1CTkg6+rqLL3s/1S3rzhEd5+y/ezgMbdbOrhXbyk0EBbK1jctXsG vyrnA9ija6nMEeX7T/nGYhgkCjs4AuSvAFeQBelapWY5gDxX02CNBghpeUkiUzpGO2KH ACXijmE5FGIFFyLo0Y9U6ZairKpQ1VxcngZHKFiHIVCGFuNlxgjaTO+YAKuNIJ1AHHet vnQI1xMcFJOIp+wCK0IMiBgolUr0S2juK5AF34cV99j7bF34DFhsliAp7N5AWES0ovBo G0Sg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding; bh=WZe2TOpzOHKx5dtxuL+w4GF9bBkFUgC+qnfSmpRF/Xw=; b=PpGhQDTP3IBPZ5kLd3ws7+ZMGl1qMV6Z/dhLZbNLuOyUMt+4CYG7psGrggYnB+uYHN NgeeElksiEVFNo94jW+N4TauQYwWrBnhhao7EiVEc7yIE0JZohYU3dzwFGyF4PMYrJ4m nEtZaLXonCYKWRhzDbTyVrhH7wpVECWVtJEf1+QQWfjV3zSyU7oRqggRHa5dGiHCP6nu KIeaQaAMe2bbB/UgO7ntb1YCFcEADOdW6+ZrAfyqBM5V3Jnm6MjLuefxRakUKxUgory8 WicUZ55Y1pDJTW2ZSLsdBGn7f26+Xa7RduE+ejIMpYxGKa+rb7Vofq4uIMZYlNYWoTNf a+MQ== X-Gm-Message-State: AD7BkJKiES+DhCGnDNgEBYFSlVvyRFc32c558LKVZdUJ0o3QcUU5kUjCruTxURga8fq+X03D X-Received: by 10.28.19.204 with SMTP id 195mr966918wmt.1.1456937201995; Wed, 02 Mar 2016 08:46:41 -0800 (PST) Received: from xps13.localnet (guy78-3-82-239-227-177.fbx.proxad.net. [82.239.227.177]) by smtp.gmail.com with ESMTPSA id da6sm27215552wjb.24.2016.03.02.08.46.41 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 02 Mar 2016 08:46:41 -0800 (PST) From: Thomas Monjalon To: =?utf-8?B?5Y2iIOavhQ==?= Date: Wed, 02 Mar 2016 17:45:06 +0100 Message-ID: <5302405.qOPCxYW0H8@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] eal: fix compile error in eal_timer.c caused by hpet X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Mar 2016 16:46:42 -0000 2016-01-28 14:16, =E5=8D=A2 =E6=AF=85: > Fix compile error when enable CONFIG_RTE_LIBEAL_USE_HPET. >=20 > Error messages: > /root/dpdk-2.2.0/lib/librte_eal/linuxapp/eal/eal_timer.c: In function= =E2=80=98rte_eal_hpet_init=E2=80=99: > /root/dpdk-2.2.0/lib/librte_eal/linuxapp/eal/eal_timer.c:222:2: error= : implicit declaration of function =E2=80=98rte_thread_setname=E2=80=99= [-Werror=3Dimplicit-function-declaration] > ret =3D rte_thread_setname(msb_inc_thread_id, thread_name); > ^ > /root/dpdk-2.2.0/lib/librte_eal/linuxapp/eal/eal_timer.c:222:2: error= : nested extern declaration of =E2=80=98rte_thread_setname=E2=80=99 [-W= error=3Dnested-externs] > cc1: all warnings being treated as errors >=20 > Fixes: badb3688ffa8 ("eal/linux: fix build with glibc < 2.12") Just looking at the first letters of this SHA1 gives a hint ;) > Signed-off-by: Yi Lu > Acked-by: David Marchand Applied, thanks