[lc-checkins] CVS: linux/fs/proc proc_misc.c,1.4,1.5
Status: Beta
Brought to you by:
nitin_sf
|
From: Rodrigo S. de C. <rc...@us...> - 2002-05-29 21:28:58
|
Update of /cvsroot/linuxcompressed/linux/fs/proc
In directory usw-pr-cvs1:/tmp/cvs-serv29510/fs/proc
Modified Files:
proc_misc.c
Log Message:
- Support for LZO compression algorithm is back
echo 2 > /proc/sys/vm/comp_cache/algorithm
- Now there is a /proc/comp_cache_hist that shows the free space histogram.
That histogram now also displays how many fragments the pages have, so you
have a better picture of what's going on in the compressed cache.
Index: proc_misc.c
===================================================================
RCS file: /cvsroot/linuxcompressed/linux/fs/proc/proc_misc.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -r1.4 -r1.5
*** proc_misc.c 15 May 2002 18:05:35 -0000 1.4
--- proc_misc.c 29 May 2002 21:28:54 -0000 1.5
***************
*** 525,528 ****
--- 525,529 ----
#ifdef CONFIG_COMP_CACHE
{"comp_cache_stat", comp_cache_stat_read_proc},
+ {"comp_cache_hist", comp_cache_hist_read_proc},
#endif
{"devices", devices_read_proc},
|