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 DD872A0613 for ; Tue, 30 Jul 2019 19:44:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B29AD1BFCF; Tue, 30 Jul 2019 19:44:09 +0200 (CEST) Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 12BF01BFC4 for ; Tue, 30 Jul 2019 19:44:08 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 9BC0922254; Tue, 30 Jul 2019 13:44:07 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Tue, 30 Jul 2019 13:44:07 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=qr6sNlU9NXyOi+Yi4f2PX/OBp0KPu0DdcKoEsZRtHn4=; b=nFXS2nIa2kpA cfXuQaDAdMotEDMTD6LN+VoaRr7NYjdwc24lH2h7Yl8pgorav/QGiDyHpiwPCL6I zdcJ5V+ST+1jw858zqMI3YNvFAUL4U6McF6/0JdkRiyYrWTlIMK4ohM48leCRJ/A y6quMSgYXW6K5Op3748a0b+cQmwvOBg= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm3; bh=qr6sNlU9NXyOi+Yi4f2PX/OBp0KPu0DdcKoEsZRtH n4=; b=ljHrBO5Q+ofZ5lZPj+NGp3VbO358RE4vJDZ9DceuXW8meFXMYf5mmp9ep 1Pz7KYXw2kI+WFLSWHfuprG3AHZ/O4IUasR3uuXdJEQoql1Bu9LQ4noVihZvS+uu pzBPYuIBM+tbb3kx/nMb/1K0Sr+luuFA8W6f2i1FCHoK2FJAoVGBXaRX/hNStESQ V1gg7VXIL1t3ZhE7x7Gzww2UUgxwDm6GKwNwpZ6GZtiShL3CKc6IepV4w3Zhbl8v aKxmzeaMB1ZwVko5/Q7LR5xbfQ3XBhq+9VbJbVwe3furrg4x2ejzeam4JO6D+H0x yPAPEeMHHipvIwSFgJp022yKhm+kQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrleefgdduudegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen uceurghilhhouhhtmecufedttdenucesvcftvggtihhpihgvnhhtshculddquddttddmne cujfgurhephffvufffkfgjfhgggfgtsehtufertddttddvnecuhfhrohhmpefvhhhomhgr shcuofhonhhjrghlohhnuceothhhohhmrghssehmohhnjhgrlhhonhdrnhgvtheqnecuff homhgrihhnpegsuhhilhhtrdhsohenucfkphepjeejrddufeegrddvtdefrddukeegnecu rfgrrhgrmhepmhgrihhlfhhrohhmpehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtne cuvehluhhsthgvrhfuihiivgeptd X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 9BFF9380079; Tue, 30 Jul 2019 13:44:06 -0400 (EDT) From: Thomas Monjalon To: bruce.richardson@intel.com Cc: dev@dpdk.org, Neil Horman Date: Tue, 30 Jul 2019 19:44:04 +0200 Message-ID: <1580261.L5piW5RV7n@xps> In-Reply-To: <20190730133937.22540-1-thomas@monjalon.net> References: <20190705093401.69913-1-bruce.richardson@intel.com> <20190730133937.22540-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 0/2] standardize rawdev names 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" 30/07/2019 15:39, Thomas Monjalon: > The names of the rawdev drivers and the resultant libraries they built > were pretty inconsistent. In terms of directory names, some had "rawdev" > in the name, e.g. skeleton_rawdev, ifpga_rawdev, while others didn't. > Also, for the built .so/.a libraries, the names were not always > consistent between make and meson, as, while meson enforced a consistent > naming scheme, make did not, leading to differences - especially for > those drivers with "rawdev" in the directory name. > > This patchset attempts to make things more standardized by removing > "rawdev" from all directory names - the drivers are in the "drivers/raw" > directory after all - and then standardizing the library names to > "librte_rawdev_" for both make and meson. > > Bruce Richardson (2): > drivers/raw: remove rawdev from directory names > drivers/raw: standardize naming > > v2 (Thomas): > - update doc and MAINTAINERS file > - rebase for ntb and octeontx2 Applied