Dear all,
I think there is a typo error in the 2.4.18-0.22pre8 for 2 files
fs/nspfs/dir.c fs/smbfs/dir.c . It will result in a compilation error,
here is the correction.
regards,
David
diff -Naur -X exclude-files orig/fs/ncpfs/dir.c
linuxcompressed/fs/ncpfs/dir.c
--- orig/fs/ncpfs/dir.c Wed Mar 7 21:53:48 2001
+++ linuxcompressed/fs/ncpfs/dir.c Mon Mar 4 08:56:46 2002
@@ -450,6 +450,7 @@
if (!ctl.page)
goto invalid_cache;
ctl.cache = kmap(ctl.page);
+ flush_comp_cache(&inode->i_data, ctl.ofs, ctl.page);
if (!Page_Uptodate(ctl.page))
goto invalid_cache;
}
diff -Naur -X exclude-files orig/fs/ncpfs/dir.c
linuxcompressed/fs/ncpfs/dir.c
--- orig/fs/ncpfs/dir.c Wed Mar 7 21:53:48 2001
+++ linuxcompressed/fs/ncpfs/dir.c Mon Mar 4 08:56:46 2002
@@ -450,6 +450,7 @@
if (!ctl.page)
goto invalid_cache;
ctl.cache = kmap(ctl.page);
+ flush_comp_cache(&inode->i_data, ctl.ofs, ctl.page);
if (!Page_Uptodate(ctl.page))
goto invalid_cache;
}
|