From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jesus Sanchez-Palencia Subject: [PATCH v4 iproute2-next 0/3] Add support for ETF qdisc Date: Mon, 9 Jul 2018 16:56:10 -0700 Message-ID: <20180709235613.23642-1-jesus.sanchez-palencia@intel.com> Cc: jhs@mojatatu.com, xiyou.wangcong@gmail.com, jiri@resnulli.us, dsahern@gmail.com To: netdev@vger.kernel.org Return-path: Received: from mga14.intel.com ([192.55.52.115]:9288 "EHLO mga14.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754544AbeGJABf (ORCPT ); Mon, 9 Jul 2018 20:01:35 -0400 Sender: netdev-owner@vger.kernel.org List-ID: fixes since v3: - Add support for clock names with the "CLOCK_" prefix; - Print clock name on print_opt(); - Use strcasecmp() instead of strncasecmp(). The ETF (earliest txtime first) qdisc was recently merged into net-next [1], so this patchset adds support for it through the tc command line tool. An initial man page is also provided. The first commit in this series is adding an updated version of include/uapi/linux/pkt_sched.h and is not meant to be merged. It's provided here just as a convenience for those who want to easily build this patchset. [1] https://patchwork.ozlabs.org/cover/938991/ Jesus Sanchez-Palencia (2): uapi pkt_sched: Add etf info - DO NOT COMMIT man: Add initial manpage for tc-etf(8) Vinicius Costa Gomes (1): tc: Add support for the ETF Qdisc include/uapi/linux/pkt_sched.h | 21 ++++ man/man8/tc-etf.8 | 141 +++++++++++++++++++++++++ tc/Makefile | 1 + tc/q_etf.c | 181 +++++++++++++++++++++++++++++++++ 4 files changed, 344 insertions(+) create mode 100644 man/man8/tc-etf.8 create mode 100644 tc/q_etf.c -- 2.18.0