Whamcloud - gitweb
- ext2_obd.c --- fix the bugs in read/write for Linux 2.4.3
[fs/lustre-release.git] / lustre / patches / patch-2.3.21
index b0c4712..2914b2d 100644 (file)
@@ -1,3 +1,34 @@
+--- linux/include/linux/fs.h.org       Tue Oct 12 10:39:59 1999
++++ linux/include/linux/fs.h   Tue Oct 12 11:32:46 1999
+@@ -934,6 +934,8 @@
+ extern struct super_block *get_super(kdev_t);
++struct super_block *get_empty_super(void);
++void remove_vfsmnt(kdev_t dev);
+ extern void put_super(kdev_t);
+ unsigned long generate_cluster(kdev_t, int b[], int);
+ unsigned long generate_cluster_swab32(kdev_t, int b[], int);
+--- linux/fs/super.c.org       Tue Oct 12 10:39:05 1999
++++ linux/fs/super.c   Tue Oct 12 11:18:14 1999
+@@ -135,7 +135,7 @@
+       return lptr;
+ }
+-static void remove_vfsmnt(kdev_t dev)
++void remove_vfsmnt(kdev_t dev)
+ {
+       struct vfsmount *lptr, *tofree;
+@@ -508,7 +508,7 @@
+ /*
+  * Find a super_block with no device assigned.
+  */
+-static struct super_block *get_empty_super(void)
++struct super_block *get_empty_super(void)
+ {
+       struct super_block *s;
 --- linux/kernel/ksyms.c.or    Tue Oct 12 10:40:21 1999
 +++ linux/kernel/ksyms.c       Tue Oct 12 11:22:45 1999
 @@ -36,6 +36,7 @@
  EXPORT_SYMBOL(get_empty_filp);
  EXPORT_SYMBOL(init_private_file);
  EXPORT_SYMBOL(filp_open);
---- linux/fs/super.c.or        Tue Oct 12 10:39:05 1999
-+++ linux/fs/super.c   Tue Oct 12 11:18:14 1999
-@@ -135,7 +135,7 @@
-       return lptr;
- }
--static void remove_vfsmnt(kdev_t dev)
-+void remove_vfsmnt(kdev_t dev)
- {
-       struct vfsmount *lptr, *tofree;
-@@ -508,7 +508,7 @@
- /*
-  * Find a super_block with no device assigned.
-  */
--static struct super_block *get_empty_super(void)
-+struct super_block *get_empty_super(void)
- {
-       struct super_block *s;
---- linux/include/linux/fs.h.or        Tue Oct 12 10:39:59 1999
-+++ linux/include/linux/fs.h   Tue Oct 12 11:32:46 1999
-@@ -934,6 +934,8 @@
- extern struct super_block *get_super(kdev_t);
-+struct super_block *get_empty_super(void);
-+void remove_vfsmnt(kdev_t dev);
- extern void put_super(kdev_t);
- unsigned long generate_cluster(kdev_t, int b[], int);
- unsigned long generate_cluster_swab32(kdev_t, int b[], int);