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
AgeCommit message (Collapse)Author
2016-05-21Add EA operation IRP codesKaho Ng
2016-05-21EA: Remove resetting EaIndex when end of EA list is reachedKaho Ng
2016-05-21EA: remove PAGED_CODE()Kaho Ng
2016-05-21ea: some cosmetic fixesKaho Ng
2016-05-20volinfo: add flags to indicate the file system supports EA.Kaho Ng
2016-05-20Initial FILE_EA_INFORMATION::EaSize supportKaho Ng
2016-05-20Initial Ext2QueryEa supportKaho Ng
2016-05-18EA: two changesKaho Ng
- Add EaIndex to EXT2_CCB structure to indicate which EA entries we are on currently - Add stub code to Ext2QueryEa
2016-05-17EA: initial Ext2SetEa supportKaho Ng
2016-05-16ext4_xattr: fix compiling errorKaho Ng
2016-05-16ext4_xattr: convert __s32 to size_t for ext4_xattr_ref::inode/block_size_remKaho Ng
2016-05-16ext4_xattr: allow more entries to be put in smaller spaceKaho Ng
2016-05-16VS2015 Project file: add ea.cKaho Ng
2016-05-16module.h: add extents_bforget declarationKaho Ng
2016-05-16ext4_xattr: refine ENOSPC handlingKaho Ng
2016-05-15Numorous changes:Kaho Ng
- EA: Add more stub code further - create: Do not add testing EA entries upon opening files - ext4_xattr: ext4_fs_put_xattr_ref now has return value
2016-05-14EA: add EA handling stubKaho Ng
2016-05-14Remove unnecessary tree.hKaho Ng
2016-05-14ext4_xattr: Use rbtree.h implementation instead of tree.hKaho Ng
2016-05-12Make sure the filesystem supports i_extra_isize fieldKaho Ng
2016-05-11Initial EA supports.Kaho Ng
2016-04-28FIXME: make ERESOURCE always 8-byte-alignedMatt Wu
Windows kernel requires ERESOURCE sizeof(PVOID)-aligned
2016-04-27Feature: reapear mechanism implemented for FcbMatt Wu
1) big vcb-lock killed for create/cleanup/close/setinfo 2) flexible FcbLock and McbLock to balance Fcb's reaper 3) thread id added for reaper thread (mainly for debugging)
2016-04-27FIXME: deadlock upon BCB resourceMatt Wu
New buffer-head created during flushing, thus deadlock
2016-04-27FIXME: comments improved with error status printedMatt Wu
2016-04-27FIXME: commit 12399a reverted.Matt Wu
Extents merging need re-design.
2016-04-19Ext3Fsd 0.66Ext3Fsd-0.66Matt Wu
2016-04-13FIXME: skip any cache-flushings when being mountedMatt Wu
2016-04-12FIXME: BSOD issue during mounting as readonlyMatt Wu
Before Vcb is initialized, Vcb flushing operation is called, then memory access violatiion occurs.
2016-04-12Ext4 extents tree rebalance (leaf nodes merging)Matt Wu
patch merged from branch: gkaho1234/Ext3Fsd
2016-04-11Projects files update for JenkinsMatt Wu
2016-04-10Ext3Fsd 0.65Ext3Fsd-0.65Matt Wu
2016-04-10Performance improvement: big lock dividiedMatt Wu
2016-04-07FIXME: check alignments for new ERESOURCEs locksMatt Wu
2016-04-07Performance improvement (ops upon small files):Matt Wu
Pre-load all group descriptions, otherwise buffer-head-loading ( Vcb stream mapping etc) everytime when being accessed would cause huge performance loss
2016-04-07FIXME: atomic_t using LONG instread of intMatt Wu
2016-04-07Reaper threads implemented for buffer headMatt Wu
2016-04-07FIXME: buffer_head accounting moved to alloc/freeMatt Wu
2016-04-07FIXME: compiler-assertion for ERESOURCE alignmentMatt Wu
2016-04-07FIXME: minimize lock holding for oncached readingMatt Wu
2016-04-07FIXME: Ext2CreateMdl and Ext2DestroyMdl improvementsMatt Wu
2016-04-06Ext2Mgr project files updated for VS2008 and WDKMatt Wu
2016-04-06Ext3Fsd project files updated for VS2008Matt Wu
2016-04-06FIXME: Windows 2000 building brokenMatt Wu
2016-04-06FIXME: coding style (unix ending)Matt Wu
2016-04-06FIXME: coding style: unix ending being usedMatt Wu
2016-04-04FIXME: BSON on XP when querying registry valuesMatt Wu
Default is to be used forcely when registry value doesn't exist.
2016-04-03Ext3Fsd V0.64Matt Wu
2016-04-03Feature: User specified UID/GID supportedMatt Wu
2016-04-03Redesigned extent tree truncation procedure.Kaho Ng