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