> If you can put up the patch somewhere I'll add a link to the FAQ for
> people interested in getting both running for
> testing/benchmarketing/crashing/whatever.
here it is...
cd /usr/src/linux
patch -p1 < /path/to/jfs-common-v1.0.0-patch
patch -p1 < /path/to/jfs-2.4.5-v1.0.0-patch
patch < /path/to/fs.h.4jfs.patch --- include/linux/fs.h.orig Thu Jun 14 10:08:17 2001
+++ include/linux/fs.h Sun Jul 1 14:32:30 2001
@@ -322,6 +322,7 @@
#include <linux/proc_fs_i.h>
#include <linux/usbdev_fs_i.h>
#include <linux/xfs_fs_i.h>
+#include <linux/jfs_fs_i.h>
/*
* Attribute flags. These should be or-ed together to figure out what
@@ -498,6 +499,7 @@
struct socket socket_i;
struct usbdev_inode_info usbdev_i;
struct xfs_inode_info xfs_i;
+ struct jfs_inode_info jfs_i;
void *generic_ip;
} u;
};
@@ -675,6 +677,7 @@
#include <linux/ncp_fs_sb.h>
#include <linux/usbdev_fs_sb.h>
#include <linux/xfs_fs_sb.h>
+#include <linux/jfs_fs_sb.h>
extern struct list_head super_blocks;
@@ -728,6 +731,7 @@
struct ncp_sb_info ncpfs_sb;
struct usbdev_sb_info usbdevfs_sb;
struct xfs_sb_info xfs_sb;
+ struct jfs_sb_info jfs_sb;
void *generic_sbp;
} u;
/*
|