Skip to content

Commit

Permalink
Merge branch 'master' of github.com:dtaht/ceropackages-3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Täht committed Jul 11, 2012
2 parents 2ea6960 + 0b272f7 commit 973df75
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 12 deletions.
2 changes: 1 addition & 1 deletion net/babelm/Makefile
Expand Up @@ -7,7 +7,7 @@

include $(TOPDIR)/rules.mk

PKG_NAME:=babelm
PKG_NAME:=babeld
PKG_VERSION:=20120608-git-1
PKG_RELEASE:=1

Expand Down
2 changes: 1 addition & 1 deletion net/debloat/Makefile
Expand Up @@ -8,7 +8,7 @@
include $(TOPDIR)/rules.mk

PKG_NAME:=debloat
PKG_VERSION:=4
PKG_VERSION:=5
PKG_RELEASE:=1

include $(INCLUDE_DIR)/package.mk
Expand Down
19 changes: 11 additions & 8 deletions net/debloat/files/debloat
Expand Up @@ -24,7 +24,7 @@ params = { "MDISC", "BIGDISC", "NORMDISC", "BINS", "MAX_HWQ_BYTES",
"OVERHEAD", "LINKLAYER", "MPU", "PPPOE", "ADSL",
"NOPRIOHOSTSRC","NOPRIOHOSTDST","NOPRIOPORTSRC",
"NOPRIOPORTDST", "EST_MIN", "EST_MAX", "HEADDROP", "ECNMASK",
"qlen_vo", "qlen_vi", "qlen_be", "qlen_bk" }
"qlen_vo", "qlen_vi", "qlen_be", "qlen_bk", "CODEL_LL_QUANTUM" }

-- Useful defaults

Expand All @@ -51,9 +51,10 @@ env = { ["TC"] = "/sbin/tc",
["qlen_vo"] = 2,
["qlen_vi"] = 3,
["qlen_be"] = 3,
["qlen_bk"] = 32,
["MTU"] = 1500
}
["qlen_bk"] = 3,
["MTU"] = 1500,
["CODEL_LL_QUANTUM"] = 1514
}

wireless_debug = "/sys/kernel/debug/ieee80211/"
qlens = { "qlen_vo", "qlen_vi", "qlen_bk", "qlen_be" }
Expand Down Expand Up @@ -1240,10 +1241,12 @@ end
local function wireless_setup_ll(queuetype)
qa("handle 1 root mq")
qap("1:1 handle %x %s limit 100 ecn target 10ms",VO, queuetype)
qap("1:2 handle %x %s limit 100 ecn target 27ms quantum 3028",VI, queuetype)
qap("1:3 handle %x %s limit 400 ecn target 27ms quantum 3028",BE, queuetype)
qap("1:4 handle %x %s limit 600 ecn target 50ms",BK, queuetype)
qap("1:1 handle %x %s limit 100 noecn target 5ms",VO, queuetype)
qap("1:2 handle %x %s limit 200 ecn target 13ms quantum %d",VI, queuetype, env.CODEL_LL_QUANTUM)
qap("1:3 handle %x %s limit 400 ecn target 13ms quantum %d",BE, queuetype, env.CODEL_LL_QUANTUM)
-- qap("1:2 handle %x %s limit 200 ecn target 27ms quantum 3028",VI, queuetype)
-- qap("1:3 handle %x %s limit 400 ecn target 27ms quantum 3028",BE, queuetype)
qap("1:4 handle %x %s limit 600 noecn target 50ms",BK, queuetype)
wireless_filters()
end
Expand Down
4 changes: 2 additions & 2 deletions net/quagga/Makefile
Expand Up @@ -9,13 +9,13 @@ include $(TOPDIR)/rules.mk

PKG_NAME:=quagga

PKG_VERSION:=0.99.17.10-10-git
PKG_VERSION:=0.99.17.11-2-git
PKG_RELEASE:=1

PKG_SOURCE_PROTO:=git
PKG_SOURCE_URL:=git://github.com/Quagga-RE/quagga-RE.git
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_VERSION:=fcc42fb073ceddcdfa11fe697b654947ec2d5366
PKG_SOURCE_VERSION:=f6867153a9169406d0d1ec083acab977984d49ac
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)

#PKG_SOURCE_URL:=http://devresources.linux-foundation.org/dev/iproute2/download/
Expand Down
3 changes: 3 additions & 0 deletions net/quagga/files/babeld.conf
Expand Up @@ -27,6 +27,7 @@ router babel
network gw01
network gw11
redistribute connected
! redistribute kernel uncomment if you are a default gw
!
interface ge00
babel wired
Expand All @@ -53,6 +54,8 @@ interface gw01
! babel authentication mode sha512 key-chain home
interface gw11
babel wireless
! the rxcost difference is there to give 5.x ghz a preference in case of tie
babel rxcost 253
! Allow buddy2 to get on your net via 5ghz only
! babel authentication mode sha512 key-chain buddy2
! babel authentication mode sha512 key-chain home
Expand Down

0 comments on commit 973df75

Please sign in to comment.