summaryrefslogtreecommitdiffstats
path: root/testsuites/fstests/fsdosfsformat01/fsdosfsformat01.doc (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-04-12testsuites/fstests/*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2014-03-21Change all references of rtems.com to rtems.org.Chris Johns1-1/+1
2014-01-07fsdosfsformat01.doc: Add contentsCynthia Rempel1-4/+18
2012-12-05fstests/fsdosfsformat01: New testRalf Kirchner1-1/+1
2012-05-11dosfs: Remove fat_file_datasync()Sebastian Huber1-1/+1
The fat_file_datasync() read every cluster of the file into the cache and then synchronized it step-by-step. For unmodified buffers this is a non-operation. For modified buffers this will wake-up the swapout task which performs then a single buffer write operation. This is usually quite inefficient. Firstly we do single buffer writes, secondly we may perform a lot of unnecessary read operations (for huge files this is really bad), and thirdly this leads likely to cache evictions. The synchronization procedure is replaced by a simple rtems_bdbuf_sync_dev(). This has the side-effect that also buffers not related to the file are synchronized, but since the modified list is normally short this should be acceptable.
2012-03-13Filesystem: Reference counting for locationsSebastian Huber1-6/+8
o A new data structure rtems_filesystem_global_location_t was introduced to be used for o the mount point location in the mount table entry, o the file system root location in the mount table entry, o the root directory location in the user environment, and o the current directory location in the user environment. During the path evaluation global start locations are obtained to ensure that the current file system instance will be not unmounted in the meantime. o The user environment uses now reference counting and is protected from concurrent access. o The path evaluation process was completely rewritten and simplified. The IMFS, RFS, NFS, and DOSFS use now a generic path evaluation method. Recursive calls in the path evaluation have been replaced with iteration to avoid stack overflows. Only the evaluation of symbolic links is recursive. No dynamic memory allocations and intermediate buffers are used in the high level path evaluation. No global locks are held during the file system instance specific path evaluation process. o Recursive symbolic link evaluation is now limited by RTEMS_FILESYSTEM_SYMLOOP_MAX. Applications can retrieve this value via sysconf(). o The device file system (devFS) uses now no global variables and allocation from the workspace. Node names are allocated from the heap. o The upper layer lseek() performs now some parameter checks. o The upper layer ftruncate() performs now some parameter checks. o unmask() is now restricted to the RWX flags and protected from concurrent access. o The fchmod_h and rmnod_h file system node handlers are now a file system operation. o The unlink_h operation has been removed. All nodes are now destroyed with the rmnod_h operation. o New lock_h, unlock_h, clonenod_h, and are_nodes_equal_h file system operations. o The path evaluation and file system operations are now protected by per file system instance lock and unlock operations. o Fix and test file descriptor duplicate in fcntl(). o New test fstests/fsnofs01.
2010-06-10Fixed CVS ID.Sebastian Huber1-3/+3
2010-06-10Typo.Joel Sherrill1-3/+3
2010-06-10Fixed CVS ID.Sebastian Huber1-1/+3
2010-06-082010-06-08 Sebastian Huber <Sebastian.Huber@embedded-brains.de>Sebastian Huber1-0/+7
* spmkdir/.cvsignore, spmkdir/Makefile.am, spmkdir/init.c, spmkdir/spmkdir.doc, spmkdir/spmkdir.scn: New files.