From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.7 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id C29EAC433E9 for ; Tue, 2 Feb 2021 11:41:36 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 35C1C64F59 for ; Tue, 2 Feb 2021 11:41:36 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 35C1C64F59 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1D081240272; Tue, 2 Feb 2021 12:41:35 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 32FD724026F for ; Tue, 2 Feb 2021 12:41:33 +0100 (CET) IronPort-SDR: 8/p3vVw7F1UGey4riAdOBgkIuTuN72JZgNL+gdeyqGeRQqvetcz2iDSn/bc8h2jWFewEpUh54i F5RA9p8lvQwA== X-IronPort-AV: E=McAfee;i="6000,8403,9882"; a="160604983" X-IronPort-AV: E=Sophos;i="5.79,394,1602572400"; d="scan'208";a="160604983" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Feb 2021 03:41:32 -0800 IronPort-SDR: PZTcVDxCa5xp8CozKNU9fY9h4aY3MTlo6+CUzYyOr8WHoZvec6CPKfCSBeeu76PaIS/bdTV+pM Y/6OPrw7XtzQ== X-IronPort-AV: E=Sophos;i="5.79,394,1602572400"; d="scan'208";a="391424335" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.226.112]) ([10.213.226.112]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Feb 2021 03:41:31 -0800 To: Hemant Agrawal , dev@dpdk.org References: <20210120142723.14090-1-hemant.agrawal@nxp.com> <20210120142723.14090-7-hemant.agrawal@nxp.com> From: Ferruh Yigit Message-ID: Date: Tue, 2 Feb 2021 11:41:30 +0000 MIME-Version: 1.0 In-Reply-To: <20210120142723.14090-7-hemant.agrawal@nxp.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-dev] [PATCH 6/7] net/dpaa2: add traffic management driver 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 1/20/2021 2:27 PM, Hemant Agrawal wrote: > From: Gagandeep Singh > > Add basic support for scheduling and shaping on dpaa2 > platform. > > HW supports 2 level of scheduling and shaping. > However the current patch only support single level. > > Signed-off-by: Gagandeep Singh > Acked-by: Hemant Agrawal > --- > drivers/net/dpaa2/dpaa2_ethdev.c | 14 +- > drivers/net/dpaa2/dpaa2_ethdev.h | 5 + > drivers/net/dpaa2/dpaa2_tm.c | 626 ++++++++++++++++++++++++++++ > drivers/net/dpaa2/dpaa2_tm.h | 32 ++ > drivers/net/dpaa2/mc/dpni.c | 313 +++++++++++++- > drivers/net/dpaa2/mc/fsl_dpni.h | 210 +++++++++- > drivers/net/dpaa2/mc/fsl_dpni_cmd.h | 59 ++- > drivers/net/dpaa2/meson.build | 3 +- > 8 files changed, 1257 insertions(+), 5 deletions(-) > create mode 100644 drivers/net/dpaa2/dpaa2_tm.c > create mode 100644 drivers/net/dpaa2/dpaa2_tm.h Can you please update the documentation and the release notes for the traffic management support? And this is relative big chunk of code, and taken into account that it has been sent after -rc1, can you please confirm you want to get it for the -rc3, which won't give much time to test before the release? Or we can postpone it to next release to be on the safe side.