mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Remove ROS-specific File Object Flags
svn path=/trunk/; revision=12820
This commit is contained in:
parent
d1a5b105f2
commit
49592c9234
2 changed files with 2 additions and 7 deletions
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: fcb.c,v 1.12 2004/11/24 11:02:15 ekohl Exp $
|
/* $Id$
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -235,8 +235,6 @@ NtfsFCBInitializeCache(PVCB Vcb,
|
||||||
RtlZeroMemory(newCCB,
|
RtlZeroMemory(newCCB,
|
||||||
sizeof(CCB));
|
sizeof(CCB));
|
||||||
|
|
||||||
FileObject->Flags = FileObject->Flags | FO_FCB_IS_VALID |
|
|
||||||
FO_DIRECT_CACHE_PAGING_READ;
|
|
||||||
FileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
|
FileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
|
||||||
FileObject->FsContext = Fcb;
|
FileObject->FsContext = Fcb;
|
||||||
FileObject->FsContext2 = newCCB;
|
FileObject->FsContext2 = newCCB;
|
||||||
|
@ -406,8 +404,6 @@ NtfsAttachFCBToFileObject(PDEVICE_EXTENSION Vcb,
|
||||||
}
|
}
|
||||||
memset(newCCB, 0, sizeof(CCB));
|
memset(newCCB, 0, sizeof(CCB));
|
||||||
|
|
||||||
FileObject->Flags = FileObject->Flags | FO_FCB_IS_VALID |
|
|
||||||
FO_DIRECT_CACHE_PAGING_READ;
|
|
||||||
FileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
|
FileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
|
||||||
FileObject->FsContext = Fcb;
|
FileObject->FsContext = Fcb;
|
||||||
FileObject->FsContext2 = newCCB;
|
FileObject->FsContext2 = newCCB;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program; if not, write to the Free Software
|
* along with this program; if not, write to the Free Software
|
||||||
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||||
*/
|
*/
|
||||||
/* $Id: fsctl.c,v 1.11 2004/12/25 11:18:38 navaraf Exp $
|
/* $Id$
|
||||||
*
|
*
|
||||||
* COPYRIGHT: See COPYING in the top level directory
|
* COPYRIGHT: See COPYING in the top level directory
|
||||||
* PROJECT: ReactOS kernel
|
* PROJECT: ReactOS kernel
|
||||||
|
@ -370,7 +370,6 @@ NtfsMountVolume(PDEVICE_OBJECT DeviceObject,
|
||||||
RtlZeroMemory(Ccb,
|
RtlZeroMemory(Ccb,
|
||||||
sizeof(CCB));
|
sizeof(CCB));
|
||||||
|
|
||||||
DeviceExt->StreamFileObject->Flags = DeviceExt->StreamFileObject->Flags | FO_FCB_IS_VALID | FO_DIRECT_CACHE_PAGING_READ;
|
|
||||||
DeviceExt->StreamFileObject->FsContext = Fcb;
|
DeviceExt->StreamFileObject->FsContext = Fcb;
|
||||||
DeviceExt->StreamFileObject->FsContext2 = Ccb;
|
DeviceExt->StreamFileObject->FsContext2 = Ccb;
|
||||||
DeviceExt->StreamFileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
|
DeviceExt->StreamFileObject->SectionObjectPointer = &Fcb->SectionObjectPointers;
|
||||||
|
|
Loading…
Reference in a new issue