UMSDOS in 2.3.9, 2.3.10

Mike (mike@oxlug.org)
Sat, 17 Jul 1999 17:43:14 +0100 (BST)


unresolved symbol get_cached_page

get_cached_page doesn't appear to exist anywhere anymore (used to be in
mm/filemap.c), but is still in linux/mm.h (presumeably it shouldn't be?)

Also, I needed the following patch to make it compile (is this patch correct?):
diff -urN linux-2.3.10-old/fs/umsdos/inode.c linux-2.3.10/fs/umsdos/inode.c

--- linux-2.3.10-old/fs/umsdos/inode.c Fri May 14 07:18:21 1999
+++ linux-2.3.10/fs/umsdos/inode.c Sat Jul 17 12:32:21 1999
@@ -153,7 +153,7 @@
inode->i_op = &umsdos_file_inode_operations_no_bmap;
}
} else {
- if (inode->i_op->bmap != NULL) {
+ if (inode->i_op->get_block != NULL) {
inode->i_op = &umsdos_file_inode_operations;
} else {
inode->i_op = &umsdos_file_inode_operations_no_bmap;
d

-- 
Mike <rickettm@ox.compsoc.net>

Remember that there is an outside world to see and enjoy. -- Hans Liepmann

- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.rutgers.edu Please read the FAQ at http://www.tux.org/lkml/