[PATCH] swap write clustering for 2.4 (again :))

2000-12-28 Thread Marcelo Tosatti
Linus, The following patch changes swap_writepage() to try to do write clustering of phisically contiguous pages which are dirty and in the swapcache. Do you want to include it in 2.4 ? diff -Nur --exclude-from=exclude linux.orig/include/linux/mm.h linux/include/linux/mm.h --- linux.orig/incl

[PATCH] swap write clustering for 2.4 (4th time)

2000-12-27 Thread Marcelo Tosatti
Linus, The following patch changes swap_writepage() to try to do write clustering of phisically contiguous pages which are dirty and in the swapcache. The patch is pretty clean and small. Do you want to include it in 2.4? diff -Nur --exclude-from=exclude linux.orig/include/linux/mm.h linux/

[PATCH] swap write clustering for 2.4 (3rd time)

2000-12-26 Thread Marcelo Tosatti
Linus, The following patch changes swap_writepage() to try to do write clustering of phisically contiguous pages which are dirty and in the swapcache. Do you want to include it in 2.4? diff -Nur --exclude-from=exclude linux.orig/include/linux/mm.h linux/include/linux/mm.h --- linux.orig/inclu

[PATCH] swap write clustering for 2.4 (again)

2000-12-22 Thread Marcelo Tosatti
Linus, The following patch changes swap_writepage() to try to do write clustering of phisically contiguous pages which are dirty and in the swapcache. Do you want to include it in 2.4? diff -Nur --exclude-from=exclude linux.orig/include/linux/mm.h linux/include/linux/mm.h --- linux.orig/inclu

Re: [PATCH] swap write clustering

2000-12-21 Thread Marcelo Tosatti
On Thu, 21 Dec 2000, Andrew Morton wrote: > Marcelo Tosatti wrote: > > > > Hi, > > > > Basically this new swap_writepage function looks for dirty swapcache pages > > which may be contiguous (reverse and forward searching wrt to the physical > > address of the page being passed to swap_writepag

Re: [PATCH] swap write clustering

2000-12-21 Thread Andrew Morton
Marcelo Tosatti wrote: > > Hi, > > Basically this new swap_writepage function looks for dirty swapcache pages > which may be contiguous (reverse and forward searching wrt to the physical > address of the page being passed to swap_writepage) and builds a page list > which is written "at once". >

[PATCH] swap write clustering

2000-12-20 Thread Marcelo Tosatti
Hi, Basically this new swap_writepage function looks for dirty swapcache pages which may be contiguous (reverse and forward searching wrt to the physical address of the page being passed to swap_writepage) and builds a page list which is written "at once". The patch is against test13pre3. Co