[lc-checkins] CVS: linux/fs buffer.c,1.15,1.16
Status: Beta
Brought to you by:
nitin_sf
From: Rodrigo S. de C. <rc...@us...> - 2002-11-22 16:02:06
|
Update of /cvsroot/linuxcompressed/linux/fs In directory sc8-pr-cvs1:/tmp/cvs-serv13256/fs Modified Files: buffer.c Log Message: Features o New clean page adaptability. This policy disables compression of clean pages when it is not worth it (i.e., most pages are compressed and freed, without being reclaimed to the system). o Two new configuration options to disable the whole adaptability policy and clean page adaptability separately. It was most used for some tests, but it might be useful for someone which has compressed caching performing not very well. Bug Fixes o Make the LZO code compile on Athlon systems o __read_comp_cache(): if a dirty fragment was supposed to be freed, it wouldn't be actually freed because we forgot to drop a reference on the fragment. Cleanups o Lots, mainly in adaptivity.c Index: buffer.c =================================================================== RCS file: /cvsroot/linuxcompressed/linux/fs/buffer.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** buffer.c 9 May 2002 12:31:01 -0000 1.15 --- buffer.c 22 Nov 2002 16:01:33 -0000 1.16 *************** *** 797,801 **** UnlockPage(page); - return; --- 797,800 ---- |