1. 11 Aug, 2016 2 commits
  2. 09 Aug, 2016 1 commit
  3. 06 Aug, 2016 2 commits
  4. 05 Aug, 2016 4 commits
  5. 03 Aug, 2016 1 commit
  6. 02 Aug, 2016 3 commits
  7. 01 Aug, 2016 5 commits
  8. 31 Jul, 2016 3 commits
  9. 29 Jul, 2016 4 commits
  10. 28 Jul, 2016 4 commits
    • Brenden Blanco's avatar
      ae059841
    • Brenden Blanco's avatar
      Add xdp_drop_count example · 8db68e81
      Brenden Blanco authored
      This adds the xdp drop count example relicensed under ASL2, along with
      some minor modifications to print pkt/s.
      Signed-off-by: default avatarBrenden Blanco <bblanco@plumgrid.com>
      8db68e81
    • Brenden Blanco's avatar
      Merge pull request #634 from Eichhoernchen/xdp_net-next · 89ad9342
      Brenden Blanco authored
      Added XDP support to BCC
      89ad9342
    • Jan Rüth's avatar
      This adds XDP support to BCC as currently supported in net-next. · e0724d73
      Jan Rüth authored
      Concretely, it adds two functions to bcc, namely:
      `attach_xdp` and `remove_xdp`
      which allows to attach an XDP program to a device (given via its name, e.g., en0) (in the future this might change to a specific queue on a device once the kernel offers this interface)
      and `remove_xdp` removes a XDP program from a device. Please note that there can currently be only one program attached to the device and attaching another program replaces the previous.
      
      One example is available to test XDP, in networking/xdp which drops all packets an counts for which protocol a packet was dropped (this is taken from the kernel xdp1 example). Please note that you cannot use the network headers defined in <bcc/proto.h> as they cause llvm/clang to generate instructions not available on XDP layer. On XDP layer you do not have an skb yet, so you are operating on the bare packet data.
      
      XDP support is currently limited to only some network adapters, there is the `mlx4` and there is also a patch available for the `e1000` driver.
      e0724d73
  11. 27 Jul, 2016 5 commits
    • Brenden Blanco's avatar
      Merge pull request #632 from markdrayton/probe-strings · 60b082e0
      Brenden Blanco authored
      Probe registration fixes
      60b082e0
    • Mark Drayton's avatar
      Remove asserts on str probe names · 7c148427
      Mark Drayton authored
      `open_kprobes` is a dict of open kprobes. Its keys are strings for normal
      probes and a tuple for perf buffers. Normal probes need unregistering on script
      exit; perf buffers do not. `cleanup` currently looks for string keys
      (specifically type `str`) when working out what to unregister, which is a bit
      brittle -- in Python2 strings can be both native `str` and `unicode`, depending
      what exactly was passed to `attach-*/detach_*` and whether `from __future__
      import unicode_literals` is used (e.g. #623).
      
      This diff makes the API more relaxed by casting the probe name to `str` to
      match the expectations of `cleanup`. This works in py2 (with and without
      unicode_literals) and py3.
      7c148427
    • Mark Drayton's avatar
      py3 probe registration compatibility fixes · 1d6a31b1
      Mark Drayton authored
      * rework `_get_kprobe_functions` to avoid unclosed blacklist warning
      * rework `cleanup` to avoid changing size of dict while iterating
      * make handling return of `bpf_function_name` work in py2 and py3
      1d6a31b1
    • Brenden Blanco's avatar
      Merge pull request #630 from chantra/cachetop_sort_ui · 5938394e
      Brenden Blanco authored
      [cachetop] Display sorting field and order.
      5938394e
    • Brenden Blanco's avatar
      Merge pull request #631 from brendangregg/refguide · 023d0527
      Brenden Blanco authored
      add a reference guide
      023d0527
  12. 26 Jul, 2016 5 commits
  13. 25 Jul, 2016 1 commit