From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 2D154A00E6 for ; Thu, 13 Jun 2019 12:25:09 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1A71B1D14A; Thu, 13 Jun 2019 12:25:08 +0200 (CEST) Received: from smtp.tuxdriver.com (charlotte.tuxdriver.com [70.61.120.58]) by dpdk.org (Postfix) with ESMTP id DC5561D13F for ; Thu, 13 Jun 2019 12:25:06 +0200 (CEST) Received: from [107.15.85.130] (helo=localhost) by smtp.tuxdriver.com with esmtpsa (TLSv1:AES256-SHA:256) (Exim 4.63) (envelope-from ) id 1hbMud-000813-UE; Thu, 13 Jun 2019 06:25:02 -0400 Date: Thu, 13 Jun 2019 06:24:50 -0400 From: Neil Horman To: Aaron Conole Cc: dev@dpdk.org, Jerin Jacob Kollanukkaran , Bruce Richardson , Thomas Monjalon , Akhil Goyal , Hemant Agrawal Message-ID: <20190613102450.GA5381@hmswarspite.think-freely.org> References: <20190525184346.27932-1-nhorman@tuxdriver.com> <20190612203903.16565-1-nhorman@tuxdriver.com> <20190612203903.16565-10-nhorman@tuxdriver.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.11.3 (2019-02-01) X-Spam-Score: -2.9 (--) X-Spam-Status: No Subject: Re: [dpdk-dev] [PATCH v1 9/9] dpaa2: mark internal functions with __rte_internal 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, Jun 12, 2019 at 05:14:53PM -0400, Aaron Conole wrote: > Neil Horman writes: > > > Identify functions in the dpaa2 driver which are internal (based on > > their not having an rte_ prefix) and tag them with __rte_internal > > > > Signed-off-by: Neil Horman > > CC: Jerin Jacob Kollanukkaran > > CC: Bruce Richardson > > CC: Thomas Monjalon > > CC: Akhil Goyal > > CC: Hemant Agrawal > > --- > > I think it's incomplete. > > https://travis-ci.com/ovsrobot/dpdk/builds/115329014 > It appears the travis environment is using the meson build system, while I was building with the traditional Make system, and meson doesn't yet set BUILDING_RTE_SDK in its environment. I'll fix that Neil