Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2015-05-29 | storage/nfs: fix deadlock when connecting | Thomas Guillem | 1 | -2/+2 | |
The Connect method can be called between Schedule and lock. In that case, when locked, the state is already set to CONNECTING of READY and the condition won't be signaled anymore. | |||||
2014-12-26 | db/simple: fix implicit nullptr/bool conversion | Max Kellermann | 1 | -1/+1 | |
Return false on error, not nullptr. | |||||
2014-12-15 | storage/nfs: clear last_error in SetState() | Max Kellermann | 1 | -0/+1 | |
Fixes bogus assertion failure. | |||||
2014-10-09 | storage/nfs: use the libnfs async API | Max Kellermann | 1 | -49/+228 | |
Share the NFS connection with the NFS input plugin. | |||||
2014-10-09 | StoragePlugin: pass EventLoop to constructor | Max Kellermann | 1 | -1/+2 | |
2014-10-07 | storage/nfs: move code to class MemoryStorageDirectoryReader | Max Kellermann | 1 | -73/+35 | |
Read all directory entries into memory and close the struct nfsdir before returning the StorageDirectoryReader instance. This is what libnfs does, anyway. | |||||
2014-10-07 | storage/nfs: move code to Copy() | Max Kellermann | 1 | -18/+30 | |
2014-10-05 | lib/nfs/Base: kludge to reduce number of NFS mounts | Max Kellermann | 1 | -0/+3 | |
Creating a NfsStorage sets its own export_name as the "base". Now NfsFileReader can use this information to derive the export_name to be mounted, instead of guessing. This solves the "too many connection" problem on the NFS server while updating the database. | |||||
2014-10-02 | storage: remove redundant "virtual" keywords | Max Kellermann | 1 | -9/+8 | |
"override" implies "virtual". | |||||
2014-10-01 | storage/nfs: make a few attributes "const" | Max Kellermann | 1 | -3/+3 | |
2014-09-28 | storage/nfs: convert file name to UTF-8 | Max Kellermann | 1 | -8/+30 | |
Assume the configured filesystem character set is also used by the NFS server. | |||||
2014-09-28 | storage/nfs: use string::append() instead of string::insert() | Max Kellermann | 1 | -3/+2 | |
Swap the order of adding the URI and the slash, because appending is cheaper than inserting. | |||||
2014-09-28 | storage/nfs: move code to UriToNfsPath() | Max Kellermann | 1 | -6/+13 | |
2014-02-08 | storage/nfs: new storage plugin | Max Kellermann | 1 | -0/+238 | |