diff options
author | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2019-06-19 20:25:43 +0100 |
---|---|---|
committer | Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> | 2019-06-20 21:18:46 +0100 |
commit | 2cb8ae20790cccf89deb15b2e0f08f36b5035cfd (patch) | |
tree | a974e344d5c18de297f8ae88e38289cad15d7bd8 /package/network/utils | |
parent | 7888adb0aaf9d6e9e2bcf61982ac6d2fbdeb4b20 (diff) | |
download | upstream-2cb8ae20790cccf89deb15b2e0f08f36b5035cfd.tar.gz upstream-2cb8ae20790cccf89deb15b2e0f08f36b5035cfd.tar.bz2 upstream-2cb8ae20790cccf89deb15b2e0f08f36b5035cfd.zip |
iproute2: update ctinfo support
Follow upstream changes - header file changes only
no functional or executable changes, hence no package bump
required
Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk>
(cherry picked from commit a8f0c02f80fa0c7c55702770b3ca99f6db5405e7)
Diffstat (limited to 'package/network/utils')
-rw-r--r-- | package/network/utils/iproute2/patches/090-tc-add-support-for-action-act_ctinfo.patch | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/package/network/utils/iproute2/patches/090-tc-add-support-for-action-act_ctinfo.patch b/package/network/utils/iproute2/patches/090-tc-add-support-for-action-act_ctinfo.patch index 7c36fd9ba0..6335cca03a 100644 --- a/package/network/utils/iproute2/patches/090-tc-add-support-for-action-act_ctinfo.patch +++ b/package/network/utils/iproute2/patches/090-tc-add-support-for-action-act_ctinfo.patch @@ -1,4 +1,4 @@ -From b47fffb0f6dc285fe39613a5838e4e50f4f35202 Mon Sep 17 00:00:00 2001 +From dff8eadcab33209e040e77a5d56d5def04808144 Mon Sep 17 00:00:00 2001 From: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> Date: Fri, 15 Mar 2019 09:35:37 +0000 Subject: [PATCH] tc: add support for action act_ctinfo @@ -64,11 +64,11 @@ Signed-off-by: Kevin Darbyshire-Bryant <ldir@darbyshire-bryant.me.uk> Reviewed-by: Toke Høiland-Jørgensen <toke@redhat.com> --- include/uapi/linux/pkt_cls.h | 3 +- - include/uapi/linux/tc_act/tc_ctinfo.h | 34 ++++ + include/uapi/linux/tc_act/tc_ctinfo.h | 29 +++ man/man8/tc-ctinfo.8 | 170 ++++++++++++++++ tc/Makefile | 1 + tc/m_ctinfo.c | 268 ++++++++++++++++++++++++++ - 5 files changed, 475 insertions(+), 1 deletion(-) + 5 files changed, 470 insertions(+), 1 deletion(-) create mode 100644 include/uapi/linux/tc_act/tc_ctinfo.h create mode 100644 man/man8/tc-ctinfo.8 create mode 100644 tc/m_ctinfo.c @@ -89,10 +89,10 @@ index 95d0db2a..a6e7e176 100644 #define TCA_ID_MAX __TCA_ID_MAX diff --git a/include/uapi/linux/tc_act/tc_ctinfo.h b/include/uapi/linux/tc_act/tc_ctinfo.h new file mode 100644 -index 00000000..da803e05 +index 00000000..f5f26d95 --- /dev/null +++ b/include/uapi/linux/tc_act/tc_ctinfo.h -@@ -0,0 +1,34 @@ +@@ -0,0 +1,29 @@ +/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */ +#ifndef __UAPI_TC_CTINFO_H +#define __UAPI_TC_CTINFO_H @@ -121,11 +121,6 @@ index 00000000..da803e05 + +#define TCA_CTINFO_MAX (__TCA_CTINFO_MAX - 1) + -+enum { -+ CTINFO_MODE_DSCP = BIT(0), -+ CTINFO_MODE_CPMARK = BIT(1) -+}; -+ +#endif diff --git a/man/man8/tc-ctinfo.8 b/man/man8/tc-ctinfo.8 new file mode 100644 |