From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 86453A052E; Tue, 21 Jan 2020 09:51:43 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 88A5B2C23; Tue, 21 Jan 2020 09:51:42 +0100 (CET) Received: from mail-io1-f67.google.com (mail-io1-f67.google.com [209.85.166.67]) by dpdk.org (Postfix) with ESMTP id 2DD1DF11 for ; Tue, 21 Jan 2020 09:51:41 +0100 (CET) Received: by mail-io1-f67.google.com with SMTP id b10so1974971iof.11 for ; Tue, 21 Jan 2020 00:51:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=x9YeZoSM/lLJBG7HEdDNyreELy3Nl5hnRg1eCYqYy4w=; b=oRSDb4FFyBhIPq4x4uu777yp7tAJ+T34nfuNWpgbpiSxj5Bxyc/SzYCUdTnTUfDnIR yYSCm0i+OEiQFGlXBbFTWSanljxgLPjXI8VckxboQV05VXjxa/3lLJ436KgmQvmwLJ9Z LXHgAY1FIyhpDWgmWy9pqOBeU1QtQZdbeKNvGMkK44j1BULmQdOZBW8Pguq5M8X/iAo0 +tIPljTaR1kqDmN6vGeVRIurvi0wVsDfiqaPoIzh03dPFnT5ZYtibvVwQOq/VnMA1NYQ wi6n6ZcXKewvb18nrGiiU8yR6zFGyfLRnzF+3fh7YKcM2NMa8bgmYSiPTWvpI1Qs2oLp yZLg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=x9YeZoSM/lLJBG7HEdDNyreELy3Nl5hnRg1eCYqYy4w=; b=eDMGt6bquvqR7VMUrPG4ML6tO34rk0eLUdPMUy9O6UTjzhzqe+rdnDoOUxnqn2b8bv e94WxhTQBron7WxbxXJW+FMNVqNrCR+yE/wEWbcrhHDNOo/PB8SwcsY9aAoa1t+OVp/6 sWKeXCWR6q37aoqgxMVwpFF5hiR6vRsO2JHPlaRt5+KjR6dJyh1WK/mLVH203AQvHSpS rRw7iUUd8hwcGty5pc1xjrAEvM8xsOmn4No/G+LdM+Q1A8bULvzPGlfUXkYPYLvsMpKW 3L9sO/7hAD88EugC7VkA2zhWN/WwMWXYYgdYeU5JVFmupbAc16EI/vTtzUM7vZTeNsB0 oqZw== X-Gm-Message-State: APjAAAVoVc3DgwQ1FbTq7JPvqjElniWt6c21LAQZJKfTqiR2hTyFhxn5 bEo7V4KWro8ClmbV4Wqi+Jm03Xg5HBDy6VInO/M= X-Google-Smtp-Source: APXvYqzPWHZvK0vstRoYWioYqXGfp2K5YsM++jTxXKNaExwtI7NSvnz2sgaryjB1fsggUpjq7+M7VFxZcLwpRbWaVvQ= X-Received: by 2002:a02:c995:: with SMTP id b21mr2470004jap.112.1579596700422; Tue, 21 Jan 2020 00:51:40 -0800 (PST) MIME-Version: 1.0 References: <20191204144345.5736-1-pbhagavatula@marvell.com> <20200111134730.5329-1-pbhagavatula@marvell.com> <20200111134730.5329-4-pbhagavatula@marvell.com> In-Reply-To: <20200111134730.5329-4-pbhagavatula@marvell.com> From: Jerin Jacob Date: Tue, 21 Jan 2020 14:21:24 +0530 Message-ID: To: Pavan Nikhilesh Cc: Jerin Jacob , "Ananyev, Konstantin" , Marko Kovacevic , Ori Kam , Bruce Richardson , Radu Nicolau , Akhil Goyal , Tomasz Kantecki , Sunil Kumar Kori , dpdk-dev Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v3 03/11] examples/l3fwd: add event device configuration 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Sat, Jan 11, 2020 at 7:18 PM wrote: > > From: Pavan Nikhilesh > > Add event device configuration based on the capabilities of the > probed event device. > > Signed-off-by: Pavan Nikhilesh Looks like it has a similar bug[1] that has been found in l2fwd-event. If so, please fix it. [1] commit 345a22d5ec1ab70e9d965ae50558049e6c0f2f8d Author: Pavan Nikhilesh Date: Fri Dec 20 19:57:41 2019 +0530 examples/l2fwd-event: fix event device config Always enable implicit release since we don't support explicit release in datapath. Master lcore is used only for printing stats so don't allocate event port for it. Fix service launch for event device without distributed scheduling. Fixes: bcb6f841d42a ("examples/l2fwd-event: setup service core") Cc: stable@dpdk.org Signed-off-by: Pavan Nikhilesh > --- > examples/l3fwd/l3fwd_event.c | 3 + > examples/l3fwd/l3fwd_event.h | 36 ++++++++++ > examples/l3fwd/l3fwd_event_generic.c | 75 ++++++++++++++++++++- > examples/l3fwd/l3fwd_event_internal_port.c | 78 +++++++++++++++++++++- > 4 files changed, 190 insertions(+), 2 deletions(-) >