2.3.12 missing symbols + UMSDOS compile fixes

Mike (mike@oxlug.org)
Sat, 31 Jul 1999 14:01:54 +0100 (BST)


These are needed for ipv6 module:

diff -urN linux-2.3.12-old/net/netsyms.c linux-2.3.10/net/netsyms.c
--- linux-2.3.12-old/net/netsyms.c Sat Jul 17 10:56:01 1999
+++ linux-2.3.12/net/netsyms.c Sat Jul 17 17:43:45 1999
@@ -178,7 +178,9 @@
#endif
EXPORT_SYMBOL(pneigh_lookup);
EXPORT_SYMBOL(pneigh_enqueue);
+EXPORT_SYMBOL(neigh_create);
EXPORT_SYMBOL(neigh_destroy);
+EXPORT_SYMBOL(neigh_lookup);
EXPORT_SYMBOL(neigh_parms_alloc);
EXPORT_SYMBOL(neigh_parms_release);
EXPORT_SYMBOL(neigh_rand_reach_time);

and this is needed to make umsdos compile:

diff -urN linux-2.3.12-old/fs/umsdos/inode.c linux-2.3.10/fs/umsdos/inode.c
--- linux-2.3.12-old/fs/umsdos/inode.c Fri May 14 07:18:21 1999
+++ linux-2.3.12/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;

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

If you are what you eat, does that mean Euell Gibbons really was a nut?

- 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/