lib/nfs/Connection: detect libnfs reconnect

When rpc_reconnect_requeue() gets called from inside nfs_service(),
the NfsInputStream can stall completely because the old socket has
been unregistered from epoll automatically, but the new one has never
been registered.  Therefore, nfs_service() will never be called again.

This kludge attempts to detect this condition by checking
nfs_which_events()==POLLOUT.

https://bugs.musicpd.org/view.php?id=4081
This commit is contained in:
Max Kellermann
2017-02-01 21:16:50 +01:00
parent 38d263ac19
commit 05eac20ffe
2 changed files with 14 additions and 1 deletions

2
NEWS
View File

@@ -1,4 +1,6 @@
ver 0.20.4 (not yet released)
* input
- nfs: fix freeze after reconnect
* output
- sndio: work around a libroar C++ incompatibility
* workaround for GCC 4.9 "constexpr" bug