mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
Silence some debug messages
svn path=/trunk/; revision=4043
This commit is contained in:
parent
15128f6053
commit
14fc3556c8
3 changed files with 8 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: create.c,v 1.14 2002/09/08 10:22:11 chorns Exp $
|
/* $Id: create.c,v 1.15 2003/01/19 01:13:04 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -37,7 +37,7 @@ NpfsCreate(PDEVICE_OBJECT DeviceObject,
|
||||||
KIRQL oldIrql;
|
KIRQL oldIrql;
|
||||||
ULONG Disposition;
|
ULONG Disposition;
|
||||||
|
|
||||||
DPRINT1("NpfsCreate(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
|
DPRINT("NpfsCreate(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
|
||||||
|
|
||||||
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
||||||
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
||||||
|
@ -199,7 +199,7 @@ NpfsCreateNamedPipe(PDEVICE_OBJECT DeviceObject,
|
||||||
PNPFS_PIPE current;
|
PNPFS_PIPE current;
|
||||||
PIO_PIPE_CREATE_BUFFER Buffer;
|
PIO_PIPE_CREATE_BUFFER Buffer;
|
||||||
|
|
||||||
DPRINT1("NpfsCreateNamedPipe(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
|
DPRINT("NpfsCreateNamedPipe(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
|
||||||
|
|
||||||
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
||||||
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
||||||
|
@ -343,7 +343,7 @@ NpfsClose(PDEVICE_OBJECT DeviceObject,
|
||||||
PNPFS_PIPE_DATA Current;
|
PNPFS_PIPE_DATA Current;
|
||||||
|
|
||||||
|
|
||||||
DPRINT1("NpfsClose(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
|
DPRINT("NpfsClose(DeviceObject %p Irp %p)\n", DeviceObject, Irp);
|
||||||
|
|
||||||
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
IoStack = IoGetCurrentIrpStackLocation(Irp);
|
||||||
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
DeviceExt = (PNPFS_DEVICE_EXTENSION)DeviceObject->DeviceExtension;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
/* $Id: create.c,v 1.59 2003/01/15 21:24:35 chorns Exp $
|
/* $Id: create.c,v 1.60 2003/01/19 01:13:04 gvg Exp $
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS system libraries
|
* PROJECT: ReactOS system libraries
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
#include <k32.h>
|
#include <k32.h>
|
||||||
|
|
||||||
#define DBG
|
#define NDEBUG
|
||||||
#include <kernel32/kernel32.h>
|
#include <kernel32/kernel32.h>
|
||||||
|
|
||||||
/* FUNCTIONS ****************************************************************/
|
/* FUNCTIONS ****************************************************************/
|
||||||
|
|
|
@ -74,7 +74,7 @@ CcSetFileSizes (IN PFILE_OBJECT FileObject,
|
||||||
PLIST_ENTRY current_entry;
|
PLIST_ENTRY current_entry;
|
||||||
PCACHE_SEGMENT current;
|
PCACHE_SEGMENT current;
|
||||||
|
|
||||||
DPRINT1("CcSetFileSizes(FileObject %x, FileSizes %x)\n",
|
DPRINT("CcSetFileSizes(FileObject %x, FileSizes %x)\n",
|
||||||
FileObject, FileSizes);
|
FileObject, FileSizes);
|
||||||
DPRINT("AllocationSize %d, FileSize %d, ValidDataLength %d\n",
|
DPRINT("AllocationSize %d, FileSize %d, ValidDataLength %d\n",
|
||||||
(ULONG)FileSizes->AllocationSize.QuadPart,
|
(ULONG)FileSizes->AllocationSize.QuadPart,
|
||||||
|
@ -83,7 +83,7 @@ CcSetFileSizes (IN PFILE_OBJECT FileObject,
|
||||||
|
|
||||||
Bcb = ((REACTOS_COMMON_FCB_HEADER*)FileObject->FsContext)->Bcb;
|
Bcb = ((REACTOS_COMMON_FCB_HEADER*)FileObject->FsContext)->Bcb;
|
||||||
|
|
||||||
DPRINT1("Bcb 0x%.08x\n", Bcb);
|
DPRINT("Bcb 0x%.08x\n", Bcb);
|
||||||
|
|
||||||
KeAcquireSpinLock(&Bcb->BcbLock, &oldirql);
|
KeAcquireSpinLock(&Bcb->BcbLock, &oldirql);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue