mirror of
https://github.com/bobranten/Ext4Fsd.git
synced 2026-03-16 05:10:37 -05:00
corrected the wait argument to CcCopyRead
This commit is contained in:
@@ -633,7 +633,7 @@ Ext2LoadInodeXattr(IN PEXT2_VCB Vcb,
|
|||||||
Vcb->Volume,
|
Vcb->Volume,
|
||||||
(PLARGE_INTEGER)&Offset,
|
(PLARGE_INTEGER)&Offset,
|
||||||
Vcb->InodeSize,
|
Vcb->InodeSize,
|
||||||
PIN_WAIT,
|
TRUE,
|
||||||
(PVOID)InodeXattr,
|
(PVOID)InodeXattr,
|
||||||
&IoStatus)) {
|
&IoStatus)) {
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
|||||||
@@ -59,7 +59,6 @@ Ext2CompleteIrpContext (
|
|||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
Ext2ReadVolume (IN PEXT2_IRP_CONTEXT IrpContext)
|
Ext2ReadVolume (IN PEXT2_IRP_CONTEXT IrpContext)
|
||||||
{
|
{
|
||||||
@@ -297,7 +296,6 @@ Ext2ReadVolume (IN PEXT2_IRP_CONTEXT IrpContext)
|
|||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
#define SafeZeroMemory(AT,BYTE_COUNT) { \
|
#define SafeZeroMemory(AT,BYTE_COUNT) { \
|
||||||
__try { \
|
__try { \
|
||||||
if (AT) \
|
if (AT) \
|
||||||
@@ -435,7 +433,7 @@ Ext2ReadInode (
|
|||||||
Vcb->Volume,
|
Vcb->Volume,
|
||||||
(PLARGE_INTEGER)(&(Extent->Lba)),
|
(PLARGE_INTEGER)(&(Extent->Lba)),
|
||||||
Extent->Length,
|
Extent->Length,
|
||||||
PIN_WAIT,
|
TRUE,
|
||||||
(PVOID)((PUCHAR)Buffer + Extent->Offset),
|
(PVOID)((PUCHAR)Buffer + Extent->Offset),
|
||||||
&IoStatus
|
&IoStatus
|
||||||
)) {
|
)) {
|
||||||
@@ -859,7 +857,6 @@ Ext2ReadComplete (IN PEXT2_IRP_CONTEXT IrpContext)
|
|||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
NTSTATUS
|
NTSTATUS
|
||||||
Ext2Read (IN PEXT2_IRP_CONTEXT IrpContext)
|
Ext2Read (IN PEXT2_IRP_CONTEXT IrpContext)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user