aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/fuse
Commit message (Collapse)AuthorAgeFilesLines
* build: enable unconvert linter (#15456)ferhat elmas2017-11-111-5/+6
| | | | | | | | | * build: enable unconvert linter - fixes #15453 - update code base for failing cases * cmd/puppeth: replace syscall.Stdin with os.Stdin.Fd() for unconvert linter
* swarm/fuse: return amount of data written if the file exists (#15261)Darrel Herbst2017-10-091-1/+1
| | | | | | | If the file already existed, the WriteResponse.Size was being set as the length of the entire file, not just the amount that was written to the existing file. Fixes #15216
* swarm/fuse: use Equal instead of Compare (#15097)Fiisio2017-09-081-1/+1
|
* swarm: fix megacheck warningsEgon Elbre2017-08-141-11/+2
|
* swarm/fuse: use subtestsFelix Lange2017-06-211-171/+112
|
* swarm/fuse: simplify externalUnmountFelix Lange2017-06-212-35/+20
| | | | | | The code looked for /usr/bin/diskutil on darwin, but it's actually located in /usr/sbin. Fix that by not specifying the absolute path. Also remove weird timeout construction and extra whitespace.
* swarm/api: FUSE read-write support (#13872)Zahoor Mohamed2017-04-128-0/+1730
- Moved fuse related code in a new package, swarm/fuse - Added write support - Create new files - Delete existing files - Append to files (with limitations) - More test coverage