1ec7409f3f050c57298b94222263f82a71d1fa07
[openwrt.git] / package / mac80211 / patches / 070-disable_codel.patch
1 --- a/compat/scripts/gen-compat-config.sh
2 +++ b/compat/scripts/gen-compat-config.sh
3 @@ -62,16 +62,3 @@ fi
4  if [[ ${CONFIG_COMPAT_KERNEL_2_6_36} = "y" ]]; then
5         echo "export CONFIG_COMPAT_KFIFO=y"
6  fi
7 -
8 -if [[ ${CONFIG_COMPAT_KERNEL_3_5} = "y" ]]; then
9 -       # We don't have 2.6.24 backport support yet for Codel / FQ CoDel
10 -       # For those who want to try this is what is required that I can tell
11 -       # so far:
12 -       #  * struct Qdisc_ops
13 -       #       - init and change callback ops use a different argument dataype
14 -       #       - you need to parse data received from userspace differently
15 -       if [[ ${CONFIG_COMPAT_KERNEL_2_6_25} != "y" ]]; then
16 -               echo "export CONFIG_COMPAT_NET_SCH_CODEL=m"
17 -               echo "export CONFIG_COMPAT_NET_SCH_FQ_CODEL=m"
18 -       fi
19 -fi