Version 0.4.41 if the first version of e2compress patch for kernel 2.4.16
=========================================================================

Changes from 0.4.41 to 0.4.42 :
===============================
	- Delete the i_blocks field decrementation (Thanks to Peter Wächtler).
	- Clear dirty bit of buffers not in compressed area, after compression.
	- Unlock pages before sync of inode, after compression.
	- Change parameters (OSYNC_METADATA|OSYNC_DATA) of generic_osync_inode()
	  calls to write data inode.
	- Ext2_readpage() returns an error code.
	- Allocation of working area even when readonly mount.
	- Clear dirty bit of buffers after uncompress in ext2_readpage.
	- Unlock page after free buffers in error case in ext2_readpage.

Changes from 0.4.42 to 0.4.43 :
===============================
	- Deadlock correction when compressing cluster and sync pages.
	- Management of MAPPED and DIRTY buffer flags.
	- Test of block number in compression.
	- Test if page is dirty to allocate buffer on device when compressing.
	- When decompress cluster use the size of the cluster and not the size
	  of the file, because it can be called from vmtruncate (the size of the 
	  file has already changed).
	- Management of working area lock.
	- When (de)compress file containing holes, the data must be moved and not
	  only the block number.
	- New function ext2_decompress_pages() to allocate blocks for a cluster
	  already (block) decompressed. It is now called in ext2_decompress_cluster()
	  and not only in ext2_file_write().
