From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id D566CA0C46; Fri, 23 Jul 2021 13:36:45 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 939B440040; Fri, 23 Jul 2021 13:36:45 +0200 (CEST) Received: from mail-il1-f169.google.com (mail-il1-f169.google.com [209.85.166.169]) by mails.dpdk.org (Postfix) with ESMTP id 9703D4003C for ; Fri, 23 Jul 2021 13:36:44 +0200 (CEST) Received: by mail-il1-f169.google.com with SMTP id o7so49236ilh.11 for ; Fri, 23 Jul 2021 04:36:44 -0700 (PDT) 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=3vT77v7PpgSe3PrpZKs7TjfPgn79bEQ1XxEAFKg9dv8=; b=Pd9juw5dnwFBiEFsTeRiX5RSlcewwYdfOAgE9hiqfs6VMxQnr3hNJl5VZ02EqRaMK1 2RwcV+cZHAVgMc2jTeV8mGB6JCBlNzQUl8imdjZCritruzOHZXavTs1W572lV+JcIleG vFCDXDL5HrK75dgOMAMKyoxHmuItBApkGghpGtreSvwpzGeK+5CpAs3+shxMdOI69fma unHuPd84nvvGVkCylCmh25F7XNNq2RX4ezJoQvKSe5sufbVxWs9erEbtQr/jwY1Xl7mn YHiRZiXoypiyQJ+vuZcDocH4rujDRoeQT68uO/UUwFmV5mhWso/72Uf1fIO2GQg7p11N BK3w== 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=3vT77v7PpgSe3PrpZKs7TjfPgn79bEQ1XxEAFKg9dv8=; b=ZvaTAxi9IBU6sa+p32Tj/pvMbW8OiU4EOcZrbnGpUdG2gQ743SEWFEMDKXtpRNROJk UlnotGlD5o2HKv3fYpc9z4zgK7idQTSZNb2OeMAj/d1LH0fSk2F7dZEYCoZyg7JWLVV7 jhahe7aW7txnBEi6pVPyXigbcwy41qMgA92kDyfPGdtvKgnluCT2n/mpQ8s+Wxhm/9Pp uol30sVmPiyYF2YHnOg8aCilyNxzyZydgJfDTwl1Non+9PGL3yHYE9pmVxaX7Z9QvKGd AW5Mw5iI6dHr1fJ1613zkO3DpVumfK/AxySNpMIEs+IVese+UDcaZuJ1zqIpk7WDB1ag wMFw== X-Gm-Message-State: AOAM533jLaATksOkE36JTsRG7PRblvjZlwrNiI8mdb1eCXUTz86GcWR1 wE0ybiYmu9LsskbCtpOu92HOnjFH3aB/Ivpm8G4= X-Google-Smtp-Source: ABdhPJze8kWJLRs9DfpRoqhpjSSYd/2IRFPCGyvKDOmZKIL+LLG6Fx2vjXjCj4azuzb6H8uGKgssv1IsWXAdoZpMWWo= X-Received: by 2002:a05:6e02:12ea:: with SMTP id l10mr3265028iln.130.1627040204031; Fri, 23 Jul 2021 04:36:44 -0700 (PDT) MIME-Version: 1.0 References: <20210723081222.4176279-1-s.v.naga.harish.k@intel.com> In-Reply-To: <20210723081222.4176279-1-s.v.naga.harish.k@intel.com> From: Jerin Jacob Date: Fri, 23 Jul 2021 17:06:18 +0530 Message-ID: To: "Naga Harish K, S V" Cc: "Jayatheerthan, Jay" , dpdk-dev Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] eventdev: remove event port config override in tx adapter X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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 Fri, Jul 23, 2021 at 1:42 PM Naga Harish K, S V wrote: > > The event port config set by application is modified in > default configuration callback function. This patch removes > this override and use application configured event port > config value. Is this enhancement or bug fix? If it is a bug fix, please add Fixes: and update the git subject. We will take it in RC3. > > Signed-off-by: Naga Harish K, S V > --- > lib/eventdev/rte_event_eth_tx_adapter.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/lib/eventdev/rte_event_eth_tx_adapter.c b/lib/eventdev/rte_event_eth_tx_adapter.c > index db260bfb68..18c0359db7 100644 > --- a/lib/eventdev/rte_event_eth_tx_adapter.c > +++ b/lib/eventdev/rte_event_eth_tx_adapter.c > @@ -286,7 +286,6 @@ txa_service_conf_cb(uint8_t __rte_unused id, uint8_t dev_id, > return ret; > } > > - pc->event_port_cfg = 0; > ret = rte_event_port_setup(dev_id, port_id, pc); > if (ret) { > RTE_EDEV_LOG_ERR("failed to setup event port %u\n", > -- > 2.25.1 >