mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 10:52:59 +00:00
[BTRFS][UBTRFS][SHELLBTRFS] Upgrade to 1.7.6 (#4417)
v1.7.6 (2021-01-14): - Fixed race condition when booting with Quibble - No longer need to restart Windows after initial installation - Forced maximum file name to 255 UTF-8 characters, to match Linux driver - Fixed issue where directories could be created with trailing backslash - Fixed potential deadlock when Windows calls NtCreateSection during flush - Miscellaneous bug fixes
This commit is contained in:
parent
b826992ab2
commit
c982533ea9
19 changed files with 761 additions and 767 deletions
|
@ -2177,6 +2177,9 @@ static NTSTATUS commit_batch_list_root(_Requires_exclusive_lock_held_(_Curr_->tr
|
|||
Status = handle_batch_collision(Vcb, bi, tp.tree, tp.item, td, &br->items, &ignore);
|
||||
if (!NT_SUCCESS(Status)) {
|
||||
ERR("handle_batch_collision returned %08lx\n", Status);
|
||||
#ifdef _DEBUG
|
||||
int3;
|
||||
#endif
|
||||
|
||||
if (td)
|
||||
ExFreeToPagedLookasideList(&Vcb->tree_data_lookaside, td);
|
||||
|
@ -2258,6 +2261,9 @@ static NTSTATUS commit_batch_list_root(_Requires_exclusive_lock_held_(_Curr_->tr
|
|||
Status = handle_batch_collision(Vcb, bi2, tp.tree, td2, td, &br->items, &ignore);
|
||||
if (!NT_SUCCESS(Status)) {
|
||||
ERR("handle_batch_collision returned %08lx\n", Status);
|
||||
#ifdef _DEBUG
|
||||
int3;
|
||||
#endif
|
||||
return Status;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue