- Mar 18, 2022
-
-
Aditya Gupta authored
BREAKING CHANGE: Usages of `redoxfs` binary should be replaced with `redoxfs-mount` 1. Renamed `redoxfs` binary to `redoxfs-mount`, for a consistent name convention as others 2. Some Comments
-
Aditya Gupta authored
Previously, we created a pipe, and then forked, then in one process we block on a read, while in other process, AFTER it completes, it does a write on the write end of the pipe, and hence it + the process blocking on read end of the pipe will both exit. So, the pipes and fork can be removed because, 1. One process was needlessly blocking, it was doing no work, and finally waited for the other to end 2. The other process is doing everything non-concurrently (synchronously), so there should be no need for multi-threaded & synchronisation using the pipes Other minor changes: 1. Changed name of `daemon` function to `mount_disk` 2. Added some comments to `mount_disk` Notes: 1. Still following the process::exit pattern, though I think that's not needed now, can just return a Result from main() itself, instead of explicitly using process::exit(0) and process::exit(1) 2. Removes two usages of `unsafe`
-
- Mar 11, 2022
-
-
Jeremy Soller authored
RedoxFS 0.5.0 See merge request redox-os/redoxfs!54
-
Significant re-design to use copy-on-write and hashes for all data
- Feb 11, 2022
-
-
Jeremy Soller authored
-
- Feb 06, 2022
-
- Dec 27, 2021
-
-
Jeremy Soller authored
-
- Jun 17, 2021
-
-
Jacob Lorentzon authored
-
- Apr 29, 2021
-
-
Jeremy Soller authored
-
- Jan 19, 2021
-
-
Jeremy Soller authored
-
- Dec 16, 2020
-
- Aug 02, 2020
-
-
Jeremy Soller authored
-
- May 25, 2020
-
-
Jeremy Soller authored
-
- Mar 14, 2020
-
-
Jeremy Soller authored
-
- Jan 20, 2020
-
-
Jeremy Soller authored
Format the codebase See merge request redox-os/redoxfs!49
-
Xavier L'Heureux authored
-
Jeremy Soller authored
Add tracking of access times See merge request redox-os/redoxfs!48
-
Add the atime field, which tracks the last access time. Only reads update the atime. **BREAKING CHANGE**: One less extent available per block, 4 more bytes for node names.
-
- Oct 29, 2019
-
-
Jeremy Soller authored
-
- Sep 09, 2019
-
- Aug 11, 2019
-
-
Jeremy Soller authored
Update path after frename See merge request redox-os/redoxfs!46
-
Deepak Sirone authored
-
- Jul 24, 2019
-
-
Jeremy Soller authored
-
- Jul 21, 2019
-
-
Jeremy Soller authored
-
- Jul 20, 2019
-
-
Jeremy Soller authored
Tests See merge request redox-os/redoxfs!45
-
Jeremy Soller authored
-
- Jul 19, 2019
-
-
Jeremy Soller authored
-
- Jul 06, 2019
-
-
Jeremy Soller authored
-
Jeremy Soller authored
-
Jeremy Soller authored
-
Jeremy Soller authored
-
Jeremy Soller authored
-
- Jul 04, 2019
-
- May 11, 2019
-
-
Jeremy Soller authored
-
Jeremy Soller authored