Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / kernel_patches / patches / export_symbols-2.6.18-vanilla.patch
1 Index: linux-2.6/fs/filesystems.c
2 ===================================================================
3 --- linux-2.6.orig/fs/filesystems.c     2006-07-15 16:08:35.000000000 +0800
4 +++ linux-2.6/fs/filesystems.c  2006-07-15 16:14:19.000000000 +0800
5 @@ -29,7 +29,9 @@
6   */
7  
8  static struct file_system_type *file_systems;
9 -static DEFINE_RWLOCK(file_systems_lock);
10 +DEFINE_RWLOCK(file_systems_lock);
11 +
12 +EXPORT_SYMBOL(file_systems_lock);
13  
14  /* WARNING: This can be used only if we _already_ own a reference */
15  void get_filesystem(struct file_system_type *fs)
16 Index: linux-2.6/include/linux/fs.h
17 ===================================================================
18 --- linux-2.6.orig/include/linux/fs.h   2006-07-15 16:10:37.000000000 +0800
19 +++ linux-2.6/include/linux/fs.h        2006-07-15 16:14:19.000000000 +0800
20 @@ -1768,6 +1768,7 @@ static inline ssize_t blockdev_direct_IO
21  
22  extern const struct file_operations generic_ro_fops;
23  
24 +extern rwlock_t file_systems_lock;
25  #define special_file(m) (S_ISCHR(m)||S_ISBLK(m)||S_ISFIFO(m)||S_ISSOCK(m))
26  
27  extern int vfs_readlink(struct dentry *, char __user *, int, const char *);
28 Index: linux-2.6/fs/namespace.c
29 ===================================================================
30 --- linux-2.6.orig/fs/namespace.c       2006-07-15 16:10:33.000000000 +0800
31 +++ linux-2.6/fs/namespace.c    2006-07-15 16:14:19.000000000 +0800
32 @@ -1641,6 +1641,7 @@ void set_fs_pwd(struct fs_struct *fs, st
33                 mntput(old_pwdmnt);
34         }
35  }
36 +EXPORT_SYMBOL(set_fs_pwd);
37  
38  static void chroot_fs_refs(struct nameidata *old_nd, struct nameidata *new_nd)
39  {
40 Index: linux-2.6/kernel/exit.c
41 ===================================================================
42 --- linux-2.6.orig/kernel/exit.c        2006-07-15 16:08:34.000000000 +0800
43 +++ linux-2.6/kernel/exit.c     2006-07-15 16:14:19.000000000 +0800
44 @@ -305,6 +305,8 @@ static void reparent_to_init(void)
45         switch_uid(INIT_USER);
46  }
47  
48 +EXPORT_SYMBOL(reparent_to_init);
49 +
50  void __set_special_pids(pid_t session, pid_t pgrp)
51  {
52         struct task_struct *curr = current->group_leader;
53 Index: linux-2.6/fs/dcache.c
54 ===================================================================
55 --- linux-2.6.orig/fs/dcache.c  2006-07-15 16:14:00.000000000 +0800
56 +++ linux-2.6/fs/dcache.c       2006-07-15 16:14:19.000000000 +0800
57 @@ -1628,6 +1628,7 @@ int is_subdir(struct dentry * new_dentry
58  
59         return result;
60  }
61 +EXPORT_SYMBOL(is_subdir);
62  
63  void d_genocide(struct dentry *root)
64  {