You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ I'm not responsible for the data stored using chunkdisk!
27
27
28
28
* MAKE A BACKUP of `.chunkdisk` file. Chunkdisk reads it only once when it's mounted. It can be read, modified and even deleted by others while the disk is mounted.
29
29
* DO NOT add, remove and move around chunk files when the disk is mounted. Doing so confuses chunkdisk and causes I/O errors.
30
-
* Chunks in use (or recently used) are write-protected. You may read chunks anytime (may not be up to date), but you SHOULD NOT modify them directly when the disk is mounted.
30
+
* DO NOT directly modify chunk files. They are NOT write-protected even when being used.
31
31
32
32
## `.chunkdisk` File Specs
33
33
@@ -40,12 +40,12 @@ I'm not responsible for the data stored using chunkdisk!
40
40
```
41
41
42
42
* UTF-8 encoding
43
-
* Disk size and chunk size must be a multiple of 512.
43
+
* Disk size and chunk size must be a multiple of 4096.
44
44
* The sum of max. number of chunks must be at least (Disk size) / (Chunk size) + surplus (0 ~ 1).
45
45
46
46
## Issues
47
47
48
-
* I/O is single-threaded due to [the WinSpd issue](https://github.com/billziss-gh/winspd/issues/10). The performance would be fine except for multi-threaded random I/Os with NVMe SSDs.
0 commit comments