1. 07 Oct, 2020 2 commits
  2. 28 Sep, 2020 1 commit
  3. 22 Sep, 2020 3 commits
  4. 08 Sep, 2020 1 commit
  5. 01 Sep, 2020 2 commits
  6. 25 Aug, 2020 5 commits
  7. 19 Aug, 2020 1 commit
    • Jessica Clarke's avatar
      XDMA: Mark engine as not running when stopping after timeouts · cf3611e0
      Jessica Clarke authored
      Unlike engine_start, which sets the engine's running field itself,
      engine_stop instead requires its callers to clear the field. However,
      not all of them do, and notably the timeout handlers do not, meaning
      that after a request times out and we stop the engine we never start it
      again, causing all future transfers on the channel to hit the software
      timeout.
      
      Instead, set running to 0 inside xdma_engine_stop to mirror engine_start
      to both fix the bug and prevent future ones creeping in.
      cf3611e0
  8. 18 Aug, 2020 1 commit
  9. 12 Aug, 2020 1 commit
  10. 24 Jul, 2020 1 commit
  11. 30 Jun, 2020 3 commits
  12. 23 Jun, 2020 1 commit
  13. 22 Jun, 2020 2 commits
  14. 16 Jun, 2020 1 commit
  15. 09 Jun, 2020 1 commit
    • Julien's avatar
      xdma_thread: fix cpu node bug · 7fc246ee
      Julien authored
      The number of threads is arbitrarily set to 8 and we iterate over 8 cpus
      without knowing if we really have 8 cpus. This causes a call to
      cpu_to_node with an index that is out of bound, thus returning an
      undefined number, which crashes later when calling
      kthread_create_on_node.
      Fix this by iterating over the online cpus stopping when reaching the
      number of threads that is specified.
      7fc246ee
  16. 19 May, 2020 1 commit
  17. 27 Feb, 2020 3 commits
  18. 24 Feb, 2020 1 commit
    • Bryce Hathaway's avatar
      Fixes a design error revealed by running on aarch64. · d1f334b1
      Bryce Hathaway authored
      Simply put, you cannot call wait_event_interruptible_timeout while
      holding a spin_lock. The reason the driver got away with this on
      x86 is because the hardware is somehow fast enough so that the
      condition is never false and hence no scheduling ever needs to
      occur.
      d1f334b1
  19. 03 Feb, 2020 1 commit
  20. 21 Jan, 2020 1 commit
  21. 20 Jan, 2020 1 commit
  22. 17 Jan, 2020 1 commit
  23. 03 Jan, 2020 1 commit
  24. 23 Dec, 2019 4 commits