From: nbd Date: Sun, 20 Mar 2011 01:21:49 +0000 (+0000) Subject: linux-atm: Solos card requires explicit buffer size to br2684ctl X-Git-Url: https://git.rohieb.name/openwrt.git/commitdiff_plain/7e17f34e6d13040b73e84707abcbbfe70520794f linux-atm: Solos card requires explicit buffer size to br2684ctl The default send buffer size of 8192 potentially can run past the end of the buffer (skb) and trash memory. Explicitly setting a limit is required. (Patch by Philip Prindeville) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26242 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/linux-atm/files/br2684ctl b/package/linux-atm/files/br2684ctl index 929e2b887..0c6fa9575 100755 --- a/package/linux-atm/files/br2684ctl +++ b/package/linux-atm/files/br2684ctl @@ -35,12 +35,15 @@ start_daemon() { local qos config_get qos "$cfg" qos + local sendsize + config_get sendsize "$cfg" sendsize + local circuit="$atmdev.$vpi.$vci" local pid="/var/run/br2684ctl-$circuit.pid" start-stop-daemon -S -b -x /usr/sbin/br2684ctl -m -p "$pid" -- \ -c "$unit" -e "$encaps" -p "$payload" \ - -a "$circuit" ${qos:+-q "$qos"} + -a "$circuit" ${qos:+-q "$qos"} ${sendsize:+-s "$sendsize"} } start() {