From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 7B1AC2E8B for ; Wed, 12 Jul 2017 00:13:58 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 0B17520830; Tue, 11 Jul 2017 18:13:58 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Tue, 11 Jul 2017 18:13:58 -0400 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:x-sasl-enc; s=mesmtp; bh=FiPtX8rAnqfwK28 D/AgGUgkiG9hffG1NrP/t6hAwRfk=; b=rJRTOGAac6xpzz0KWj8Z8yTULBfGCcr xWQcfwPVhDz+aJu1DkLLzDZNmxxlqWDChbbS2tcsx/v5onIFTH2G870QO2EMKP08 AnriiQTjV5ETON0qRLUeWO6ZnHZEOyGYc0NnVhbKNzBS1cZPmvWhRD5gWy1yLdoW ybPdw7dRMPcs= 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:x-sasl-enc; s= fm1; bh=FiPtX8rAnqfwK28D/AgGUgkiG9hffG1NrP/t6hAwRfk=; b=XXfbe8UV A92bt+e5pgP9UlH0aYYsXpsxh8x6C4CovOdV3JQQVoeXcYEwpNgdTQshV0UMqKUl xOjWiYSwtPBbfHcny7t07VVw4QRWfew6PoqyoemNv23Gl5dx+D02C9IwL4UC2g6N AoCU34BEbjbctAIa3rBJnPdMbKWK6xoWZ8nrSf1SyqBJv7nsz02MUNt473Mss2cW D8c/cW82zXrkePSncInpXLhfKM5Sbylfw4b1zH1Rhmludtq7Sq98u8yign2g0cKh 7knAGkrZ4zNhq4KxMxWtL6dFh6ullLk8/GRm3wBV4YHxLLJyLClXkg2m8/04OFu0 /aR8EWj0WLBc6Q== X-ME-Sender: X-Sasl-enc: pCXE24OjURMf81xDvi4oR0RTRdiGYT3dKgMda0GdqT8M 1499811237 Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id B77267E51B; Tue, 11 Jul 2017 18:13:57 -0400 (EDT) From: Thomas Monjalon To: Gaetan Rivet Cc: dev@dpdk.org Date: Wed, 12 Jul 2017 00:13:56 +0200 Message-ID: <12395866.HelYTBp4ty@xps> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 3/8] devargs: introduce insert function 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: Tue, 11 Jul 2017 22:13:58 -0000 11/07/2017 01:19, Gaetan Rivet: > This new function expects a fully-formed rte_devargs, previously parsed > and allocated. > > It does not check whether the new rte_devargs is compatible with current > bus configuration, but will replace any eventual existing one for the same > device. Please explain why this function is needed.