home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / KERNEL-S / V1.2 / LINUX-1.2 / LINUX-1 / linux / fs / ext2 / CHANGES < prev    next >
Encoding:
Text File  |  1994-11-04  |  7.8 KB  |  141 lines

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