1. 20 Aug, 2012 6 commits
  2. 17 Aug, 2012 2 commits
  3. 16 Aug, 2012 1 commit
  4. 13 Aug, 2012 4 commits
    • Florian Westphal's avatar
      add ematch man page · c487348a
      Florian Westphal authored
      c487348a
    • Florian Westphal's avatar
      tc: add ipset ematch · 8194411a
      Florian Westphal authored
      example usage:
      tc filter add dev $dev parent $id: basic match not ipset'(foobar src)' ..
      
      also updates iproute2/ematch_map, else tc complains:
      Error: Unable to find ematch "ipset" in /etc/iproute2/ematch_map
      Please assign a unique ID to the ematch kind the suggested entry is:
              8       ipset
      
      when trying to use this ematch.
      
      (text ematch (5) only exists in kernel, a vlan ematch (6) exists neither in
       kernel nor userspace, but kernel headers define TCF_EM_VLAN == 6).
      8194411a
    • Mike Frysinger's avatar
      Fix regression with 'ip address show' · af9d406f
      Mike Frysinger authored
      `ip a s` no longer shows addresses since 3.4.0 works, but 3.5.0,
      
      the simple test case:
      make clean && make -j -s && ./ip/ip a s lo
      
      before that change, i would get:
      1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
          link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
          inet 127.0.0.1/8 scope host lo
          inet6 ::1/128 scope host
             valid_lft forever preferred_lft forever
      
      but after, i now get:
      1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
          link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
      
      seems like the bug was introduced in the middle of that patch:
      
      -	if (filter.family != AF_PACKET) {
      +	if (filter.family && filter.family != AF_PACKET) {
      +		if (filter.oneline)
      +			no_link = 1;
      +
       		if (rtnl_wilddump_request(&rth, filter.family, RTM_GETADDR) < 0) {
       			perror("Cannot send dump request");
       			exit(1);
      
      if i revert the change to the if statement there, `ip a s` works for me again.
      af9d406f
    • Xose Vazquez Perez's avatar
      Fix Makefile's · 6d10827c
      Xose Vazquez Perez authored
      Missing space in man8 Makefile and install bridge command with
      correct name
      6d10827c
  5. 01 Aug, 2012 9 commits
  6. 31 Jul, 2012 1 commit
  7. 26 Jul, 2012 1 commit
  8. 13 Jul, 2012 2 commits
  9. 12 Jul, 2012 1 commit
  10. 11 Jul, 2012 1 commit
  11. 10 Jul, 2012 3 commits
  12. 18 Jun, 2012 2 commits
  13. 11 Jun, 2012 3 commits
  14. 04 Jun, 2012 1 commit
  15. 29 May, 2012 2 commits
    • Bjarni Ingi Gislason's avatar
      tc-drr(8): tab unquoted in a argument to a macro · d18086cc
      Bjarni Ingi Gislason authored
      <groff: tc-drr.8>:67: warning: tab character in unquoted macro argument
      <groff: tc-drr.8>:69: warning: tab character in unquoted macro argument
      
      *********************
      
      Originally filed at: http://bugs.debian.org/674706Signed-off-by: default avatarAndreas Henriksson <andreas@fatal.se>
      d18086cc
    • Bjarni Ingi Gislason's avatar
      tc(8): Negative indent and missing "-" after an escape · 7c34520b
      Bjarni Ingi Gislason authored
      <groff: tc.8>:51: warning: total indent cannot be negative
      <groff: tc.8>:57: warning: escape character ignored before `i'
      
      *********************
      
      Space at end of line removed
      
        General considerations
      
      a) Manuals should usually only be left justified.  Use ".ad l"
      as the first regular command.
      
      b) Each sentence should begin on a new line.  The conventions
      about the amount of space between sentences are different.  This
      also makes a check on the number of space characters between
      words easier.
      
      c) Separate numbers from units with a (no-break) space.  A
      no-break space can be code 0xA0, "\ " (\<space>), or "\~"
      (groff).
      
      d) Use macros "TS/TE" for tables with more than two columns.
      Then use
      
      '\" t
      
      as the first line in the source to tell "man" to use the "tbl"
      preprocessor.
      
      e) Protect last period (full stop) in abbreviations with "\&",
      if it is or might be (through new formatting of source) at the
      end of line, if it is also not an end of sentence.
      
      *********************
      
      Originally filed at: http://bugs.debian.org/674704Signed-off-by: default avatarAndreas Henriksson <andreas@fatal.se>
      7c34520b
  16. 25 May, 2012 1 commit