From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f43.google.com (mail-wm0-f43.google.com [74.125.82.43]) by dpdk.org (Postfix) with ESMTP id A63069360 for ; Thu, 8 Sep 2016 11:38:47 +0200 (CEST) Received: by mail-wm0-f43.google.com with SMTP id w12so24802356wmf.0 for ; Thu, 08 Sep 2016 02:38:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:user-agent:in-reply-to :references:mime-version:content-transfer-encoding; bh=xhoVoq6/d9KfTDC08ViF5lKAeCQ4/Bvjn4AQXuGjLqE=; b=GcT6mhu9+rAdV/0AczKEqBV8ZsE3FJpZsYNM5VL3afSMOUipEM8JGMkaxC3DDb+m+t yHQ7hBnZcXVH/g/ZmcL4R8RrVO2L7AeKC1dzfC/dCmECNpeSAYNTQAYtcYjb1Z29ka+x kFktWqv0MkYKFa0y+VGitIxe/SH68xTwsuVT++03VShkG/Ckt2WEbff5+eI2vFaTo5vt Ui3GjKEGFAoTyPTI33pBsel7k/QjB7o83Sow02mvFNgqMXcvYchhsEyWERuJS/7mCapg UhxoKqpAS8f2NjVcqxZ9HRd6b2irvOV3sAnOn5FYoAQbQBq4luQTvHwwG559+BekTtm3 sYKQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:user-agent :in-reply-to:references:mime-version:content-transfer-encoding; bh=xhoVoq6/d9KfTDC08ViF5lKAeCQ4/Bvjn4AQXuGjLqE=; b=Pdx3XDr6Tz9N9M8PW/ICrnMgnfBp8k17haqh30P0gv2cu862C+/wTfhEri+6XiETVT 1rSHOUoyWHjFNnu/faPoicYDQczA9TJgy1CxipL5u9rUVEk7O8zXrp6FXHLfNMT7hbOC Mzhoq2uRNm6+a76fi5lXheoLtIMjxoV3FSXxWvE8HH4+EJwHHQP1G700ZWOmlxn8zAKl tksciGVypQO4UF11Pszq+TAODo1A1a6fo5O0cABuVvmluV0gjJkg91Jc5Wp57VZoB32J rspMhzr33dUIa64+OoFMGVzVcc50hc8Xfv/sf99HnHs9yXODsIOo704QY3W4Q0tpAvAB 31KQ== X-Gm-Message-State: AE9vXwPHqGM/6bJAO6OG15dDMcr2xkHUfkLOT9rW/sBiOAwIHWvDnU37pMpS7HDtnOFCVhoL X-Received: by 10.28.7.10 with SMTP id 10mr7653542wmh.73.1473327527365; Thu, 08 Sep 2016 02:38:47 -0700 (PDT) Received: from xps13.localnet (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id yj3sm27658173wjb.43.2016.09.08.02.38.46 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Thu, 08 Sep 2016 02:38:46 -0700 (PDT) From: Thomas Monjalon To: Bruce Richardson , Ferruh Yigit Cc: dev@dpdk.org Date: Thu, 08 Sep 2016 11:38:45 +0200 Message-ID: <1794333.caoKPGO1RT@xps13> User-Agent: KMail/4.14.10 (Linux/4.5.4-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <20160908092545.GA37096@bricha3-MOBL3> References: <1473157994-25101-1-git-send-email-ferruh.yigit@intel.com> <2985356.Pbo0hBOtBI@xps13> <20160908092545.GA37096@bricha3-MOBL3> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] net/kni: add KNI PMD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 09:38:47 -0000 2016-09-08 10:25, Bruce Richardson: > On Thu, Sep 08, 2016 at 09:44:55AM +0200, Thomas Monjalon wrote: > > 2016-09-06 11:33, Ferruh Yigit: > > > Add KNI PMD which wraps librte_kni for ease of use. > > > > > > KNI PMD can be used as any regular PMD to send / receive packets to the > > > Linux networking stack. > > > > Good move! > > Why not deprecate librte_kni and move all the code in the PMD later? > > +1 to this plan. However, I don't think it all needs to be done in one patchset, > though, does it? I think the deprecation notice must be in this patchset along with some __rte_deprecated in front of librte_kni functions. Then the move of the library in the PMD could be done in the next release.