diff options
author | Ermal Luçi <eri@pfsense.org> | 2009-01-04 23:09:27 +0000 |
---|---|---|
committer | Ermal Luçi <eri@pfsense.org> | 2009-01-04 23:09:27 +0000 |
commit | 3a05416f12f43f302914e330bdb3697ae847d084 (patch) | |
tree | abd273e307a423b32fe3e38d5cc26db944a8df2d /etc/inc | |
parent | a2d8d3dd709dccb7123ea8d8e525491cc824bd95 (diff) | |
download | pfsense-3a05416f12f43f302914e330bdb3697ae847d084.zip pfsense-3a05416f12f43f302914e330bdb3697ae847d084.tar.gz |
Do not flush whole dummynet just for reloading it supports reconfiguration of pipes/queues. This helps with the upcomming CP per user bandwidth activation.
Diffstat (limited to 'etc/inc')
-rw-r--r-- | etc/inc/shaper.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/etc/inc/shaper.inc b/etc/inc/shaper.inc index a8ee7e5..43046af 100644 --- a/etc/inc/shaper.inc +++ b/etc/inc/shaper.inc @@ -3664,7 +3664,8 @@ function filter_generate_dummynet_rules() { if (!empty($dummynet_pipe_list)) { mwexec("kldload dummynet"); - mwexec("pfctl -F dummynet"); + /* XXX: Needs to be added code elsewhere to clear pipes/queues from kernel when not needed! */ + //mwexec("pfctl -F dummynet"); } $dn_rules = ""; |