From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cong Wang Subject: Re: [PATCH net-next v4 3/4] net/tc: introduce TC_ACT_REINSERT. Date: Thu, 26 Jul 2018 16:29:04 -0700 Message-ID: References: <9f1f9426acce7764e0376a1bcfb44b49f6e15eb3.1532611319.git.pabeni@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Cc: Linux Kernel Network Developers , Jamal Hadi Salim , Jiri Pirko , Daniel Borkmann , Marcelo Ricardo Leitner , Eyal Birger , David Miller To: Paolo Abeni Return-path: Received: from mail-pg1-f195.google.com ([209.85.215.195]:35781 "EHLO mail-pg1-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731587AbeG0AsS (ORCPT ); Thu, 26 Jul 2018 20:48:18 -0400 Received: by mail-pg1-f195.google.com with SMTP id e6-v6so2077743pgv.2 for ; Thu, 26 Jul 2018 16:29:16 -0700 (PDT) In-Reply-To: <9f1f9426acce7764e0376a1bcfb44b49f6e15eb3.1532611319.git.pabeni@redhat.com> Sender: netdev-owner@vger.kernel.org List-ID: On Thu, Jul 26, 2018 at 7:35 AM Paolo Abeni wrote: > > This is similar TC_ACT_REDIRECT, but with a slightly different > semantic: > - on ingress the mirred skbs are passed to the target device > network stack without any additional check not scrubbing. > - the rcu-protected stats provided via the tcf_result struct > are updated on error conditions. > > This new tcfa_action value is not exposed to the user-space > and can be used only internally by clsact. > > v1 -> v2: do not touch TC_ACT_REDIRECT code path, introduce > a new action type instead > > v2 -> v3: > - rename the new action value TC_ACT_REINJECT, update the > helper accordingly > - take care of uncloned reinjected packets in XDP generic > hook > > v3 -> v4: > - renamed again the new action value (JiriP) > > Signed-off-by: Paolo Abeni Acked-by: Cong Wang > --- > Note: this patch still touch only overlimits, even there is some > agreement to touch (also) drops on reinsert/mirred failure, but > such change is independent to this series Totally agree. Thanks!