summaryrefslogtreecommitdiffstats
path: root/target/linux/ipq40xx/patches-6.1/998-lantiq-atm-hacks.patch
diff options
context:
space:
mode:
authorRobert Marko <robimarko@gmail.com>2023-08-14 13:16:12 +0200
committerChristian Marangi <ansuelsmth@gmail.com>2023-09-17 21:00:23 +0200
commitbd242a42a6142c4c7c5cf69ac836a31276e86155 (patch)
tree04de1ad472c224c0b9da591cc05b6a575ec0e075 /target/linux/ipq40xx/patches-6.1/998-lantiq-atm-hacks.patch
parent70dfb696c03bcfc1231ebdf16d8ddbae8d7eccf7 (diff)
downloadopenwrt-bd242a42a6142c4c7c5cf69ac836a31276e86155.tar.gz
openwrt-bd242a42a6142c4c7c5cf69ac836a31276e86155.tar.bz2
openwrt-bd242a42a6142c4c7c5cf69ac836a31276e86155.zip
ipq40xx: copy 5.15 patches and config to 6.1
Copy the 5.15 patches and config as a base for 6.1 support. Signed-off-by: Robert Marko <robimarko@gmail.com>
Diffstat (limited to 'target/linux/ipq40xx/patches-6.1/998-lantiq-atm-hacks.patch')
-rw-r--r--target/linux/ipq40xx/patches-6.1/998-lantiq-atm-hacks.patch43
1 files changed, 43 insertions, 0 deletions
diff --git a/target/linux/ipq40xx/patches-6.1/998-lantiq-atm-hacks.patch b/target/linux/ipq40xx/patches-6.1/998-lantiq-atm-hacks.patch
new file mode 100644
index 0000000000..c15a4b3ae3
--- /dev/null
+++ b/target/linux/ipq40xx/patches-6.1/998-lantiq-atm-hacks.patch
@@ -0,0 +1,43 @@
+From: John Crispin <blogic@openwrt.org>
+Date: Fri, 3 Aug 2012 10:27:25 +0200
+Subject: [PATCH 04/36] MIPS: lantiq: add atm hack
+
+Signed-off-by: John Crispin <blogic@openwrt.org>
+--- a/include/uapi/linux/atm.h
++++ b/include/uapi/linux/atm.h
+@@ -131,8 +131,14 @@
+ #define ATM_ABR 4
+ #define ATM_ANYCLASS 5 /* compatible with everything */
+
++#define ATM_VBR_NRT ATM_VBR
++#define ATM_VBR_RT 6
++#define ATM_UBR_PLUS 7
++#define ATM_GFR 8
++
+ #define ATM_MAX_PCR -1 /* maximum available PCR */
+
++
+ struct atm_trafprm {
+ unsigned char traffic_class; /* traffic class (ATM_UBR, ...) */
+ int max_pcr; /* maximum PCR in cells per second */
+@@ -155,6 +161,9 @@ struct atm_trafprm {
+ unsigned int adtf :10; /* ACR Decrease Time Factor (10-bit) */
+ unsigned int cdf :3; /* Cutoff Decrease Factor (3-bit) */
+ unsigned int spare :9; /* spare bits */
++ int scr; /* sustained rate in cells per second */
++ int mbs; /* maximum burst size (MBS) in cells */
++ int cdv; /* Cell delay variation */
+ };
+
+ struct atm_qos {
+--- a/net/atm/proc.c
++++ b/net/atm/proc.c
+@@ -141,7 +141,7 @@ static void *vcc_seq_next(struct seq_fil
+ static void pvc_info(struct seq_file *seq, struct atm_vcc *vcc)
+ {
+ static const char *const class_name[] = {
+- "off", "UBR", "CBR", "VBR", "ABR"};
++ "off","UBR","CBR","NTR-VBR","ABR","ANY","RT-VBR","UBR+","GFR"};
+ static const char *const aal_name[] = {
+ "---", "1", "2", "3/4", /* 0- 3 */
+ "???", "5", "???", "???", /* 4- 7 */