From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A15FD37B97 for ; Tue, 6 Jun 2023 15:00:57 +0000 (UTC) Received: from mout-p-101.mailbox.org (mout-p-101.mailbox.org [IPv6:2001:67c:2050:0:465::101]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 072B3129 for ; Tue, 6 Jun 2023 08:00:33 -0700 (PDT) Received: from smtp2.mailbox.org (smtp2.mailbox.org [IPv6:2001:67c:2050:b231:465::2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-384) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mout-p-101.mailbox.org (Postfix) with ESMTPS id 4QbDDY6Fpdz9snK; Tue, 6 Jun 2023 17:00:29 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pmachata.org; s=MBO0001; t=1686063629; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=XDFZ9Wp3o1TSghs9SIWzxnbLmrsHi6dpifVbT0qVfXU=; b=vJdkxbVp93UpY0dYaWAEbqLZG+OjKncCoP70usSGOQPq3XMYUb+qNlMQDVH2xxNVfWCAhI DoY8UTweaniVP4bfVk6W7J4AAMloJOfCZbLaMI+sz2dweEGOMn4zBbkjw5Qd7FrqXjLJt+ rcU02AAanv/+Q/n9HDqtV5so6KDBVjPRFaWD+ZJkyGBqza9wUPRJHaSAKwVkqj/MYTxq3S BcusU5k2FfyF1oEBbCfUg0OOyKHtvowuBoMjN5aqiRokMOaEiAapUYsTuS3UWmxfMnFdZv KHttMin3oZIINCVB3Mhk6DLdOm/bfm8XP77zYeVtiBq4tkf6DfUncl3Be1VyLQ== References: <20230510-dcb-rewr-v3-0-60a766f72e61@microchip.com> <20230510-dcb-rewr-v3-8-60a766f72e61@microchip.com> From: Petr Machata To: Daniel Machon Cc: netdev@vger.kernel.org, dsahern@kernel.org, stephen@networkplumber.org, petrm@nvidia.com, UNGLinuxDriver@microchip.com Subject: Re: [PATCH iproute2-next v3 08/12] dcb: rewr: add new dcb-rewr subcommand Date: Tue, 06 Jun 2023 15:17:24 +0200 In-reply-to: <20230510-dcb-rewr-v3-8-60a766f72e61@microchip.com> Message-ID: <87jzwg63g4.fsf@nvidia.com> Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain X-Rspamd-Queue-Id: 4QbDDY6Fpdz9snK X-Spam-Status: No, score=-2.8 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,RCVD_IN_DNSWL_LOW,SPF_HELO_NONE, SPF_PASS,T_SCC_BODY_TEXT_LINE,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on lindbergh.monkeyblade.net Daniel Machon writes: > Add a new subcommand 'rewr' for configuring the in-kernel DCB rewrite > table. The rewrite table of the kernel is similar to the APP table, > therefore, much of the existing bookkeeping code from dcb-app, can be > reused in the dcb-rewr implementation. > > Initially, only support for configuring PCP and DSCP-based rewrite has > been added. > > Signed-off-by: Daniel Machon Reviewed-by: Petr Machata