[CACHE]
The cache manager rewrite I started years ago has finally appeared in
ReactOS' trunk and although at this point it's not quite perfectly
integrated, it's enough to boot up the bootcd or livecd. To check out
the more mature original, check out arty-newcc-reactos, branch
arty-newcc on bitbucket.org . Amine Khaldi encouraged me quite a bit
to not give up on it, and was able to reach out and be an advocate
when i really wasn't able to. Others agree that the time has come to
begin removing the old cache manager. I expect the remaining problems
in the version going to trunk will be taken care of relatively
quickly.
The motivation for this effort lies in the particularly hairy
relationship between ReactOS' cache manager and data sections. This
code completely removes page sharing between cache manager and section
and reimagines cache manager as being a facility layered on the memory
manager, not really caring about individual pages, but simply managing
data section objects where caching might occur.
It took me about 2 years to do the first pass of this rewrite and most
of this year to fix some lingering issues, properly implement demand
paging in ReactOS (code which didn't come with this patch in a
recognizable form), and finish getting the PrivateCacheMap and
SharedCacheMap relationship correct.
Currently, the new ntoskrnl/cache directory contains an own
implementation of data file sections. After things have settled down,
we can begin to deprecate and remove the parts of ReactOS' section
implementation that depend on a close relationship with cache
manager. Eventually, I think that the extra code added to
ntoskrnl/cache/section will be removed and ReactOS' own sections will
replace the use of the special MM_CACHE_SECTION_SEGMENT in the cache
path.
Note also, that this makes all cache manager (and new section parts)
use wide file offsets. If my section code were to take over other
parts of the ReactOS memory manager, they would also benefit from
these improvements.
I invite anyone who wants to to peek at this code and fix whatever
bugs can be found.
svn path=/trunk/; revision=49423
2010-11-02 02:32:39 +00:00
|
|
|
|
/*
|
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
|
* PROJECT: ReactOS Kernel
|
|
|
|
|
* FILE: ntoskrnl/cache/cachesup.c
|
|
|
|
|
* PURPOSE: Logging and configuration routines
|
|
|
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
|
|
|
* Art Yerkes
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/* INCLUDES *******************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <ntoskrnl.h>
|
|
|
|
|
#include "newcc.h"
|
|
|
|
|
#include "section/newmm.h"
|
|
|
|
|
#define NDEBUG
|
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
|
|
/* STRUCTURES *****************************************************************/
|
|
|
|
|
|
|
|
|
|
typedef struct _WORK_QUEUE_WITH_READ_AHEAD
|
|
|
|
|
{
|
|
|
|
|
WORK_QUEUE_ITEM WorkItem;
|
|
|
|
|
PFILE_OBJECT FileObject;
|
|
|
|
|
LARGE_INTEGER FileOffset;
|
|
|
|
|
ULONG Length;
|
|
|
|
|
} WORK_QUEUE_WITH_READ_AHEAD, *PWORK_QUEUE_WITH_READ_AHEAD;
|
|
|
|
|
|
|
|
|
|
/* FUNCTIONS ******************************************************************/
|
|
|
|
|
|
|
|
|
|
PDEVICE_OBJECT
|
|
|
|
|
NTAPI
|
|
|
|
|
MmGetDeviceObjectForFile(IN PFILE_OBJECT FileObject);
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcSetReadAheadGranularity(IN PFILE_OBJECT FileObject,
|
|
|
|
|
IN ULONG Granularity)
|
|
|
|
|
{
|
|
|
|
|
PNOCC_CACHE_MAP Map = (PNOCC_CACHE_MAP)FileObject->SectionObjectPointer->SharedCacheMap;
|
|
|
|
|
if (Map)
|
|
|
|
|
{
|
|
|
|
|
Map->ReadAheadGranularity = Granularity;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcpReadAhead(PVOID Context)
|
|
|
|
|
{
|
|
|
|
|
LARGE_INTEGER Offset;
|
|
|
|
|
PWORK_QUEUE_WITH_READ_AHEAD WorkItem = (PWORK_QUEUE_WITH_READ_AHEAD)Context;
|
|
|
|
|
PNOCC_CACHE_MAP Map = (PNOCC_CACHE_MAP)WorkItem->FileObject->SectionObjectPointer->SharedCacheMap;
|
|
|
|
|
DPRINT("Reading ahead %08x%08x:%x %wZ\n",
|
|
|
|
|
WorkItem->FileOffset.HighPart,
|
|
|
|
|
WorkItem->FileOffset.LowPart,
|
|
|
|
|
WorkItem->Length,
|
|
|
|
|
&WorkItem->FileObject->FileName);
|
|
|
|
|
Offset.HighPart = WorkItem->FileOffset.HighPart;
|
|
|
|
|
Offset.LowPart = PAGE_ROUND_DOWN(WorkItem->FileOffset.LowPart);
|
|
|
|
|
if (Map)
|
|
|
|
|
{
|
|
|
|
|
PLIST_ENTRY ListEntry;
|
|
|
|
|
volatile char *chptr;
|
|
|
|
|
PNOCC_BCB Bcb;
|
|
|
|
|
for (ListEntry = Map->AssociatedBcb.Flink;
|
|
|
|
|
ListEntry != &Map->AssociatedBcb;
|
|
|
|
|
ListEntry = ListEntry->Flink)
|
|
|
|
|
{
|
|
|
|
|
Bcb = CONTAINING_RECORD(ListEntry, NOCC_BCB, ThisFileList);
|
|
|
|
|
if ((Offset.QuadPart + WorkItem->Length < Bcb->FileOffset.QuadPart) ||
|
|
|
|
|
(Bcb->FileOffset.QuadPart + Bcb->Length < Offset.QuadPart))
|
|
|
|
|
continue;
|
|
|
|
|
for (chptr = Bcb->BaseAddress, Offset = Bcb->FileOffset;
|
|
|
|
|
chptr < ((PCHAR)Bcb->BaseAddress) + Bcb->Length &&
|
|
|
|
|
Offset.QuadPart <
|
|
|
|
|
WorkItem->FileOffset.QuadPart + WorkItem->Length;
|
|
|
|
|
chptr += PAGE_SIZE, Offset.QuadPart += PAGE_SIZE)
|
|
|
|
|
{
|
|
|
|
|
*chptr ^= 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
ObDereferenceObject(WorkItem->FileObject);
|
|
|
|
|
ExFreePool(WorkItem);
|
|
|
|
|
DPRINT("Done\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcScheduleReadAhead(IN PFILE_OBJECT FileObject,
|
|
|
|
|
IN PLARGE_INTEGER FileOffset,
|
|
|
|
|
IN ULONG Length)
|
|
|
|
|
{
|
|
|
|
|
PWORK_QUEUE_WITH_READ_AHEAD WorkItem;
|
|
|
|
|
DPRINT("Schedule read ahead %08x%08x:%x %wZ\n",
|
|
|
|
|
FileOffset->HighPart,
|
|
|
|
|
FileOffset->LowPart,
|
|
|
|
|
Length,
|
|
|
|
|
&FileObject->FileName);
|
|
|
|
|
WorkItem = ExAllocatePool(NonPagedPool, sizeof(*WorkItem));
|
|
|
|
|
if (!WorkItem) KeBugCheck(0);
|
|
|
|
|
ObReferenceObject(FileObject);
|
|
|
|
|
WorkItem->FileObject = FileObject;
|
|
|
|
|
WorkItem->FileOffset = *FileOffset;
|
|
|
|
|
WorkItem->Length = Length;
|
|
|
|
|
ExInitializeWorkItem(((PWORK_QUEUE_ITEM)WorkItem), (PWORKER_THREAD_ROUTINE)CcpReadAhead, WorkItem);
|
|
|
|
|
ExQueueWorkItem((PWORK_QUEUE_ITEM)WorkItem, DelayedWorkQueue);
|
|
|
|
|
DPRINT("Done\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcSetDirtyPinnedData(IN PVOID BcbVoid,
|
|
|
|
|
IN OPTIONAL PLARGE_INTEGER Lsn)
|
|
|
|
|
{
|
|
|
|
|
PNOCC_BCB Bcb = (PNOCC_BCB)BcbVoid;
|
|
|
|
|
Bcb->Dirty = TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LARGE_INTEGER
|
|
|
|
|
NTAPI
|
|
|
|
|
CcGetFlushedValidData(IN PSECTION_OBJECT_POINTERS SectionObjectPointer,
|
|
|
|
|
IN BOOLEAN CcInternalCaller)
|
|
|
|
|
{
|
|
|
|
|
LARGE_INTEGER Result = {{0}};
|
|
|
|
|
UNIMPLEMENTED;
|
|
|
|
|
while (TRUE);
|
|
|
|
|
return Result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
_CcpFlushCache(IN PNOCC_CACHE_MAP Map,
|
|
|
|
|
IN OPTIONAL PLARGE_INTEGER FileOffset,
|
|
|
|
|
IN ULONG Length,
|
|
|
|
|
OUT OPTIONAL PIO_STATUS_BLOCK IoStatus,
|
|
|
|
|
BOOLEAN Delete,
|
|
|
|
|
const char *File,
|
|
|
|
|
int Line)
|
|
|
|
|
{
|
|
|
|
|
PNOCC_BCB Bcb = NULL;
|
|
|
|
|
LARGE_INTEGER LowerBound, UpperBound;
|
|
|
|
|
PLIST_ENTRY ListEntry;
|
|
|
|
|
IO_STATUS_BLOCK IOSB = { };
|
|
|
|
|
|
|
|
|
|
DPRINT1("CcFlushCache (while file) (%s:%d)\n", File, Line);
|
|
|
|
|
|
|
|
|
|
if (FileOffset && Length)
|
|
|
|
|
{
|
|
|
|
|
LowerBound.QuadPart = FileOffset->QuadPart;
|
|
|
|
|
UpperBound.QuadPart = LowerBound.QuadPart + Length;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
LowerBound.QuadPart = 0;
|
|
|
|
|
UpperBound.QuadPart = 0x7fffffffffffffffull;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CcpLock();
|
|
|
|
|
ListEntry = Map->AssociatedBcb.Flink;
|
|
|
|
|
|
|
|
|
|
while (ListEntry != &Map->AssociatedBcb)
|
|
|
|
|
{
|
|
|
|
|
Bcb = CONTAINING_RECORD(ListEntry, NOCC_BCB, ThisFileList);
|
|
|
|
|
CcpReferenceCache(Bcb - CcCacheSections);
|
|
|
|
|
|
|
|
|
|
if (Bcb->FileOffset.QuadPart + Bcb->Length >= LowerBound.QuadPart &&
|
|
|
|
|
Bcb->FileOffset.QuadPart < UpperBound.QuadPart)
|
|
|
|
|
{
|
|
|
|
|
DPRINT
|
|
|
|
|
("Bcb #%x (@%08x%08x)\n",
|
|
|
|
|
Bcb - CcCacheSections,
|
|
|
|
|
Bcb->FileOffset.u.HighPart, Bcb->FileOffset.u.LowPart);
|
|
|
|
|
|
|
|
|
|
Bcb->RefCount++;
|
|
|
|
|
CcpUnlock();
|
|
|
|
|
MiFlushMappedSection(Bcb->BaseAddress, &Bcb->FileOffset, &Map->FileSizes.FileSize, Bcb->Dirty);
|
|
|
|
|
CcpLock();
|
|
|
|
|
Bcb->RefCount--;
|
|
|
|
|
|
|
|
|
|
Bcb->Dirty = FALSE;
|
|
|
|
|
|
|
|
|
|
ListEntry = ListEntry->Flink;
|
|
|
|
|
if (Delete && Bcb->RefCount < 2)
|
|
|
|
|
{
|
|
|
|
|
Bcb->RefCount = 1;
|
|
|
|
|
CcpDereferenceCache(Bcb - CcCacheSections, FALSE);
|
|
|
|
|
}
|
|
|
|
|
else
|
2010-12-23 08:42:51 +00:00
|
|
|
|
CcpUnpinData(Bcb, TRUE);
|
[CACHE]
The cache manager rewrite I started years ago has finally appeared in
ReactOS' trunk and although at this point it's not quite perfectly
integrated, it's enough to boot up the bootcd or livecd. To check out
the more mature original, check out arty-newcc-reactos, branch
arty-newcc on bitbucket.org . Amine Khaldi encouraged me quite a bit
to not give up on it, and was able to reach out and be an advocate
when i really wasn't able to. Others agree that the time has come to
begin removing the old cache manager. I expect the remaining problems
in the version going to trunk will be taken care of relatively
quickly.
The motivation for this effort lies in the particularly hairy
relationship between ReactOS' cache manager and data sections. This
code completely removes page sharing between cache manager and section
and reimagines cache manager as being a facility layered on the memory
manager, not really caring about individual pages, but simply managing
data section objects where caching might occur.
It took me about 2 years to do the first pass of this rewrite and most
of this year to fix some lingering issues, properly implement demand
paging in ReactOS (code which didn't come with this patch in a
recognizable form), and finish getting the PrivateCacheMap and
SharedCacheMap relationship correct.
Currently, the new ntoskrnl/cache directory contains an own
implementation of data file sections. After things have settled down,
we can begin to deprecate and remove the parts of ReactOS' section
implementation that depend on a close relationship with cache
manager. Eventually, I think that the extra code added to
ntoskrnl/cache/section will be removed and ReactOS' own sections will
replace the use of the special MM_CACHE_SECTION_SEGMENT in the cache
path.
Note also, that this makes all cache manager (and new section parts)
use wide file offsets. If my section code were to take over other
parts of the ReactOS memory manager, they would also benefit from
these improvements.
I invite anyone who wants to to peek at this code and fix whatever
bugs can be found.
svn path=/trunk/; revision=49423
2010-11-02 02:32:39 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
ListEntry = ListEntry->Flink;
|
2010-12-23 08:42:51 +00:00
|
|
|
|
CcpUnpinData(Bcb, TRUE);
|
[CACHE]
The cache manager rewrite I started years ago has finally appeared in
ReactOS' trunk and although at this point it's not quite perfectly
integrated, it's enough to boot up the bootcd or livecd. To check out
the more mature original, check out arty-newcc-reactos, branch
arty-newcc on bitbucket.org . Amine Khaldi encouraged me quite a bit
to not give up on it, and was able to reach out and be an advocate
when i really wasn't able to. Others agree that the time has come to
begin removing the old cache manager. I expect the remaining problems
in the version going to trunk will be taken care of relatively
quickly.
The motivation for this effort lies in the particularly hairy
relationship between ReactOS' cache manager and data sections. This
code completely removes page sharing between cache manager and section
and reimagines cache manager as being a facility layered on the memory
manager, not really caring about individual pages, but simply managing
data section objects where caching might occur.
It took me about 2 years to do the first pass of this rewrite and most
of this year to fix some lingering issues, properly implement demand
paging in ReactOS (code which didn't come with this patch in a
recognizable form), and finish getting the PrivateCacheMap and
SharedCacheMap relationship correct.
Currently, the new ntoskrnl/cache directory contains an own
implementation of data file sections. After things have settled down,
we can begin to deprecate and remove the parts of ReactOS' section
implementation that depend on a close relationship with cache
manager. Eventually, I think that the extra code added to
ntoskrnl/cache/section will be removed and ReactOS' own sections will
replace the use of the special MM_CACHE_SECTION_SEGMENT in the cache
path.
Note also, that this makes all cache manager (and new section parts)
use wide file offsets. If my section code were to take over other
parts of the ReactOS memory manager, they would also benefit from
these improvements.
I invite anyone who wants to to peek at this code and fix whatever
bugs can be found.
svn path=/trunk/; revision=49423
2010-11-02 02:32:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DPRINT("End loop\n");
|
|
|
|
|
}
|
|
|
|
|
CcpUnlock();
|
|
|
|
|
|
|
|
|
|
if (IoStatus) *IoStatus = IOSB;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcFlushCache(IN PSECTION_OBJECT_POINTERS SectionObjectPointer,
|
|
|
|
|
IN OPTIONAL PLARGE_INTEGER FileOffset,
|
|
|
|
|
IN ULONG Length,
|
|
|
|
|
OUT OPTIONAL PIO_STATUS_BLOCK IoStatus)
|
|
|
|
|
{
|
|
|
|
|
PNOCC_CACHE_MAP Map = (PNOCC_CACHE_MAP)SectionObjectPointer->SharedCacheMap;
|
|
|
|
|
|
|
|
|
|
// Not cached
|
|
|
|
|
if (!Map)
|
|
|
|
|
{
|
|
|
|
|
if (IoStatus)
|
|
|
|
|
{
|
|
|
|
|
IoStatus->Status = STATUS_SUCCESS;
|
|
|
|
|
IoStatus->Information = 0;
|
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CcpFlushCache(Map, FileOffset, Length, IoStatus, TRUE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
BOOLEAN
|
|
|
|
|
NTAPI
|
|
|
|
|
CcFlushImageSection
|
|
|
|
|
(PSECTION_OBJECT_POINTERS SectionObjectPointer,
|
|
|
|
|
MMFLUSH_TYPE FlushType)
|
|
|
|
|
{
|
|
|
|
|
PNOCC_CACHE_MAP Map = (PNOCC_CACHE_MAP)SectionObjectPointer->SharedCacheMap;
|
|
|
|
|
PNOCC_BCB Bcb;
|
|
|
|
|
PLIST_ENTRY Entry;
|
|
|
|
|
IO_STATUS_BLOCK IOSB;
|
|
|
|
|
BOOLEAN Result = TRUE;
|
|
|
|
|
|
|
|
|
|
if (!Map) return TRUE;
|
|
|
|
|
|
|
|
|
|
for (Entry = Map->AssociatedBcb.Flink;
|
|
|
|
|
Entry != &Map->AssociatedBcb;
|
|
|
|
|
Entry = Entry->Flink)
|
|
|
|
|
{
|
|
|
|
|
Bcb = CONTAINING_RECORD(Entry, NOCC_BCB, ThisFileList);
|
|
|
|
|
|
|
|
|
|
if (!Bcb->Dirty) continue;
|
|
|
|
|
|
|
|
|
|
switch (FlushType)
|
|
|
|
|
{
|
|
|
|
|
case MmFlushForDelete:
|
|
|
|
|
CcPurgeCacheSection
|
|
|
|
|
(SectionObjectPointer,
|
|
|
|
|
&Bcb->FileOffset,
|
|
|
|
|
Bcb->Length,
|
|
|
|
|
FALSE);
|
|
|
|
|
break;
|
|
|
|
|
case MmFlushForWrite:
|
|
|
|
|
CcFlushCache
|
|
|
|
|
(SectionObjectPointer,
|
|
|
|
|
&Bcb->FileOffset,
|
|
|
|
|
Bcb->Length,
|
|
|
|
|
&IOSB);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Always succeeds for us
|
|
|
|
|
PVOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcRemapBcb(IN PVOID Bcb)
|
|
|
|
|
{
|
|
|
|
|
CcpLock();
|
|
|
|
|
ASSERT(RtlTestBit(CcCacheBitmap, ((PNOCC_BCB)Bcb) - CcCacheSections));
|
|
|
|
|
CcpReferenceCache(((PNOCC_BCB)Bcb) - CcCacheSections);
|
|
|
|
|
CcpUnlock();
|
|
|
|
|
return Bcb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcShutdownSystem()
|
|
|
|
|
{
|
|
|
|
|
ULONG i;
|
|
|
|
|
|
|
|
|
|
DPRINT1("CC: Shutdown\n");
|
|
|
|
|
|
|
|
|
|
for (i = 0; i < CACHE_NUM_SECTIONS; i++)
|
|
|
|
|
{
|
|
|
|
|
PNOCC_BCB Bcb = &CcCacheSections[i];
|
|
|
|
|
if (Bcb->SectionObject)
|
|
|
|
|
{
|
|
|
|
|
DPRINT1
|
|
|
|
|
("Evicting #%02x %08x%08x %wZ\n",
|
|
|
|
|
i,
|
|
|
|
|
Bcb->FileOffset.u.HighPart, Bcb->FileOffset.u.LowPart,
|
|
|
|
|
&MmGetFileObjectForSection
|
|
|
|
|
((PROS_SECTION_OBJECT)Bcb->SectionObject)->FileName);
|
|
|
|
|
CcpFlushCache(Bcb->Map, NULL, 0, NULL, TRUE);
|
|
|
|
|
Bcb->Dirty = FALSE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
DPRINT1("Done\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcRepinBcb(IN PVOID Bcb)
|
|
|
|
|
{
|
|
|
|
|
CcpLock();
|
|
|
|
|
ASSERT(RtlTestBit(CcCacheBitmap, ((PNOCC_BCB)Bcb) - CcCacheSections));
|
|
|
|
|
DPRINT("CcRepinBcb(#%x)\n", ((PNOCC_BCB)Bcb) - CcCacheSections);
|
|
|
|
|
CcpReferenceCache(((PNOCC_BCB)Bcb) - CcCacheSections);
|
|
|
|
|
CcpUnlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
VOID
|
|
|
|
|
NTAPI
|
|
|
|
|
CcUnpinRepinnedBcb(IN PVOID Bcb,
|
|
|
|
|
IN BOOLEAN WriteThrough,
|
|
|
|
|
OUT PIO_STATUS_BLOCK IoStatus)
|
|
|
|
|
{
|
|
|
|
|
PNOCC_BCB RealBcb = (PNOCC_BCB)Bcb;
|
|
|
|
|
|
|
|
|
|
if (WriteThrough)
|
|
|
|
|
{
|
|
|
|
|
DPRINT("BCB #%x\n", RealBcb - CcCacheSections);
|
|
|
|
|
|
|
|
|
|
CcpFlushCache
|
|
|
|
|
(RealBcb->Map,
|
|
|
|
|
&RealBcb->FileOffset,
|
|
|
|
|
RealBcb->Length,
|
|
|
|
|
IoStatus, RealBcb->Dirty);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
CcUnpinData(Bcb);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* EOF */
|