mirror of
https://github.com/reactos/reactos.git
synced 2025-08-07 05:52:57 +00:00
[BTRFS][UBTRFS][SHELLBTRFS] Upgrade to 1.7.9 (#4417)
v1.7.9 (2021-10-02): - Fixed deadlock when mounting on Windows 11 - Added support for BitLocker-encrypted volumes - Improved filename checks when renaming or creating hard links - Miscellaneous bug fixes
This commit is contained in:
parent
08d1009892
commit
f5556fdc10
14 changed files with 317 additions and 73 deletions
|
@ -22,7 +22,10 @@
|
|||
#include <ntddscsi.h>
|
||||
#include <ntddstor.h>
|
||||
|
||||
#define MAX_CSUM_SIZE (4096 - sizeof(tree_header) - sizeof(leaf_node))
|
||||
/* cf. __MAX_CSUM_ITEMS in Linux - it needs sizeof(leaf_node) bytes free
|
||||
* so it can do a split. Linux tries to get it so a run will fit in a
|
||||
* sector, but the MAX_CSUM_ITEMS logic is wrong... */
|
||||
#define MAX_CSUM_SIZE (4096 - sizeof(tree_header) - (2 * sizeof(leaf_node)))
|
||||
|
||||
// #define DEBUG_WRITE_LOOPS
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue