2993
Comment:
|
3950
Add link to project home page
|
Deletions are marked like this. | Additions are marked like this. |
Line 5: | Line 5: |
This page contains list of patches and other relatd code as it is being developed for Compressed Caching (for 2.6.x kernels) project. You can always find most up-to-date code at Project CVS (at linuxcompressed.sourceforge.net). Code is placed here when it achieves any particular (maybe small) thing. | This page contains list of patches and other relatd code as it is being developed for Compressed Caching (for 2.6.x kernels) project. You can always find most up-to-date code at Project Git repository ('''git://dev.laptop.org/projects/linux-mm-cc'''). ---- || [http://linuxcompressed.sourceforge.net/ Project Home Page] || CompressedCaching || [http://dev.laptop.org/git.do?p=projects/linux-mm-cc;a=summary Git (WebView)] || |
Line 7: | Line 9: |
The code is presently very raw but its helping me getting more experience with VMM code and how things are to be done :) | === Kernel changes to support Compressed Caching: === ''' (These are old patches kept here for reference. Much water has passed since then. For most up-to-date code checkout the Git repository).''' |
Line 9: | Line 12: |
---- === Kernel changes to support Compressed Caching: === |
|
Line 19: | Line 20: |
WKdm de/compression algorithm: attachment:compress-test.tar.gz | Kernel module to test de/compression algorithms (WKdm, WK4x4, LZO): attachment:compress-test.tar.gz |
Line 25: | Line 26: |
Currently, I have only ported WKdm to kernel mode: ( attachment:compress-test.tar.gz ): This is a kernel module to test port of WKdm algorithm to kernel mode. It creates two /proc entries: /proc/{compress, decompress} which behave as: | Now, all three algos are ported to kernel space - WKdm, WK4x4 and LZO. You can test them all using this module. It creates 3 /proc entries: /proc/compress-test/{compress, decompress, algo_idx} as described below: (for some detail see README with this module) |
Line 27: | Line 28: |
* Writing a file to /proc/compress compresses the input file (input file must be <= 4K i.e. PAGE_SIZE) and stores it in an internal buffer. * Reading /proc/decompress again shows decompressed output. * Reading /proc/compress stores statistics (currently only original and compressed size) like de/compression time, dictionary hits (partial matches, exact matches, missses). |
''' In short:''' |
Line 31: | Line 30: |
This makes it easy to test algotithm by simply comparing original file with /proc/decompress output and statistics can be obtained by reading /proc/compress. This module will serve as simple test-bed when porting other important de/compression algorithms w.r.t compressed caching (WK4x4, LZO). | __''Write to /proc/compress-test entries:''__ 1. ''compress'': compress data witten to it and store in internal buffer. 2. ''algo_idx'': write index of algo you want to test (0: WKdm, 1: WK4x4, 2: LZO) __''Read from /proc/compress-test entries:''__ 1. ''compress'': show original and compressed size (TODO: add other stats like time taken too) 2. ''decompress'': decompress compressed data stored in internal buffer. 3. ''algo_idx'': shows list of algos supported with their index. Also commited all these algos to GIT repo: git://dev.laptop.org/projects/linux-mm-cc ---- === Compression Structure Implementation: === attachment:storage-test.tar.gz : This module implements compression structure as described on CompressedCaching. * The storage begins as a single page. As you add pages to it, it expands till it reaches its max limit. As you take out pages, it shrinks, freeing up pages when it has no chunks left. * Adjacent free chunks are merged together. * Each page can be compressed using different algo. Please see README for usage. ''' In short:''' Interface is via /proc: /proc/storage-test/{readpage, writepage, show_structure} 1. ''writepage'': write a page on this to compress and store it in ccache. 2. ''readpage'': write 'id' (see README) of page you want. 3. ''show_structure'': read to show current snapshot of ccache storage. ---- |
[:NitinGupta:Nitin Gupta]
MailTo(nitingupta.mail AT gmail DOT com)
This page contains list of patches and other relatd code as it is being developed for Compressed Caching (for 2.6.x kernels) project. You can always find most up-to-date code at Project Git repository (git://dev.laptop.org/projects/linux-mm-cc).
[http://linuxcompressed.sourceforge.net/ Project Home Page] |
[http://dev.laptop.org/git.do?p=projects/linux-mm-cc;a=summary Git (WebView)] |
Kernel changes to support Compressed Caching:
(These are old patches kept here for reference. Much water has passed since then. For most up-to-date code checkout the Git repository).
- [attachment:toy-cc-2.6.16-rc4.diff Toy ccache patch]: These are few lines I added to 2.6.16-rc4 while going through VMM code. Just some printk()s to simply highlight some kernel entry points for compressed caching work.
- [attachment:patch-cc-2.6.16-radix-replace-stable.diff patch-cc-2.6.16-radix-replace-stable]: Replace original page (for now, only clean page cache pages) with a 'chunk head' when it is to be freed under memory pressure and simply store original page uncompressed. When page cache lookup is performed, again replace the 'chunk head' with original page. This patch uses simplified (and inefficient) locking in page cache lookup functions to make it stable for now.
- [attachment:patch-cc-2.6.16-better-locking-unstable.diff patch-cc-2.6.16-better-locking-unstable]: This was an attempt to get a better (more efficint) locking in page cache lookup functions but it is not quite as stable as previous simplified patch. It causes apps to freeze as swap usage increase.
Compression algorithms to kernel mode:
Kernel module to test de/compression algorithms (WKdm, WK4x4, LZO): attachment:compress-test.tar.gz
There are basically three main algorithms that are well studied w.r.t compressed caching by previous works -- WKdm, WK4x4, LZO.
Of these, WKdm, WK4x4 are designed to handle anon pages (non filesystem pages) while LZO is more suitable for filesystem data. (Also, in general, compression speed is in order: WKdm > WK4x4 > LZO, while compression factor order is, in general, reverse).
Now, all three algos are ported to kernel space - WKdm, WK4x4 and LZO. You can test them all using this module. It creates 3 /proc entries: /proc/compress-test/{compress, decompress, algo_idx} as described below: (for some detail see README with this module)
In short:
Write to /proc/compress-test entries:
1. compress: compress data witten to it and store in internal buffer.
2. algo_idx: write index of algo you want to test (0: WKdm, 1: WK4x4, 2: LZO)
Read from /proc/compress-test entries:
1. compress: show original and compressed size (TODO: add other stats like time taken too)
2. decompress: decompress compressed data stored in internal buffer.
3. algo_idx: shows list of algos supported with their index.
Also commited all these algos to GIT repo: git://dev.laptop.org/projects/linux-mm-cc
Compression Structure Implementation:
attachment:storage-test.tar.gz : This module implements compression structure as described on CompressedCaching.
- The storage begins as a single page. As you add pages to it, it expands till it reaches its max limit. As you take out pages, it shrinks, freeing up pages when it has no chunks left.
- Adjacent free chunks are merged together.
- Each page can be compressed using different algo.
Please see README for usage.
In short:
Interface is via /proc:
/proc/storage-test/{readpage, writepage, show_structure}
1. writepage: write a page on this to compress and store it in ccache.
2. readpage: write 'id' (see README) of page you want.
3. show_structure: read to show current snapshot of ccache storage.