1. 06 Sep, 2015 1 commit
  2. 05 Sep, 2015 1 commit
  3. 04 Sep, 2015 8 commits
  4. 03 Sep, 2015 2 commits
  5. 02 Sep, 2015 1 commit
  6. 31 Aug, 2015 3 commits
  7. 29 Aug, 2015 2 commits
  8. 28 Aug, 2015 3 commits
  9. 26 Aug, 2015 3 commits
  10. 25 Aug, 2015 2 commits
  11. 24 Aug, 2015 1 commit
  12. 20 Aug, 2015 2 commits
  13. 18 Aug, 2015 6 commits
  14. 17 Aug, 2015 3 commits
  15. 12 Aug, 2015 1 commit
  16. 11 Aug, 2015 1 commit
    • Wolfgang Bumiller's avatar
      bridgevlanport: replace sed pipe with substitution · 0bba4496
      Wolfgang Bumiller authored
      The previous code stripped *all* combinations of zero or
      more letters and digits followed by a dot of an interface
      name to retrieve the VLANID. At the same time the supposedly
      opposite code for IF_VLAN_RAW_DEVICE only actually extracts
      the part up to the *first* dot. Thus an interface named
      'a.b.0' would have a VLANID of 0 and a raw device name of
      just 'a'.
      I also don't see a reason to limit the removed portions to
      alphanumeric characters. I.e. an interface named tap-test.0
      would result in a VLANID of 'tap-0' and an
      IF_VLAN_RAW_DEVICE of 'test'.
      
      A simple shell substitution seems to do a much better job
      and is more efficient than forking out two processes with a
      pipe.
      0bba4496