From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id 0B1512C2E for ; Mon, 22 Jan 2018 01:52:08 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 52B1B20BB0; Sun, 21 Jan 2018 19:52:08 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Sun, 21 Jan 2018 19:52:08 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=K82B+nB2sBurk+9Ir2xZv5yGdg cauhuUSTkTW/+c4yg=; b=Fhh9ZQUG8kx56Vfd9w5urF0yXFz6AFEjYbXPJVEszg RlaZPfpNdZkzKiO1ieTNlp/uHLQJgGg25nmXpJXewY8um+PckUYetxRj4YrG0wwh j9yWZ2W6ePKJqpwix9IhOsVXB+NRpYS3EFwE9O63GSWN8DVZYQ/xpjhsDVmmr9NX E= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm1; bh=K82B+n B2sBurk+9Ir2xZv5yGdgcauhuUSTkTW/+c4yg=; b=kVskYIt6gCxpFewl6Kp570 DhOkxplsxnGVPThaamJAejtYsdgWxMcTSHR8j1YqCoeLogCGj1Jbkn1KDWNXYlKt PlAuLR6XHLfYqJZDFZRxb0OvM8AqagIQ/WkeyPunoiHqxRUpzP/iUBAEKnKCK+YC r2MNLW360FC51taEA0M7rXTFfyRt2GIKUaxdANV4eY5Bqz1xBWeAnQ+xKR7Jy1wT Dbz/r/PdkZV0kCOjwtdVF4E384jugorYPCui6Uidg12yEJSi02RmX9eoudVuXzl4 MhjE4Gx0I8Ko9VHWSZTsrsmA9DcUUmEwjH7LX2mWFKcQvP/dk+9jHX2Wetf1RBHg == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id EE26B7E3D6; Sun, 21 Jan 2018 19:52:07 -0500 (EST) From: Thomas Monjalon To: Ferruh Yigit Cc: dev@dpdk.org Date: Mon, 22 Jan 2018 01:51:28 +0100 Message-ID: <2632509.T4nSiYuKYY@xps> In-Reply-To: <20180122001625.29074-1-ferruh.yigit@intel.com> References: <20180121233533.95629-1-ferruh.yigit@intel.com> <20180122001625.29074-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v6 1/4] ethdev: separate driver APIs 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: , X-List-Received-Date: Mon, 22 Jan 2018 00:52:09 -0000 22/01/2018 01:16, Ferruh Yigit: > Create a rte_ethdev_driver.h file and move PMD specific APIs here. > Drivers updated to include this new header file. > > There is no update in header content and since ethdev.h included by > ethdev_driver.h, nothing changed from driver point of view, only > logically grouping of APIs. From applications point of view they can't > access to driver specific APIs anymore and they shouldn't. > > More PMD specific data structures still remain in ethdev.h because of > inline functions in header use them. Those will be handled separately. > > Signed-off-by: Ferruh Yigit > Acked-by: Shreyansh Jain > Acked-by: Andrew Rybchenko > Acked-by: Thomas Monjalon Series applied, thanks