From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C1B24A0598; Tue, 21 Apr 2020 18:17:35 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A374A1D443; Tue, 21 Apr 2020 18:17:35 +0200 (CEST) Received: from us-smtp-delivery-1.mimecast.com (us-smtp-1.mimecast.com [205.139.110.61]) by dpdk.org (Postfix) with ESMTP id 47C2B1D442 for ; Tue, 21 Apr 2020 18:17:34 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1587485853; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=DlhcC3ZS6iC7MzDtUqPEw22yMrNPO/NlUWE4+AbxecE=; b=Xda5pD7ixH30bVSCV4zQSxI33rnvpslXMb/OTliUnDQfMEajAdWIu9WBDcGXKb6v8GAF9w jrPdRbAdcoR+NiRrxy6k8EohpRSti4HMdKpJdCihoilkwPsl5/JKulNJx26fAEQLiCZsIV oLMbQVZZUBa1vj/pcop2Ll7yLoE9yKs= Received: from mail-vk1-f199.google.com (mail-vk1-f199.google.com [209.85.221.199]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-200-pyfx5k2sM1WFw5OA_Zcvtg-1; Tue, 21 Apr 2020 12:17:31 -0400 X-MC-Unique: pyfx5k2sM1WFw5OA_Zcvtg-1 Received: by mail-vk1-f199.google.com with SMTP id e69so5530954vke.11 for ; Tue, 21 Apr 2020 09:17:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc:content-transfer-encoding; bh=DlhcC3ZS6iC7MzDtUqPEw22yMrNPO/NlUWE4+AbxecE=; b=Sj8EIpXzvnaPW8tDilFM53khgIwdIn0v4WcBRv/JiImM7IEKTdHhwN3KYzK4tTCyXU L3pJIPpbRHHY+IEXm80fhk5PAKnkICRgS4B2eByO/7jBiFPYyZtB4FMGdVrMRXoxoqSy APiMO6b1TZwRqVvDtuzl7Nltav/ooyfgRhUPus3J506wOMB7e9UYVQU9U3T+C+9d+y07 IKh4f0Ox6PEzrzrB4OHDOkGlgnu86m9ndxGwOYeGpgs5HKtqgx/ftgjTK7dX7odEse1h CXknMYSEOVfbLBLD81FSfLytFm/pyoBu26QtWb+NTTbT1aPewiIsR1vhW66KJFBFU1gA WqRw== X-Gm-Message-State: AGi0Pub2S97wrrKoCrIhqChMDs+5cc1Wmw8oI2PGmc9vUTGRswYUU9g+ IgEHkQYeZmuovVISU7erUY3BvC6+JNkIlwxk9iAJItPp0g+6IylE1wG8tdyAWQ/Sp4aLIA5O7fL ezD4/MHjn8j8OLh6/ihI= X-Received: by 2002:a05:6102:382:: with SMTP id m2mr11496938vsq.141.1587485851373; Tue, 21 Apr 2020 09:17:31 -0700 (PDT) X-Google-Smtp-Source: APiQypKrV09BeRBZE2ienaXDMUU7OPbd5bb1+sFUnxv5ky5z+2Bsm+Yh8q6Pa1WJT9t68nfajBq9EF+Vqomq0HLPxPs= X-Received: by 2002:a05:6102:382:: with SMTP id m2mr11496908vsq.141.1587485851124; Tue, 21 Apr 2020 09:17:31 -0700 (PDT) MIME-Version: 1.0 References: <20200325001356.147049-1-thinhtr@linux.vnet.ibm.com> In-Reply-To: <20200325001356.147049-1-thinhtr@linux.vnet.ibm.com> From: David Marchand Date: Tue, 21 Apr 2020 18:17:20 +0200 Message-ID: To: Thinh Tran Cc: dev , dpdk stable , David Christensen X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [dpdk-dev] [PATCH v3] eal/ppc64: improve rte_rdtsc() with __ppc_get_timebase() X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Wed, Mar 25, 2020 at 1:17 AM Thinh Tran wro= te: > > __ppc_get_timebase() reads and returns the current value of the Time > Base Register. It's more efficient as it uses the processor=E2=80=99s t= ime > base facility directly > > the DPDK on FreeBSD currently is not supported on Powerpc64, it should > be safe to include the sys/platform/ppc.h > > > Signed-off-by: Thinh Tran Reviewed-by: David Christensen Applied, thanks. --=20 David Marchand