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 DF03A1B384 for ; Tue, 30 Jan 2018 00:53:37 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 7203B20AD6; Mon, 29 Jan 2018 18:53:37 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Mon, 29 Jan 2018 18:53:37 -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=gZwGjuhpzSqo608XeE1+zCr/Gl /VlfCjoebNUG4xxMM=; b=MOtc1zUmOFjRB4pS6eK0yngRwR0/OCsHSHsiG7Yopv iMF79GA1/Pu7T2E3JNiAdnHx0GziL0vIMPrwN4g1ibReVwzw0ZmLeR1KhXXr0nDM gks/NE1Q+pXU2VQMiMEGn/bHKYRb5hmo9ZkzCmDf0jJreuwIKx/lgUMOI/GOktwB 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=gZwGju hpzSqo608XeE1+zCr/Gl/VlfCjoebNUG4xxMM=; b=Q15wAZ4i9P1eJs3rIuItLe JSAZeDUJeBh8GlocUHTtkMN8SPUfb1oxlOPCxUrJ+taiUrwvnl7Tv/NUyV2X+D7U Aqgws/TY4SWl62AAwqoykKs7qJ2aUSiWZYk7vfRiFm9vDPB6Cabboch11PCf6Kly +CKnWNjTGQV+oNX2MUTpWA2daSflheSdxeUHd24HrVFLilZ1I3M4crG5ANtuGeFg YCbYJ/WFy6aOkU4GObSvHTB1qRsCyX6LDERjG9C/IYpPW+zcS/h+837Jixiiaf/t rqi2lQfat//GlV5r19Iu597I89tCF2qZWGMVhZKIA6r3k7rwCjnGA68K70xhsoVQ == 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 16DDA7E3D5; Mon, 29 Jan 2018 18:53:37 -0500 (EST) From: Thomas Monjalon To: Jianfeng Tan Cc: dev@dpdk.org, anatoly.burakov@intel.com, bruce.richardson@intel.com, konstantin.ananyev@intel.com, Neil Horman , ferruh.yigit@intel.com Date: Tue, 30 Jan 2018 00:52:51 +0100 Message-ID: <10329389.j0kN3aOQFH@xps> In-Reply-To: <1516938082-27852-1-git-send-email-jianfeng.tan@intel.com> References: <1512067450-59203-1-git-send-email-jianfeng.tan@intel.com> <1516938082-27852-1-git-send-email-jianfeng.tan@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v6 0/2] generic channel for multi-process communication 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, 29 Jan 2018 23:53:38 -0000 26/01/2018 04:41, Jianfeng Tan: > v5->v6: > - Correct the API name issue in rte_eal_version.map. > > v3->v5: > - Drop the patch 3 on vfio communication (postponed). > - Change names from rte_eal_mp_* -> rte_mp_* as suggested by Thomas. > - Add nb_sent and nb_received in struct rte_mp_reply. > - Standardize the return val of sendmsg, request, reply: 0 on sucess, > (-1) on failure. > - If we found an peer error when we send msg in primary, we try to > remove the secondary socket; as there is no sync mechanism there > (cannot do flock like regular file for socket file), we use a more > complex socket name (with tsc in it). > - Some other small changes. Please, may I ask a last rebase? The __rte_experimental tag is now required to be added as in this commit: http://dpdk.org/commit/77b7b81e32e Thanks