[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:
Vincent Franchomme 2022-04-28 21:35:58 +02:00 committed by Hermès BÉLUSCA - MAÏTO
parent 08d1009892
commit f5556fdc10
14 changed files with 317 additions and 73 deletions

View file

@ -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