diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-12-17 14:56:15 -0800 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-12-17 14:56:15 -0800 |
commit | 02dff3180544e499e655a8fbd2fc2947bb8a4523 (patch) | |
tree | 53863ad03484c9bad429800dbbe3c9392472dffe /scripts | |
parent | f2c95566891659ab500053d7e19be220fb86934b (diff) | |
download | vyatta-cfg-qos-02dff3180544e499e655a8fbd2fc2947bb8a4523.tar.gz vyatta-cfg-qos-02dff3180544e499e655a8fbd2fc2947bb8a4523.zip |
Wait for ppp devices when updating interface traffic-policy
Bug 4922
Need to add wait loop because bringing up ppp can take some
time for interface to settle.
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/vyatta-qos.pl | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/scripts/vyatta-qos.pl b/scripts/vyatta-qos.pl index d80913d..7c4a014 100755 --- a/scripts/vyatta-qos.pl +++ b/scripts/vyatta-qos.pl @@ -145,6 +145,22 @@ sub start_interface { } } +## interface_exists('wan0.1') +# check if interface exists +# Note: retry to handle chicken-egg problem with ppp devices +# ppp devices can take a while to get named correctly +# ppp script won't see policy until it is committed +sub interface_exists { + my $ifname = shift; + my $sysfs = "/sys/class/net/$ifname"; + + for (my $i = 0; $i < 10; ++$i) { + return 1 if ( -d $sysfs ); + sleep 1; + } + return; +} + ## update_interface('eth0', 'my-shaper') # update policy to interface sub update_interface { @@ -155,7 +171,7 @@ sub update_interface { my $shaper = make_policy( $policy, $name, $direction ); exit 1 unless $shaper; - if ( ! -d "/sys/class/net/$device" ) { + unless (interface_exists($device)) { warn "$device not present yet, traffic-policy will be applied later\n"; return; } @@ -166,9 +182,8 @@ sub update_interface { # When doing debugging just echo the commands my $out; unless ($debug) { - open $out, '|-' - or exec qw:/sbin/tc -batch -: - or die "Tc setup failed: $!\n"; + open ( $out, '|-', '/sbin/tc -batch -' ) + or die "Tc setup failed: $!\n"; select $out; } |