Update of /cvsroot/linuxcompressed/linux/mm
In directory usw-pr-cvs1:/tmp/cvs-serv28826/mm
Modified Files:
filemap.c
Log Message:
Bug fixes:
o Compilation error in filemap.c
o Clear dirty bit when a swap buffer page fails to be written. Otherwise,
once a swap buffer page fails to be written, never again it would free its
fragment.
Index: filemap.c
===================================================================
RCS file: /cvsroot/linuxcompressed/linux/mm/filemap.c,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -r1.37 -r1.38
*** filemap.c 31 Jul 2002 12:31:05 -0000 1.37
--- filemap.c 31 Jul 2002 20:48:59 -0000 1.38
***************
*** 1011,1015 ****
{
struct page *page = NULL;
! struct page **hash = page_hash(mapping, fragment->index);
/*
--- 1011,1015 ----
{
struct page *page = NULL;
! struct page **hash = page_hash(mapping, offset);
/*
|