Whamcloud - gitweb
doc/obd-howto.sgml: completed OBD tutorial section
[fs/lustre-release.git] / lustre / patches / patch-2.3.21
1 --- linux/include/linux/fs.h.org        Tue Oct 12 10:39:59 1999
2 +++ linux/include/linux/fs.h    Tue Oct 12 11:32:46 1999
3 @@ -934,6 +934,8 @@
4  
5  
6  extern struct super_block *get_super(kdev_t);
7 +struct super_block *get_empty_super(void);
8 +void remove_vfsmnt(kdev_t dev);
9  extern void put_super(kdev_t);
10  unsigned long generate_cluster(kdev_t, int b[], int);
11  unsigned long generate_cluster_swab32(kdev_t, int b[], int);
12 --- linux/fs/super.c.org        Tue Oct 12 10:39:05 1999
13 +++ linux/fs/super.c    Tue Oct 12 11:18:14 1999
14 @@ -135,7 +135,7 @@
15         return lptr;
16  }
17  
18 -static void remove_vfsmnt(kdev_t dev)
19 +void remove_vfsmnt(kdev_t dev)
20  {
21         struct vfsmount *lptr, *tofree;
22  
23 @@ -508,7 +508,7 @@
24  /*
25   * Find a super_block with no device assigned.
26   */
27 -static struct super_block *get_empty_super(void)
28 +struct super_block *get_empty_super(void)
29  {
30         struct super_block *s;
31  
32 --- linux/kernel/ksyms.c.or     Tue Oct 12 10:40:21 1999
33 +++ linux/kernel/ksyms.c        Tue Oct 12 11:22:45 1999
34 @@ -36,6 +36,7 @@
35  #include <linux/swap.h>
36  #include <linux/ctype.h>
37  #include <linux/file.h>
38 +#include <linux/iobuf.h>
39  #include <linux/console.h>
40  #include <linux/poll.h>
41  #include <linux/mm.h>
42 @@ -118,6 +119,8 @@
43  EXPORT_SYMBOL(update_atime);
44  EXPORT_SYMBOL(get_super);
45  EXPORT_SYMBOL(get_fs_type);
46 +EXPORT_SYMBOL(get_empty_super);
47 +EXPORT_SYMBOL(remove_vfsmnt);
48  EXPORT_SYMBOL(getname);
49  EXPORT_SYMBOL(_fput);
50  EXPORT_SYMBOL(igrab);
51 @@ -140,6 +143,9 @@
52  EXPORT_SYMBOL(d_path);
53  EXPORT_SYMBOL(__mark_buffer_dirty);
54  EXPORT_SYMBOL(__mark_inode_dirty);
55 +EXPORT_SYMBOL(free_kiovec);
56 +EXPORT_SYMBOL(brw_kiovec);
57 +EXPORT_SYMBOL(alloc_kiovec);
58  EXPORT_SYMBOL(get_empty_filp);
59  EXPORT_SYMBOL(init_private_file);
60  EXPORT_SYMBOL(filp_open);