From patchwork Fri Jan 25 02:33:28 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcelo Leitner X-Patchwork-Id: 1030785 Return-Path: X-Original-To: patchwork-incoming-netdev@ozlabs.org Delivered-To: patchwork-incoming-netdev@ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=vger.kernel.org (client-ip=209.132.180.67; helo=vger.kernel.org; envelope-from=netdev-owner@vger.kernel.org; receiver=) Authentication-Results: ozlabs.org; dmarc=fail (p=none dis=none) header.from=redhat.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 43m34L6zd6z9s7T for ; Fri, 25 Jan 2019 13:33:54 +1100 (AEDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728818AbfAYCdy (ORCPT ); Thu, 24 Jan 2019 21:33:54 -0500 Received: from mx1.redhat.com ([209.132.183.28]:45428 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728797AbfAYCdx (ORCPT ); Thu, 24 Jan 2019 21:33:53 -0500 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id BAD5D30EF86; Fri, 25 Jan 2019 02:33:52 +0000 (UTC) Received: from localhost.localdomain (ovpn-116-7.gru2.redhat.com [10.97.116.7]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 876C967155; Fri, 25 Jan 2019 02:33:47 +0000 (UTC) Received: by localhost.localdomain (Postfix, from userid 1000) id 1A2E6180CDE; Fri, 25 Jan 2019 00:33:46 -0200 (-02) From: Marcelo Ricardo Leitner To: Guy Shattah , Marcelo Leitner , Aaron Conole , John Hurley , Simon Horman , Justin Pettit , Gregory Rose , Eelco Chaudron , Flavio Leitner , Florian Westphal , Jiri Pirko , Rashid Khan , Sushil Kulkarni , Andy Gospodarek , Roi Dayan , Yossi Kuperman , Or Gerlitz , Rony Efraim , "davem@davemloft.net" Cc: netdev@vger.kernel.org Subject: [RFC PATCH iproute2 0/5] Initial, PoC implementation of sw datapath of tc+CT Date: Fri, 25 Jan 2019 00:33:28 -0200 Message-Id: In-Reply-To: References: MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.12 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.29]); Fri, 25 Jan 2019 02:33:53 +0000 (UTC) Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Same comments as for the kernel patches. Whatever is not in accordance to the planning RFC, is because it is still in progress. Marcelo Ricardo Leitner (5): flower: add support for CT fields act_ct: first import act_ct: add support for commit flag act/ct: add support for force flag act/ct: add support for clear flag include/uapi/linux/pkt_cls.h | 9 + include/uapi/linux/tc_act/tc_ct.h | 38 ++++ tc/Makefile | 1 + tc/f_flower.c | 158 +++++++++++++- tc/m_ct.c | 337 ++++++++++++++++++++++++++++++ 5 files changed, 541 insertions(+), 2 deletions(-) create mode 100644 include/uapi/linux/tc_act/tc_ct.h create mode 100644 tc/m_ct.c