mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 18:23:07 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
164
drivers/filesystems/btrfs/worker-thread.c
Normal file
164
drivers/filesystems/btrfs/worker-thread.c
Normal file
|
@ -0,0 +1,164 @@
|
|||
/* Copyright (c) Mark Harmstone 2016-17
|
||||
*
|
||||
* This file is part of WinBtrfs.
|
||||
*
|
||||
* WinBtrfs is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Lesser General Public Licence as published by
|
||||
* the Free Software Foundation, either version 3 of the Licence, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* WinBtrfs is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU Lesser General Public Licence for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public Licence
|
||||
* along with WinBtrfs. If not, see <http://www.gnu.org/licenses/>. */
|
||||
|
||||
#include "btrfs_drv.h"
|
||||
|
||||
typedef struct {
|
||||
device_extension* Vcb;
|
||||
PIRP Irp;
|
||||
WORK_QUEUE_ITEM item;
|
||||
} job_info;
|
||||
|
||||
void do_read_job(PIRP Irp) {
|
||||
NTSTATUS Status;
|
||||
ULONG bytes_read;
|
||||
BOOL top_level = is_top_level(Irp);
|
||||
PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation(Irp);
|
||||
PFILE_OBJECT FileObject = IrpSp->FileObject;
|
||||
fcb* fcb = FileObject->FsContext;
|
||||
BOOL fcb_lock = FALSE;
|
||||
|
||||
Irp->IoStatus.Information = 0;
|
||||
|
||||
if (!ExIsResourceAcquiredSharedLite(fcb->Header.Resource)) {
|
||||
ExAcquireResourceSharedLite(fcb->Header.Resource, TRUE);
|
||||
fcb_lock = TRUE;
|
||||
}
|
||||
|
||||
_SEH2_TRY {
|
||||
Status = do_read(Irp, TRUE, &bytes_read);
|
||||
} _SEH2_EXCEPT (EXCEPTION_EXECUTE_HANDLER) {
|
||||
Status = _SEH2_GetExceptionCode();
|
||||
} _SEH2_END;
|
||||
|
||||
if (fcb_lock)
|
||||
ExReleaseResourceLite(fcb->Header.Resource);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
ERR("do_read returned %08x\n", Status);
|
||||
|
||||
Irp->IoStatus.Status = Status;
|
||||
|
||||
TRACE("read %lu bytes\n", Irp->IoStatus.Information);
|
||||
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
|
||||
if (top_level)
|
||||
IoSetTopLevelIrp(NULL);
|
||||
|
||||
TRACE("returning %08x\n", Status);
|
||||
}
|
||||
|
||||
void do_write_job(device_extension* Vcb, PIRP Irp) {
|
||||
BOOL top_level = is_top_level(Irp);
|
||||
NTSTATUS Status;
|
||||
|
||||
_SEH2_TRY {
|
||||
Status = write_file(Vcb, Irp, TRUE, TRUE);
|
||||
} _SEH2_EXCEPT (EXCEPTION_EXECUTE_HANDLER) {
|
||||
Status = _SEH2_GetExceptionCode();
|
||||
} _SEH2_END;
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
ERR("write_file returned %08x\n", Status);
|
||||
|
||||
Irp->IoStatus.Status = Status;
|
||||
|
||||
TRACE("wrote %u bytes\n", Irp->IoStatus.Information);
|
||||
|
||||
IoCompleteRequest(Irp, IO_NO_INCREMENT);
|
||||
|
||||
if (top_level)
|
||||
IoSetTopLevelIrp(NULL);
|
||||
|
||||
TRACE("returning %08x\n", Status);
|
||||
}
|
||||
|
||||
_Function_class_(WORKER_THREAD_ROUTINE)
|
||||
#ifdef __REACTOS__
|
||||
static void NTAPI do_job(void* context) {
|
||||
#else
|
||||
static void do_job(void* context) {
|
||||
#endif
|
||||
job_info* ji = context;
|
||||
PIO_STACK_LOCATION IrpSp = ji->Irp ? IoGetCurrentIrpStackLocation(ji->Irp) : NULL;
|
||||
|
||||
if (IrpSp->MajorFunction == IRP_MJ_READ) {
|
||||
do_read_job(ji->Irp);
|
||||
} else if (IrpSp->MajorFunction == IRP_MJ_WRITE) {
|
||||
do_write_job(ji->Vcb, ji->Irp);
|
||||
}
|
||||
|
||||
ExFreePool(ji);
|
||||
}
|
||||
|
||||
BOOL add_thread_job(device_extension* Vcb, PIRP Irp) {
|
||||
job_info* ji;
|
||||
|
||||
ji = ExAllocatePoolWithTag(NonPagedPool, sizeof(job_info), ALLOC_TAG);
|
||||
if (!ji) {
|
||||
ERR("out of memory\n");
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
ji->Vcb = Vcb;
|
||||
ji->Irp = Irp;
|
||||
|
||||
if (!Irp->MdlAddress) {
|
||||
PMDL Mdl;
|
||||
LOCK_OPERATION op;
|
||||
ULONG len;
|
||||
PIO_STACK_LOCATION IrpSp = IoGetCurrentIrpStackLocation(Irp);
|
||||
|
||||
if (IrpSp->MajorFunction == IRP_MJ_READ) {
|
||||
op = IoWriteAccess;
|
||||
len = IrpSp->Parameters.Read.Length;
|
||||
} else if (IrpSp->MajorFunction == IRP_MJ_WRITE) {
|
||||
op = IoReadAccess;
|
||||
len = IrpSp->Parameters.Write.Length;
|
||||
} else {
|
||||
ERR("unexpected major function %u\n", IrpSp->MajorFunction);
|
||||
ExFreePool(ji);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
Mdl = IoAllocateMdl(Irp->UserBuffer, len, FALSE, FALSE, Irp);
|
||||
|
||||
if (!Mdl) {
|
||||
ERR("out of memory\n");
|
||||
ExFreePool(ji);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
_SEH2_TRY {
|
||||
MmProbeAndLockPages(Mdl, Irp->RequestorMode, op);
|
||||
} _SEH2_EXCEPT (EXCEPTION_EXECUTE_HANDLER) {
|
||||
ERR("MmProbeAndLockPages raised status %08x\n", _SEH2_GetExceptionCode());
|
||||
|
||||
IoFreeMdl(Mdl);
|
||||
Irp->MdlAddress = NULL;
|
||||
ExFreePool(ji);
|
||||
|
||||
_SEH2_YIELD(return FALSE);
|
||||
} _SEH2_END;
|
||||
}
|
||||
|
||||
ExInitializeWorkItem(&ji->item, do_job, ji);
|
||||
ExQueueWorkItem(&ji->item, DelayedWorkQueue);
|
||||
|
||||
return TRUE;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue