CHANGES
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. Changes from version 0.5a to version 0.5b
  2. =========================================
  3. - Now that we have sysctl(), the immutable flag cannot be changed when
  4.   the system is running at security level > 0.
  5. - Some cleanups in the code.
  6. - More consistency checks on directories.
  7. - The ext2.diff patch from Tom May <ftom@netcom.com> has been
  8.   integrated.  This patch replaces expensive "/" and "%" with
  9.   cheap ">>" and "&" where possible.
  10. Changes from version 0.5 to version 0.5a
  11. ========================================
  12. - Zero the partial block following the end of the file when a file
  13.   is truncated.
  14. - Dates updated in the copyright.
  15. - More checks when the filesystem is mounted: the count of blocks,
  16.   fragments, and inodes per group is checked against the block size.
  17. - The buffers used by the error routines are now static variables, to
  18.   avoid using space on the kernel stack, as requested by Linus.
  19. - Some cleanups in the error messages (some versions of syslog contain
  20.   a bug which truncates an error message if it contains 'n').
  21. - Check that no data can be written to a file past the 2GB limit.
  22. - The famous readdir() bug has been fixed by Stephen Tweedie.
  23. - Added a revision level in the superblock.
  24. - Full support for O_SYNC flag of the open system call.
  25. - New mount options: `resuid=#uid' and `resgid=#gid'.  `resuid' causes
  26.   ext2fs to consider user #uid like root for the reserved blocks.
  27.   `resgid' acts the same way with group #gid.  New fields in the
  28.   superblock contain default values for resuid and resgid and can
  29.   be modified by tune2fs.
  30.   Idea comes from Rene Cougnenc <cougnenc@renux.frmug.fr.net>.
  31. - New mount options: `bsddf' and `minixdf'.  `bsddf' causes ext2fs
  32.   to remove the blocks used for FS structures from the total block
  33.   count in statfs.  With `minixdf', ext2fs mimics Minix behavior
  34.   in statfs (i.e. it returns the total number of blocks on the
  35.   partition).  This is intended to make bde happy :-)
  36. - New file attributes:
  37.   - Immutable files cannot be modified.  Data cannot be written to
  38.     these files.  They cannot be removed, renamed and new links cannot
  39.     be created.  Even root cannot modify the files.  He has to remove
  40.     the immutable attribute first.
  41.   - Append-only files: can only be written in append-mode when writing.
  42.     They cannot be removed, renamed and new links cannot be created.
  43.     Note: files may only be added to an append-only directory.
  44.   - No-dump files: the attribute is not used by the kernel.  My port
  45.     of dump uses it to avoid backing up files which are not important.
  46. - New check in ext2_check_dir_entry: the inode number is checked.
  47. - Support for big file systems: the copy of the FS descriptor is now
  48.   dynamically allocated (previous versions used a fixed size array).
  49.   This allows to mount 2GB+ FS.
  50. - Reorganization of the ext2_inode structure to allow other operating
  51.   systems to create specific fields if they use ext2fs as their native
  52.   file system.  Currently, ext2fs is only implemented in Linux but
  53.   will soon be part of Gnu Hurd and of Masix.
  54. Changes from version 0.4b to version 0.5
  55. ========================================
  56. - New superblock fields: s_lastcheck and s_checkinterval added
  57.   by Uwe Ohse <uwe@tirka.gun.de> to implement timedependent checks
  58.   of the file system
  59. - Real random numbers for secure rm added by Pierre del Perugia
  60.   <delperug@gla.ecoledoc.ibp.fr>
  61. - The mount warnings related to the state of a fs are not printed
  62.   if the fs is mounted read-only, idea by Nick Holloway
  63.   <alfie@dcs.warwick.ac.uk>
  64. Changes from version 0.4a to version 0.4b
  65. =========================================
  66. - Copyrights changed to include the name of my laboratory.
  67. - Clean up of balloc.c and ialloc.c.
  68. - More consistency checks.
  69. - Block preallocation added by Stephen Tweedie.
  70. - Direct reads of directories disallowed.
  71. - Readahead implemented in readdir by Stephen Tweedie.
  72. - Bugs in block and inodes allocation fixed.
  73. - Readahead implemented in ext2_find_entry by Chip Salzenberg.
  74. - New mount options:
  75.   `check=none|normal|strict'
  76.   `debug'
  77.   `errors=continue|remount-ro|panic'
  78.   `grpid', `bsdgroups'
  79.   `nocheck'
  80.   `nogrpid', `sysvgroups'
  81. - truncate() now tries to deallocate contiguous blocks in a single call
  82.   to ext2_free_blocks().
  83. - lots of cosmetic changes.
  84. Changes from version 0.4 to version 0.4a
  85. ========================================
  86.         - the `sync' option support is now complete.  Version 0.4 was not
  87.           supporting it when truncating a file.  I have tested the synchronous
  88.           writes and they work but they make the system very slow :-(  I have
  89.           to work again on this to make it faster.
  90.         - when detecting an error on a mounted filesystem, version 0.4 used
  91.           to try to write a flag in the super block even if the filesystem had
  92.           been mounted read-only.  This is fixed.
  93.         - the `sb=#' option now causes the kernel code to use the filesystem
  94.           descriptors located at block #+1.  Version 0.4 used the superblock
  95.           backup located at block # but used the main copy of the descriptors.
  96.         - a new file attribute `S' is supported.  This attribute causes
  97.           synchronous writes but is applied to a file not to the entire file
  98.           system (thanks to Michael Kraehe <kraehe@bakunin.north.de> for
  99.           suggesting it).
  100.         - the directory cache is inhibited by default.  The cache management
  101.           code seems to be buggy and I have to look at it carefully before
  102.           using it again.
  103.         - deleting a file with the `s' attribute (secure deletion) causes its
  104.           blocks to be overwritten with random values not with zeros (thanks to
  105.           Michael A. Griffith <grif@cs.ucr.edu> for suggesting it).
  106.         - lots of cosmetic changes have been made.
  107. Changes from version 0.3 to version 0.4
  108. =======================================
  109.         - Three new mount options are supported: `check', `sync' and `sb=#'.
  110.           `check' tells the kernel code to make more consistency checks
  111.           when the file system is mounted.  Currently, the kernel code checks
  112.           that the blocks and inodes bitmaps are consistent with the free
  113.           blocks and inodes counts.  More checks will be added in future
  114.           releases.
  115.           `sync' tells the kernel code to use synchronous writes when updating
  116.           an inode, a bitmap, a directory entry or an indirect block.  This
  117.           can make the file system much slower but can be a big win for files
  118.           recovery in case of a crash (and we can now say to the BSD folks
  119.           that Linux also supports synchronous updates :-).
  120.           `sb=#' tells the kernel code to use an alternate super block instead
  121.           of its master copy.  `#' is the number of the block (counted in
  122.           1024 bytes blocks) which contains the alternate super block.
  123.           An ext2 file system typically contains backups of the super block
  124.           at blocks 8193, 16385, and so on.
  125.         - I have change the meaning of the valid flag used by e2fsck.  it
  126.           now contains the state of the file system.  If the kernel code
  127.           detects an inconsistency while the file system is mounted, it flags
  128.           it as erroneous and e2fsck will detect that on next run.
  129.         - The super block now contains a mount counter.  This counter is
  130.           incremented each time the file system is mounted read/write.   When
  131.           this counter becomes bigger than a maximal mount counts (also stored
  132.           in the super block), e2fsck checks the file system, even if it had
  133.           been unmounted cleanly, and resets this counter to 0.
  134.         - File attributes are now supported.  One can associate a set of
  135.           attributes to a file.  Three attributes are defined:
  136.           `c': the file is marked for automatic compression,
  137.           `s': the file is marked for secure deletion: when the file is
  138.           deleted, its blocks are zeroed and written back to the disk,
  139.           `u': the file is marked for undeletion: when the file is deleted,
  140.           its contents are saved to allow a future undeletion.
  141.           Currently, only the `s' attribute is implemented in the kernel
  142.           code.  Support for the other attributes will be added in a future
  143.           release.
  144.         - a few bugs related to times updates have been fixed by Bruce
  145.           Evans and me.
  146.         - a bug related to the links count of deleted inodes has been fixed.
  147.           Previous versions used to keep the links count set to 1 when a file
  148.           was deleted.  The new version now sets links_count to 0 when deleting
  149.           the last link.
  150.         - a race condition when deallocating an inode has been fixed by
  151.           Stephen Tweedie.