1. 04 Sep, 2023 7 commits
  2. 04 Jul, 2023 1 commit
  3. 09 May, 2023 29 commits
  4. 25 Apr, 2023 1 commit
  5. 05 Apr, 2023 2 commits
    • Antoine Kaufmann's avatar
      sims/nic/i40e_bm: add support for 16b rx descriptors · 000cc16f
      Antoine Kaufmann authored
      The newer linux drivers now use 16b instead of 32b descriptors. So far
      this leads to an abort. This adds proper support for 16b descriptors.
      000cc16f
    • Antoine Kaufmann's avatar
      sims/nic/i40e_bm: fix logger segfault due to constructor · 759ff692
      Antoine Kaufmann authored
      Depending on the order some of the constructors get executed, instances of the
      logger can end up with a null pointer for the runner. This led to a segfault
      when calling TimePs() on that nullptr.
      
      Here we fix this in two steps: first the logger takes a device pointer, which
      in turn contains a pointer to the runner that will eventually be initialized.
      Also fix up the logger to simply use 0 as a timestamp for log events before the
      runner is there.
      759ff692