Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2014-10-01 | lib/nfs/Manager: use boost::intrusive::map | Max Kellermann | 2 | -37/+78 | |
Reduce overhead for storing the key twice, and more overhead while looking up the connection to remove it after a failure. | |||||
2014-10-01 | lib/nfs/Glue: add assertion | Max Kellermann | 1 | -0/+4 | |
2014-10-01 | lib/nfs/Glue: destruct the NfsManager in the I/O thread | Max Kellermann | 3 | -5/+8 | |
This allows eliminating the indirection code from the NfsConnection destructor. | |||||
2014-10-01 | lib/nfs/Glue: eliminate class NfsGlue | Max Kellermann | 1 | -17/+1 | |
It's just a useless wrapper for class NfsManager. | |||||
2014-10-01 | lib/nfs/Cancellable: use boost::intrusive::list | Max Kellermann | 3 | -40/+18 | |
Reduce Remove() overhead because we don't have to walk the list to find an iterator by reference. | |||||
2014-08-31 | nfs/Connection: check for disappearing libnfs socket | Max Kellermann | 1 | -0/+18 | |
2014-08-31 | nfs/Connection: use only BroadcastError() | Max Kellermann | 1 | -4/+1 | |
Since BroadcastError() calls BroadcastMountError(), there's no need to check mount_finished here. | |||||
2014-08-31 | nfs/Connection: nfs_get_fd() can return -1 | Max Kellermann | 1 | -0/+3 | |
While reconnecting to the NFS server, the socket is -1, because there is no socket. Fixes a potential crash (assertion failure). | |||||
2014-08-31 | nfs/Connection: use nfs_get_error() for mount error | Max Kellermann | 1 | -2/+3 | |
2014-08-31 | nfs/Connection: fix assertion failure | Max Kellermann | 1 | -1/+3 | |
2014-08-30 | *: add missing Compiler.h includes | Max Kellermann | 1 | -0/+1 | |
Necessary for "final" on gcc 4.6. | |||||
2014-06-30 | lib/nfs/Connection: include poll.h | Max Kellermann | 1 | -0/+2 | |
2014-06-17 | lib/nfs/Manager: gcc 4.7 compatibility hack | Max Kellermann | 3 | -0/+32 | |
std::map::emplace() is only available from gcc 4.8 on. | |||||
2014-06-17 | input/nfs: use the asynchronous libnfs API | Max Kellermann | 11 | -0/+1398 | |
More robust and cancellable. | |||||
2014-02-08 | input/nfs: move nfs_domain to lib/nfs/Domain.cxx | Max Kellermann | 2 | -0/+51 | |