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=-4.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no 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 80E46C433E4 for ; Tue, 21 Jul 2020 19:31:20 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 5E0122072E for ; Tue, 21 Jul 2020 19:31:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1595359880; bh=MNvVzIEdaZu1xtvtvEhKCAgoe9Ey0Nt5/vyodyNzxno=; h=Date:From:To:Cc:Subject:In-Reply-To:References:List-ID:From; b=baFZda3r6t5H1URgMBBgCau9r+CiYScQaGha2dNcXGhOOhapiKjnxYGESETA90/94 lEz7x2jifxTtYQG/nn0aMu5xVztO3jUlzO7xYfQulfi04meeVaKmlLXjeSoKh0pzUS mntkwaGRmZsZdbG5UDa7l7vQINJH7JABL55sdzA4= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730654AbgGUTbT (ORCPT ); Tue, 21 Jul 2020 15:31:19 -0400 Received: from mail.kernel.org ([198.145.29.99]:36500 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728691AbgGUTbT (ORCPT ); Tue, 21 Jul 2020 15:31:19 -0400 Received: from kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com (unknown [163.114.132.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id DE59E20717; Tue, 21 Jul 2020 19:31:18 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1595359879; bh=MNvVzIEdaZu1xtvtvEhKCAgoe9Ey0Nt5/vyodyNzxno=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=HDqpqbTUFT9zdLx6EeCgpsxslXAeYjtuXVfvbuGP/mrKCtyEPtkxg0/WJgzGofnvW xZsUPCkMuol5SlPttxqmvA4XiiYUzm87Djh0001DP5oUU1GJsYYrRDEZsV3E6Mh+C8 JvVyj3346QDO6VNPYClf4tVatVz6hlKHLSBE3Kj4= Date: Tue, 21 Jul 2020 12:31:17 -0700 From: Jakub Kicinski To: Ioana Ciornei Cc: davem@davemloft.net, netdev@vger.kernel.org Subject: Re: [PATCH net-next 0/3] dpaa2-eth: add support for TBF offload Message-ID: <20200721123117.3eca460f@kicinski-fedora-pc1c0hjn.dhcp.thefacebook.com> In-Reply-To: <20200721163825.9462-1-ioana.ciornei@nxp.com> References: <20200721163825.9462-1-ioana.ciornei@nxp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org On Tue, 21 Jul 2020 19:38:22 +0300 Ioana Ciornei wrote: > This patch set adds support for TBF offload in dpaa2-eth. > The first patch restructures how the .ndo_setup_tc() callback is > implemented (each Qdisc is treated in a separate function), the second > patch just adds the necessary APIs for configuring the Tx shaper and the > last one is handling TC_SETUP_QDISC_TBF and configures as requested the > shaper. Reviewed-by: Jakub Kicinski