1. 05 Jul, 2017 1 commit
    • Matthias Tafelmeier's avatar
      softirqs: focus CPU as dissector · 46186905
      Matthias Tafelmeier authored
      With having in mind that softirq processing is happeing in
      ksoftirqd/<cpu> context, which is associated with a specific cpu over
      the whole dynamic life time of a system, focussing on CPus as the
      dissector appears more sensical.
      
      Quite helpful is this alternative angle of view on the softirqs
      processing especially for surveilling the effectiveness of net stack
      tunings, as this is highly dynamic depending on the actual net stack
      configuration, e.g. scaling or steering.
      Signed-off-by: default avatarMatthias Tafelmeier <matthias.tafelmeier@gmx.net>
      46186905
  2. 21 Apr, 2017 3 commits
  3. 20 Apr, 2017 6 commits
  4. 19 Apr, 2017 4 commits
  5. 18 Apr, 2017 1 commit
  6. 17 Apr, 2017 1 commit
  7. 16 Apr, 2017 1 commit
  8. 15 Apr, 2017 1 commit
  9. 14 Apr, 2017 2 commits
  10. 13 Apr, 2017 1 commit
    • Sasha Goldshtein's avatar
      cc: Prefer external debuginfo files to the binary itself (#1111) · a359a900
      Sasha Goldshtein authored
      On some distributions, the debuglink section in the binary will
      not have a .debug file extension. As a result, we will try to look
      for the debuginfo file in the binary itself, immediately find it,
      and abort looking for any other alternatives. This is not good,
      because the binary might contain stripped or partial symbols,
      which precludes certain tools from realizing their full potential.
      
      Fix by checking that the debuginfo file we're trying to use is
      not the same as the binary file. In any case, if external debuginfo
      can't be found, we will fall back to the symbols in the original
      binary file, if present, so this should not regress any existing
      scenario.
      a359a900
  11. 12 Apr, 2017 3 commits
  12. 11 Apr, 2017 1 commit
  13. 08 Apr, 2017 4 commits
  14. 06 Apr, 2017 8 commits
  15. 05 Apr, 2017 3 commits
    • Marek Vavruša's avatar
      lua/bpf: cleanup, nicer code dump format · 67bb1502
      Marek Vavruša authored
      67bb1502
    • Marek Vavruša's avatar
      lua/bpf: implement explicit PTR[0] operation · d28957ef
      Marek Vavruša authored
      the BPF maps and pointers were previously
      implicitly dereferenced whenever an operation
      on them required a value and not a pointer.
      the upside is that accessing map element data
      didn’t require an explicit operation, the downside
      is that it wasn’t possible to get the value
      explicitly.
      
      this makes it possible to dereference any pointer
      and materialize the value in the register as long
      as it’s shorter than register width using `ptr[0]`
      element access operator.
      d28957ef
    • Marek Vavruša's avatar
      lua/bpf: implemented emulated LD_ABS64 · fefaf32b
      Marek Vavruša authored
      the DW LD_ABS|IND is prohibited, so it is
      implemented as a double W load with shift.
      this is slow as it also has to undo the ntohl
      semantics of W loads, but makes dissection of
      64bit fields with absolute addressing possible 
      fefaf32b