瀏覽代碼

gluon-core: reduce mac80211 fq_codel memory limit to 256KB on devices with 32MB RAM

Matthias Schiffer 6 年之前
父節點
當前提交
e63c6ca01f
共有 1 個文件被更改,包括 3 次插入3 次删除
  1. 3 3
      package/gluon-core/files/etc/hotplug.d/ieee80211/01-gluon-core-codel-memusage

+ 3 - 3
package/gluon-core/files/etc/hotplug.d/ieee80211/01-gluon-core-codel-memusage

@@ -1,8 +1,8 @@
 #!/bin/sh
-if [ "${ACTION}" = "add" ]; then
 
+if [ "${ACTION}" = 'add' ]; then
 	RAM=$(awk '/MemTotal/ {print $2}' /proc/meminfo)
-	if [ "$RAM" -lt $((48*1024)) ]; then
-		echo "fq_memory_limit 1048576" > "/sys/kernel/debug/ieee80211/$DEVICENAME/aqm"
+	if [ "$RAM" -le $((32*1024)) ]; then
+		echo 'fq_memory_limit 262144' > "/sys/kernel/debug/ieee80211/$DEVICENAME/aqm"
 	fi
 fi