Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matt-wu/Ext3Fsd.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Wu <matt@ext2fsd.com>2017-10-31 08:17:38 +0300
committerMatt Wu <matt@ext2fsd.com>2017-10-31 08:17:38 +0300
commitdaef5d5604c15c44268919a3da5275063e2f4fca (patch)
tree74c168ccacddfc58bc798140068ac48eb6143300 /Ext3Fsd
parent2aaba01aaca9ea5594d4cf1b3725e27cfa25ba06 (diff)
Version & Modification History updatedExt3Fsd-0.69
Diffstat (limited to 'Ext3Fsd')
-rw-r--r--Ext3Fsd/Ext3fsd.rc8
-rw-r--r--Ext3Fsd/include/ext2fs.h4
-rw-r--r--Ext3Fsd/notes.txt14
-rw-r--r--Ext3Fsd/readme.txt9
4 files changed, 23 insertions, 12 deletions
diff --git a/Ext3Fsd/Ext3fsd.rc b/Ext3Fsd/Ext3fsd.rc
index 8e198fc..5792360 100644
--- a/Ext3Fsd/Ext3fsd.rc
+++ b/Ext3Fsd/Ext3fsd.rc
@@ -19,8 +19,8 @@
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 0,68,7,9
- PRODUCTVERSION 0,68,7,9
+ FILEVERSION 0,69,11,1
+ PRODUCTVERSION 0,69,11,1
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -38,14 +38,14 @@ BEGIN
VALUE "Comments", "Matt Wu <matt@ext2fsd.com>\0"
VALUE "CompanyName", "www.ext2fsd.com\0"
VALUE "FileDescription", "Ext2 File System Driver for Windows\0"
- VALUE "FileVersion", "0.68.7.9\0"
+ VALUE "FileVersion", "0.69.11.1\0"
VALUE "InternalName", "Ext2Fsd.sys\0"
VALUE "LegalCopyright", "GPLv2\0"
VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "Ext2Fsd.sys\0"
VALUE "PrivateBuild", "\0"
VALUE "ProductName", "Ext2 File System Driver\0"
- VALUE "ProductVersion", "0.68.7.9\0"
+ VALUE "ProductVersion", "0.69.11.1\0"
VALUE "SpecialBuild", "\0"
END
END
diff --git a/Ext3Fsd/include/ext2fs.h b/Ext3Fsd/include/ext2fs.h
index 1e80596..e28cd78 100644
--- a/Ext3Fsd/include/ext2fs.h
+++ b/Ext3Fsd/include/ext2fs.h
@@ -41,7 +41,7 @@
/* STRUCTS & CONSTS******************************************************/
-#define EXT2FSD_VERSION "0.68"
+#define EXT2FSD_VERSION "0.69"
/* WDK DEFINITIONS ******************************************************/
@@ -708,7 +708,7 @@ typedef struct _EXT2_VCB {
// Sector size in bits
ULONG SectorBits;
- // Aligned size (Page or Block)
+ // Minimal i/o size: min(PageSize, BlockSize)
ULONGLONG IoUnitSize;
// Bits of aligned size
diff --git a/Ext3Fsd/notes.txt b/Ext3Fsd/notes.txt
index 743e439..592671a 100644
--- a/Ext3Fsd/notes.txt
+++ b/Ext3Fsd/notes.txt
@@ -1,12 +1,13 @@
==================================
-Release Notes for Ext2Fsd V0.68
+Release Notes for Ext2Fsd V0.69
==================================
Features implemented or bugfix:
- 1, FIXME: System hang caused by a deadlock in cache manipulation
- 2, Optimization: Reaper mechanism improved (global locks removed)
- 3, Feature: supporting multiple instances & users for Ext2Mgr
+ 1, FIXME: superblock corruption of EXT4 volumes with 64BIT mode enabled
+ 2, FIXME: possible corruption by race conditions in buffer-head reapering
+ 3, FIXME: possible deadlock issues (when flushing) caused by BCB locks
+ 4, FIXME: miscellaneous minor updates of Ext2Fsd code base
Supported Ext3/4 features:
@@ -23,8 +24,9 @@ Supported Ext3/4 features:
Unsupported Ext3/4 features:
- 1, journal: log-based operations, external journal
- 2, EA (extended attributes), ACL support
+ 1, 64BIT mode (to support 2^64 blocks)
+ 2, journal: log-based operations, external journal
+ 3, EA (extended attributes), ACL support
Features to be implemented in next release:
1, Extents management improvement
diff --git a/Ext3Fsd/readme.txt b/Ext3Fsd/readme.txt
index 13b2230..145f2c2 100644
--- a/Ext3Fsd/readme.txt
+++ b/Ext3Fsd/readme.txt
@@ -27,6 +27,15 @@ Everyone can get to him at http://www.acc.umu.se/~bosse/.
======================
Revision history
======================
+53, V0.69 2017-11-01
+
+Modifications from V0.68:
+
+ 1, FIXME: superblock corruption of EXT4 volumes with 64BIT mode enabled
+ 2, FIXME: possible corruption by race conditions in buffer-head reapering
+ 3, FIXME: possible deadlock issues (when flushing) caused by BCB locks
+ 4, FIXME: miscellaneous minor updates of Ext2Fsd code base
+
52, V0.68 2016-07-09
Modifications from V0.66: