Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 75 of file ext2.c.
Referenced by Ext2CommonCreate(), and Ext2Mount().
{ TRACE("Ext2OpenVolume() DriveNumber = 0x%x VolumeStartSector = %d\n", DriveNumber, VolumeStartSector); // Store the drive number and start sector Ext2DriveNumber = DriveNumber; Ext2VolumeStartSector = VolumeStartSector; if (!MachDiskGetDriveGeometry(DriveNumber, &Ext2DiskGeometry)) { return FALSE; } // // Initialize the disk cache for this drive // if (!CacheInitializeDrive(DriveNumber)) { return FALSE; } // Read in the super block if (!Ext2ReadSuperBlock()) { return FALSE; } // Read in the group descriptors if (!Ext2ReadGroupDescriptors()) { return FALSE; } return TRUE; }