From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f53.google.com (mail-wm0-f53.google.com [74.125.82.53]) by dpdk.org (Postfix) with ESMTP id A43051B25A for ; Tue, 10 Oct 2017 08:55:38 +0200 (CEST) Received: by mail-wm0-f53.google.com with SMTP id u138so2185891wmu.4 for ; Mon, 09 Oct 2017 23:55:38 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:content-transfer-encoding:in-reply-to :user-agent; bh=uAHn6hv+0ST78ZefpHaIlnoCeOAiFX/pzClPMyCX69w=; b=pJcPH3bb/JMESc98ByadUe6s/LbOpZl9Fshwr/1oFY/CfnlKeFFMLgvz7N834lBkUj 9FAQjEJprrv9UdYOQehNPVmLNbf7AvlGYvSSYXvIm2+03Xg1Un9aIflAufK7M8XpjiK7 2gwySKkPdefBZLD6V7gHn+PwCZTpOMISIHFwl+qfyg01Y+uWOkW/GTzH8ApjRcUH8hZX HD3z6JL9z361Ahygh5InLOn3rTmq5FwPb7JtA1Q72PMCzoCav82xIPYBAvIBv6rChhUX LU5SMbM8yLE8oVinG93v7jek00gT07foEpY9P0UFaCaT23gMt3swrHA0yYxplZ4QIrjp SO6g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:content-transfer-encoding :in-reply-to:user-agent; bh=uAHn6hv+0ST78ZefpHaIlnoCeOAiFX/pzClPMyCX69w=; b=CBs3vUQWOrUi34j/W2HW3swilM2kh6WVaNIRb1JViVs6JRhVeixyN0D5xhPtH0H+NH mVZQRpvFhNaGXV2/YHX3cZY26j0I7IfNzh9+soM1YGSdidwUmermmd9O4IkzTbdc61wg 19RAXC2imFthSC4Mm6aQ/+fsth7+R/GOYj3aXf8lJWA+e10vADijrj00Fcag/virGfq4 lDLmcCqBCVTTG3bfjbmG8uAFBg+X+nj38p1Vs3RJu7P7txmUdfiv08DtJs93E20mSD9m 7HAGVrnbsLtvdO2hEwhKoH7g0CTPtwTWcNRMVVatitBAhbFFg6OiH/O7YtGJ+S76YSlu zcNA== X-Gm-Message-State: AMCzsaX7TiSJn+grwVrmbA3MRmfpkxY5vOppJOcjKxU0eV27imgGDSdj rTG/M+dw8dwrPsSwSRsn4tZx X-Google-Smtp-Source: AOwi7QBHsO7Uv0Nk0LgDJv+EDuIzi5Kbe2W/dr7nOMYZb0svF8LbV/7sGw7K8PfI973GyzO42YxD0A== X-Received: by 10.80.226.8 with SMTP id n8mr10512518edl.177.1507618538047; Mon, 09 Oct 2017 23:55:38 -0700 (PDT) Received: from autoinstall.dev.6wind.com (host.78.145.23.62.rev.coltfrance.com. [62.23.145.78]) by smtp.gmail.com with ESMTPSA id g49sm1425400edc.31.2017.10.09.23.55.37 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 09 Oct 2017 23:55:37 -0700 (PDT) Date: Tue, 10 Oct 2017 08:55:26 +0200 From: =?iso-8859-1?Q?N=E9lio?= Laranjeiro To: Ferruh Yigit Cc: Yongseok Koh , "dev@dpdk.org" , Adrien Mazarguil Message-ID: <20171010065526.GA18906@autoinstall.dev.6wind.com> References: <43326846-8C22-47F1-B48C-12FA02EF24E4@mellanox.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-dev] [PATCH v3 00/30] net/mlx5: cleanup for isolated mode 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, 10 Oct 2017 06:55:38 -0000 On Mon, Oct 09, 2017 at 07:35:01PM +0100, Ferruh Yigit wrote: > On 10/9/2017 6:17 PM, Yongseok Koh wrote: > > > >> On Oct 9, 2017, at 7:44 AM, Nelio Laranjeiro wrote: > >> > >> This series cleanups the control plane part and the way it uses the different > >> kind of objects (DPDK queues, Verbs Queues, ...). It has three goals: > >> > >> 1. Reduce the memory usage by sharing all possible objects. > >> > >> 2. Leave the configuration to the control plane and the creation/destruction > >> of queues to the dev_start/dev_stop() to have a better control on object > >> and easily apply the configuration. > >> > >> 3. Create all flows through the generic flow API, it will also help to > >> implement a detection collision algorithm as all flows are using the same > >> service and thus the same kind of object. > >> > >> Changes in v3: > >> > >> * Fix illegal access in Tx queue mp2mr cache. > >> * Fix some function documentations. > >> * Use priv_dev_traffic_restart() in vlan_filter_set(). > >> * Fix a bug in flow priorities. > >> > >> Changes in v2: > >> > >> * Rebase on upstream rdma-core/MLNX_OFED 4.2 > >> * Split in smaller patches > > > > As Nelio tagged in his patches, for all series, > > > > Acked-by: Yongseok Koh > > Series applied to dpdk-next-net/master, thanks. > > (There is initial value assignment update in 12/30 to fix icc warning, > please double check the update) Hi Ferruh, I've checked your modification and I agree with it. Thanks, -- Nélio Laranjeiro 6WIND