aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-2.6.38/110_fix_ecn_marking_ipv6.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/generic/patches-2.6.38/110_fix_ecn_marking_ipv6.patch')
-rw-r--r--target/linux/generic/patches-2.6.38/110_fix_ecn_marking_ipv6.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/target/linux/generic/patches-2.6.38/110_fix_ecn_marking_ipv6.patch b/target/linux/generic/patches-2.6.38/110_fix_ecn_marking_ipv6.patch
deleted file mode 100644
index a981884b1b..0000000000
--- a/target/linux/generic/patches-2.6.38/110_fix_ecn_marking_ipv6.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- a/include/net/inet_ecn.h
-+++ b/include/net/inet_ecn.h
-@@ -38,9 +38,19 @@ static inline __u8 INET_ECN_encapsulate(
- return outer;
- }
-
--#define INET_ECN_xmit(sk) do { inet_sk(sk)->tos |= INET_ECN_ECT_0; } while (0)
--#define INET_ECN_dontxmit(sk) \
-- do { inet_sk(sk)->tos &= ~INET_ECN_MASK; } while (0)
-+static inline void INET_ECN_xmit(struct sock *sk)
-+{
-+ inet_sk(sk)->tos |= INET_ECN_ECT_0;
-+ if (inet6_sk(sk) != NULL)
-+ inet6_sk(sk)->tclass |= INET_ECN_ECT_0;
-+}
-+
-+static inline void INET_ECN_dontxmit(struct sock *sk)
-+{
-+ inet_sk(sk)->tos &= ~INET_ECN_MASK;
-+ if (inet6_sk(sk) != NULL)
-+ inet6_sk(sk)->tclass &= ~INET_ECN_MASK;
-+}
-
- #define IP6_ECN_flow_init(label) do { \
- (label) &= ~htonl(INET_ECN_MASK << 20); \