From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id A6D2B1CDA1 for ; Thu, 5 Apr 2018 23:58:18 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 4448C20D9E; Thu, 5 Apr 2018 17:58:18 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Thu, 05 Apr 2018 17:58:18 -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; s=mesmtp; bh=YzjyHQQByiStBsK+nWGZBGLvR6 T7c2t9NF3OoFDp7vg=; b=bdgAYYFTNyz4zBaXITDSGW1d1F0aMLzrM/X0eMbNLk kyq9zpZyHu7uhnr6j1XsWQ+lGrO2kAAoOCO3CyCBUVjca13WFgaoXbIuMyEJvwh5 obMOrbxahoUigD4L1bPyfonxPUcXwgrXsqxPCgfn5QvSStQjU52QeUrmvgSfj0kQ 4= 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=fm2; bh=YzjyHQ QByiStBsK+nWGZBGLvR6T7c2t9NF3OoFDp7vg=; b=hkElBs3pp8VLqmLKh5QhcX ZUa9bPypKRkJGz/XJksej5xXfnvklFoJ01nwI3phCCv+Li9uC1kOo+JbSOFRcryc CVC6lvEy7qm4J4PdS8YYozMBzhcOuNoOCgHfIBCnRdON+2fP2bqrqc0F7cWQujn+ FeYk+HCP9zMNoHVS3VR3MNVwuvupGoQ27nglkb3q/O+rOdP7N1bd2kdPqrbcXHOD Et3mY4lsIcBaUUOf0UzbZ8z/nEQw/Bsd1yX/QsskIOXOiBYITkXlZ0bb8FUmum8U SG5aSX2Pd7AwKinhor+qMbXtnnoQuw698uO7xi+AYU0wO+py7UNGvcLlD3u5YOgw == 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 C726DE446D; Thu, 5 Apr 2018 17:58:16 -0400 (EDT) From: Thomas Monjalon To: Jeff Guo Cc: stephen@networkplumber.org, bruce.richardson@intel.com, ferruh.yigit@intel.com, konstantin.ananyev@intel.com, gaetan.rivet@6wind.com, jingjing.wu@intel.com, motih@mellanox.com, harry.van.haaren@intel.com, jianfeng.tan@intel.com, shreyansh.jain@nxp.com, dev@dpdk.org, helin.zhang@intel.com Date: Thu, 05 Apr 2018 23:58:16 +0200 Message-ID: <1973088.DTu0Q9MMsq@xps> In-Reply-To: <1522944617-16601-4-git-send-email-jia.guo@intel.com> References: <1522918968-15290-5-git-send-email-jia.guo@intel.com> <1522944617-16601-1-git-send-email-jia.guo@intel.com> <1522944617-16601-4-git-send-email-jia.guo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH V20 3/4] eal/linux: uevent parse and process 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: Thu, 05 Apr 2018 21:58:18 -0000 05/04/2018 18:10, Jeff Guo: > In order to handle the uevent which has been detected from the kernel > side, add uevent parse and process function to translate the uevent into > device event, which user has subscribed to monitor. > > Signed-off-by: Jeff Guo > --- > lib/librte_eal/linuxapp/eal/eal_dev.c | 206 +++++++++++++++++++++++++++++++++- > 1 file changed, 204 insertions(+), 2 deletions(-) Please update the release notes entry, explaining that Linux uevent is supported as backend of the new EAL device event notification framework. Thanks for the work, I think we are close to the merge.