1. 28 May, 2020 1 commit
  2. 27 May, 2020 21 commits
  3. 26 May, 2020 5 commits
  4. 14 May, 2020 1 commit
  5. 07 May, 2020 7 commits
  6. 06 May, 2020 2 commits
  7. 05 May, 2020 3 commits
    • Max Kellermann's avatar
      Merge branch 'v0.21.x' · ba576ffa
      Max Kellermann authored
      ba576ffa
    • Max Kellermann's avatar
      db/simple: fix crash when mounting twice · 209364ad
      Max Kellermann authored
      The `db->close()` call was a `nullptr` dereference because the `db`
      variable had already been moved.
      
      Closes https://github.com/MusicPlayerDaemon/MPD/issues/839
      209364ad
    • 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