1. 04 Mar, 2021 1 commit
  2. 24 Feb, 2021 2 commits
  3. 13 Feb, 2021 1 commit
  4. 22 Jan, 2021 1 commit
  5. 21 Jan, 2021 1 commit
    • Max Kellermann's avatar
      input/curl: disable verify_peer on Android by default · 74396448
      Max Kellermann authored
      I havn't yet figured out how to use Android's system CA certificates
      with CURL/OpenSSL, so a temporary workaround is to disable verify_peer
      by default.  The data MPD transfers isn't extremely important, so the
      servers's authenticity isn't extremely important either.
      74396448
  6. 17 Jan, 2021 1 commit
  7. 01 Jan, 2021 1 commit
  8. 15 Dec, 2020 1 commit
  9. 01 Dec, 2020 3 commits
  10. 28 Oct, 2020 1 commit
  11. 08 Oct, 2020 1 commit
  12. 23 Sep, 2020 1 commit
    • Max Kellermann's avatar
      input/uring: safe cancellation · 85bab670
      Max Kellermann authored
      My concept with `class CancellableOperation` doesn't work properly,
      because the kernel may continue to write to the given buffer as soon
      as the read finishes.
      
      To fix this, this commit adds `class ReadOperation` which owns the
      buffer and the `struct iovec`.  Instances of this class persist until
      the read really finishes, even if the operation is canceled.
      85bab670
  13. 21 Sep, 2020 2 commits
  14. 16 Sep, 2020 2 commits
  15. 07 Sep, 2020 1 commit
  16. 14 Aug, 2020 1 commit
  17. 20 Jul, 2020 4 commits
  18. 16 Jul, 2020 1 commit
  19. 06 Jul, 2020 1 commit
  20. 01 Jul, 2020 2 commits
  21. 30 May, 2020 1 commit
  22. 27 May, 2020 1 commit
  23. 05 May, 2020 3 commits
    • Max Kellermann's avatar
      input/uring: new input plugin using io_uring · dae8da70
      Max Kellermann authored
      This is the final piece of the series to establish io_uring support on
      Linux.
      
      MPD doesn't need io_uring for its efficient bulk I/O support, but to
      allow file I/O to be cancelled.  This is a big problem on CIFS/NFS
      mounts where processes sleep uninterruptable if the file server
      disappears, deadlocking MPD.
      
      With io_uring, a flaky NFS connection allows MPD to continue to work
      (even though there are still deadlocks inside MPD which need to be
      addressed).
      
      This plugin does not yet use cancellable `open()` using
      `IORING_OP_OPENAT`.  This will be implemented later.
      
      Lots of other optimization opportunities for io_uring are still
      missing as well - for example the database update could benefit a lot,
      but unfortunately, io_uring doesn't have `readdir()` support just yet.
      dae8da70
    • Max Kellermann's avatar
      */plugins/meson.build: define feature macros in Features.h · 8f178401
      Max Kellermann authored
      This makes ccache more efficient when recompiling with different
      plugins.
      8f178401
    • Max Kellermann's avatar
      system/FileDescriptor: move to io/ · 9815d101
      Max Kellermann authored
      9815d101
  24. 08 Apr, 2020 2 commits
  25. 26 Mar, 2020 2 commits
  26. 17 Mar, 2020 1 commit
  27. 16 Mar, 2020 1 commit