Whamcloud - gitweb
Fixes to get things running on 2.4.3.
[fs/lustre-release.git] / lustre / patches / patch-2.2.10
1 --- linux-2.2.10/include/linux/fs.h.org Tue Aug  3 15:09:33 1999
2 +++ linux-2.2.10/include/linux/fs.h     Tue Aug  3 15:10:34 1999
3 @@ -897,6 +897,9 @@
4  #include <linux/minix_fs.h>
5  #include <linux/minix_fs_sb.h>
6  
7 +struct super_block *get_empty_super(void);
8 +void remove_vfsmnt(kdev_t dev);
9 +
10  #endif /* __KERNEL__ */
11  
12  #endif
13 --- linux-2.2.10/fs/super.c.org Tue Aug  3 15:08:09 1999
14 +++ linux-2.2.10/fs/super.c     Tue Aug  3 15:10:41 1999
15 @@ -135,7 +135,7 @@
16         return lptr;
17  }
18  
19 -static void remove_vfsmnt(kdev_t dev)
20 +void remove_vfsmnt(kdev_t dev)
21  {
22         struct vfsmount *lptr, *tofree;
23  
24 @@ -508,7 +508,7 @@
25  /*
26   * Find a super_block with no device assigned.
27   */
28 -static struct super_block *get_empty_super(void)
29 +struct super_block *get_empty_super(void)
30  {
31         struct super_block *s;
32  
33 --- linux-2.2.10/kernel/ksyms.c.org     Tue Aug  3 15:10:55 1999
34 +++ linux-2.2.10/kernel/ksyms.c Tue Aug  3 15:11:56 1999
35 @@ -78,6 +78,16 @@
36  #endif
37  EXPORT_SYMBOL(get_options);
38  
39 +/* obd stuff */
40 +
41 +
42 +
43 +EXPORT_SYMBOL(get_empty_super);
44 +EXPORT_SYMBOL(remove_vfsmnt);
45 +
46 +
47 +
48 +
49  /* process memory management */
50  EXPORT_SYMBOL(do_mmap);
51  EXPORT_SYMBOL(do_munmap);