~ubuntu-branches/ubuntu/vivid/aufs/vivid

« back to all changes in this revision

Viewing changes to lhash.patch

  • Committer: Bazaar Package Importer
  • Author(s): Julian Andres Klode
  • Date: 2007-12-15 23:32:51 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20071215233251-2vgs2lmg8mai5d9e
Tags: 0+20071211-1ubuntu1
* Merge from debian unstable (LP: #175705), remaining changes:
  - Fix for Ubuntu Kernels (updated)
* patches/01_vserver.dpatch: Removed
* patches/06_ubuntu.dpatch: Added (update of ubuntu patch)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Index: fs/namei.c
2
 
===================================================================
3
 
RCS file: linux-2.6.19/fs/namei.c,v
4
 
retrieving revision 1.1
5
 
retrieving revision 1.3
6
 
diff -u -p -r1.1 -r1.3
7
 
--- fs/namei.c  1 Dec 2006 11:38:24 -0000       1.1
8
 
+++ fs/namei.c  8 Dec 2006 07:47:33 -0000       1.3
9
 
@@ -1251,7 +1251,7 @@ int __user_path_lookup_open(const char _
10
 
  * needs parent already locked. Doesn't follow mounts.
11
 
  * SMP-safe.
12
 
  */
13
 
-static struct dentry * __lookup_hash(struct qstr *name, struct dentry * base, struct nameidata *nd)
14
 
+struct dentry * __lookup_hash(struct qstr *name, struct dentry * base, struct nameidata *nd)
15
 
 {
16
 
        struct dentry * dentry;
17
 
        struct inode *inode;
18
 
@@ -2761,6 +2761,7 @@ EXPORT_SYMBOL(follow_up);
19
 
 EXPORT_SYMBOL(get_write_access); /* binfmt_aout */
20
 
 EXPORT_SYMBOL(getname);
21
 
 EXPORT_SYMBOL(lock_rename);
22
 
+EXPORT_SYMBOL(__lookup_hash);
23
 
 EXPORT_SYMBOL(lookup_one_len);
24
 
 EXPORT_SYMBOL(page_follow_link_light);
25
 
 EXPORT_SYMBOL(page_put_link);
26
 
Index: include/linux/namei.h
27
 
===================================================================
28
 
RCS file: linux-2.6.19/include/linux/namei.h,v
29
 
retrieving revision 1.1
30
 
retrieving revision 1.3
31
 
diff -u -p -r1.1 -r1.3
32
 
--- include/linux/namei.h       1 Dec 2006 11:38:24 -0000       1.1
33
 
+++ include/linux/namei.h       8 Dec 2006 07:47:33 -0000       1.3
34
 
@@ -76,6 +76,7 @@ extern struct file *lookup_instantiate_f
35
 
 extern struct file *nameidata_to_filp(struct nameidata *nd, int flags);
36
 
 extern void release_open_intent(struct nameidata *);
37
 
 
38
 
+struct dentry * __lookup_hash(struct qstr *name, struct dentry * base, struct nameidata *nd);
39
 
 extern struct dentry * lookup_one_len(const char *, struct dentry *, int);
40
 
 
41
 
 extern int follow_down(struct vfsmount **, struct dentry **);