]> git.pld-linux.org Git - packages/kernel.git/blobdiff - kernel-aufs3.patch
- 3.1.101
[packages/kernel.git] / kernel-aufs3.patch
index ba219b128a0ae9264169f956ebf14ddb7e974617..d9794070b902c1a3c2b62635d06206dd8c8baa81 100644 (file)
@@ -1,31 +1,31 @@
-aufs3.2 kbuild patch
+aufs3.10 kbuild patch
 
 diff --git a/fs/Kconfig b/fs/Kconfig
-index 5f4c45d..357a8a6 100644
+index c229f82..397b473 100644
 --- a/fs/Kconfig
 +++ b/fs/Kconfig
-@@ -215,6 +215,7 @@ source "fs/pstore/Kconfig"
- source "fs/sysv/Kconfig"
- source "fs/ufs/Kconfig"
+@@ -212,6 +212,7 @@ source "fs/ufs/Kconfig"
  source "fs/exofs/Kconfig"
+ source "fs/f2fs/Kconfig"
+ source "fs/efivarfs/Kconfig"
 +source "fs/aufs/Kconfig"
  
  endif # MISC_FILESYSTEMS
  
 diff --git a/fs/Makefile b/fs/Makefile
-index d2c3353..680ad8a 100644
+index 4fe6df3..4a57676 100644
 --- a/fs/Makefile
 +++ b/fs/Makefile
-@@ -123,3 +123,4 @@ obj-$(CONFIG_GFS2_FS)           += gfs2/
- obj-y                         += exofs/ # Multiple modules
+@@ -126,3 +126,4 @@ obj-y                              += exofs/ # Multiple modules
  obj-$(CONFIG_CEPH_FS)         += ceph/
  obj-$(CONFIG_PSTORE)          += pstore/
+ obj-$(CONFIG_EFIVAR_FS)               += efivarfs/
 +obj-$(CONFIG_AUFS_FS)           += aufs/
-diff --git a/include/linux/Kbuild b/include/linux/Kbuild
-index 619b565..29f386b 100644
---- a/include/linux/Kbuild
-+++ b/include/linux/Kbuild
-@@ -65,6 +65,7 @@ header-y += atmppp.h
+diff --git a/include/uapi/linux/Kbuild b/include/uapi/linux/Kbuild
+index bdc6e87..349600c 100644
+--- a/include/uapi/linux/Kbuild
++++ b/include/uapi/linux/Kbuild
+@@ -56,6 +56,7 @@ header-y += atmppp.h
  header-y += atmsap.h
  header-y += atmsvc.h
  header-y += audit.h
@@ -33,26 +33,26 @@ index 619b565..29f386b 100644
  header-y += auto_fs.h
  header-y += auto_fs4.h
  header-y += auxvec.h
-aufs3.2 base patch
+aufs3.10 base patch
 
-diff --git a/fs/namei.c b/fs/namei.c
-index 5008f01..4cc94cf 100644
---- a/fs/namei.c
-+++ b/fs/namei.c
-@@ -1753,7 +1753,7 @@ static struct dentry *__lookup_hash(struct qstr *name,
-  * needs parent already locked. Doesn't follow mounts.
-  * SMP-safe.
+diff --git a/fs/inode.c b/fs/inode.c
+index 00d5fc3..f324521 100644
+--- a/fs/inode.c
++++ b/fs/inode.c
+@@ -1498,7 +1498,7 @@ static int relatime_need_update(struct vfsmount *mnt, struct inode *inode,
+  * This does the actual work of updating an inodes time or version.  Must have
+  * had called mnt_want_write() before calling this.
   */
--static struct dentry *lookup_hash(struct nameidata *nd)
-+struct dentry *lookup_hash(struct nameidata *nd)
+-static int update_time(struct inode *inode, struct timespec *time, int flags)
++int update_time(struct inode *inode, struct timespec *time, int flags)
  {
-       return __lookup_hash(&nd->last, nd->path.dentry, nd);
- }
+       if (inode->i_op->update_time)
+               return inode->i_op->update_time(inode, time, flags);
 diff --git a/fs/splice.c b/fs/splice.c
-index fa2defa..e3569b0 100644
+index d37431d..987346f 100644
 --- a/fs/splice.c
 +++ b/fs/splice.c
-@@ -1085,8 +1085,8 @@ EXPORT_SYMBOL(generic_splice_sendpage);
+@@ -1093,8 +1093,8 @@ EXPORT_SYMBOL(generic_splice_sendpage);
  /*
   * Attempt to initiate a splice from pipe to file.
   */
@@ -63,7 +63,7 @@ index fa2defa..e3569b0 100644
  {
        ssize_t (*splice_write)(struct pipe_inode_info *, struct file *,
                                loff_t *, size_t, unsigned int);
-@@ -1113,9 +1113,9 @@ static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
+@@ -1124,9 +1124,9 @@ static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
  /*
   * Attempt to initiate a splice from a file to a pipe.
   */
@@ -76,23 +76,23 @@ index fa2defa..e3569b0 100644
  {
        ssize_t (*splice_read)(struct file *, loff_t *,
                               struct pipe_inode_info *, size_t, unsigned int);
-diff --git a/include/linux/namei.h b/include/linux/namei.h
-index ffc0213..ef35a31 100644
---- a/include/linux/namei.h
-+++ b/include/linux/namei.h
-@@ -85,6 +85,7 @@ extern int vfs_path_lookup(struct dentry *, struct vfsmount *,
- extern struct file *lookup_instantiate_filp(struct nameidata *nd, struct dentry *dentry,
              int (*open)(struct inode *, struct file *));
+diff --git a/include/linux/fs.h b/include/linux/fs.h
+index 65c2be2..0148214 100644
+--- a/include/linux/fs.h
++++ b/include/linux/fs.h
+@@ -2574,6 +2574,7 @@ extern int inode_change_ok(const struct inode *, struct iattr *);
+ extern int inode_newsize_ok(const struct inode *, loff_t offset);
extern void setattr_copy(struct inode *inode, const struct iattr *attr);
  
-+extern struct dentry *lookup_hash(struct nameidata *nd);
- extern struct dentry *lookup_one_len(const char *, struct dentry *, int);
++extern int update_time(struct inode *, struct timespec *, int);
+ extern int file_update_time(struct file *file);
  
- extern int follow_down_one(struct path *);
+ extern int generic_show_options(struct seq_file *m, struct dentry *root);
 diff --git a/include/linux/splice.h b/include/linux/splice.h
-index 26e5b61..3ffef2f 100644
+index 74575cb..bfc6fb6 100644
 --- a/include/linux/splice.h
 +++ b/include/linux/splice.h
-@@ -91,4 +91,10 @@ extern void splice_shrink_spd(struct pipe_inode_info *,
+@@ -92,4 +92,10 @@ extern void splice_shrink_spd(struct splice_pipe_desc *);
  extern void spd_release_page(struct splice_pipe_desc *, unsigned int);
  
  extern const struct pipe_buf_operations page_cache_pipe_buf_ops;
@@ -103,26 +103,13 @@ index 26e5b61..3ffef2f 100644
 +                       struct pipe_inode_info *pipe, size_t len,
 +                       unsigned int flags);
  #endif
-aufs3.2 standalone patch
+aufs3.10 standalone patch
 
-diff --git a/fs/file_table.c b/fs/file_table.c
-index c322794..2aad244 100644
---- a/fs/file_table.c
-+++ b/fs/file_table.c
-@@ -443,6 +443,8 @@ void file_sb_list_del(struct file *file)
-       }
- }
-+EXPORT_SYMBOL(file_sb_list_del);
-+
- #ifdef CONFIG_SMP
- /*
 diff --git a/fs/inode.c b/fs/inode.c
-index ee4e66b..728042b 100644
+index f324521..bff7670 100644
 --- a/fs/inode.c
 +++ b/fs/inode.c
-@@ -65,6 +65,7 @@ static struct hlist_head *inode_hashtable __read_mostly;
+@@ -56,6 +56,7 @@ static struct hlist_head *inode_hashtable __read_mostly;
  static __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_hash_lock);
  
  __cacheline_aligned_in_smp DEFINE_SPINLOCK(inode_sb_list_lock);
@@ -130,32 +117,44 @@ index ee4e66b..728042b 100644
  
  /*
   * Empty aops. Can be used for the cases where the user does not
-diff --git a/fs/namei.c b/fs/namei.c
-index 4cc94cf..af19e30 100644
---- a/fs/namei.c
-+++ b/fs/namei.c
-@@ -1757,6 +1757,7 @@ struct dentry *lookup_hash(struct nameidata *nd)
- {
-       return __lookup_hash(&nd->last, nd->path.dentry, nd);
+@@ -1514,6 +1515,7 @@ int update_time(struct inode *inode, struct timespec *time, int flags)
+       mark_inode_dirty_sync(inode);
+       return 0;
  }
-+EXPORT_SYMBOL(lookup_hash);
++EXPORT_SYMBOL(update_time);
  
  /**
-  * lookup_one_len - filesystem helper to lookup single pathname component
+  *    touch_atime     -       update the access time
 diff --git a/fs/namespace.c b/fs/namespace.c
-index cfc6d44..173d15a 100644
+index 7b1ca9b..51db6ad 100644
 --- a/fs/namespace.c
 +++ b/fs/namespace.c
-@@ -1506,6 +1506,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
+@@ -54,6 +54,7 @@ EXPORT_SYMBOL_GPL(fs_kobj);
+  * tree or hash is modified or when a vfsmount structure is modified.
+  */
+ DEFINE_BRLOCK(vfsmount_lock);
++EXPORT_SYMBOL(vfsmount_lock);
+ static inline unsigned long hash(struct vfsmount *mnt, struct dentry *dentry)
+ {
+@@ -427,6 +428,7 @@ void __mnt_drop_write(struct vfsmount *mnt)
+       mnt_dec_writers(real_mount(mnt));
+       preempt_enable();
+ }
++EXPORT_SYMBOL_GPL(__mnt_drop_write);
+ /**
+  * mnt_drop_write - give up write access to a mount
+@@ -1456,6 +1458,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
        }
        return 0;
  }
 +EXPORT_SYMBOL(iterate_mounts);
  
- static void cleanup_group_ids(struct vfsmount *mnt, struct vfsmount *end)
+ static void cleanup_group_ids(struct mount *mnt, struct mount *end)
  {
 diff --git a/fs/notify/group.c b/fs/notify/group.c
-index 63fc294..6f4adca 100644
+index bd2625b..2ff2a0f 100644
 --- a/fs/notify/group.c
 +++ b/fs/notify/group.c
 @@ -22,6 +22,7 @@
@@ -166,48 +165,59 @@ index 63fc294..6f4adca 100644
  
  #include <linux/fsnotify_backend.h>
  #include "fsnotify.h"
-@@ -70,6 +71,7 @@ void fsnotify_put_group(struct fsnotify_group *group)
+@@ -65,6 +66,7 @@ void fsnotify_get_group(struct fsnotify_group *group)
+ {
+       atomic_inc(&group->refcnt);
+ }
++EXPORT_SYMBOL(fsnotify_get_group);
+ /*
+  * Drop a reference to a group.  Free it if it's through.
+@@ -74,6 +76,7 @@ void fsnotify_put_group(struct fsnotify_group *group)
        if (atomic_dec_and_test(&group->refcnt))
-               fsnotify_destroy_group(group);
+               fsnotify_final_destroy_group(group);
  }
 +EXPORT_SYMBOL(fsnotify_put_group);
  
  /*
   * Create a new fsnotify_group and hold a reference for the group returned.
-@@ -102,3 +104,4 @@ struct fsnotify_group *fsnotify_alloc_group(const struct fsnotify_ops *ops)
+@@ -102,6 +105,7 @@ struct fsnotify_group *fsnotify_alloc_group(const struct fsnotify_ops *ops)
  
        return group;
  }
 +EXPORT_SYMBOL(fsnotify_alloc_group);
+ int fsnotify_fasync(int fd, struct file *file, int on)
+ {
 diff --git a/fs/notify/mark.c b/fs/notify/mark.c
-index e14587d..be6533b 100644
+index fc6b49b..a6bb87d 100644
 --- a/fs/notify/mark.c
 +++ b/fs/notify/mark.c
-@@ -112,6 +112,7 @@ void fsnotify_put_mark(struct fsnotify_mark *mark)
-       if (atomic_dec_and_test(&mark->refcnt))
+@@ -115,6 +115,7 @@ void fsnotify_put_mark(struct fsnotify_mark *mark)
                mark->free_mark(mark);
+       }
  }
 +EXPORT_SYMBOL(fsnotify_put_mark);
  
  /*
   * Any time a mark is getting freed we end up here.
-@@ -189,6 +190,7 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark)
-       if (unlikely(atomic_dec_and_test(&group->num_marks)))
-               fsnotify_final_destroy_group(group);
+@@ -197,6 +198,7 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark,
+       fsnotify_destroy_mark_locked(mark, group);
+       mutex_unlock(&group->mark_mutex);
  }
 +EXPORT_SYMBOL(fsnotify_destroy_mark);
  
  void fsnotify_set_mark_mask_locked(struct fsnotify_mark *mark, __u32 mask)
  {
-@@ -276,6 +278,7 @@ err:
+@@ -281,6 +283,7 @@ err:
  
        return ret;
  }
 +EXPORT_SYMBOL(fsnotify_add_mark);
  
- /*
-  * clear any marks in a group in which mark->flags & flags is true
-@@ -331,6 +334,7 @@ void fsnotify_init_mark(struct fsnotify_mark *mark,
+ int fsnotify_add_mark(struct fsnotify_mark *mark, struct fsnotify_group *group,
+                     struct inode *inode, struct vfsmount *mnt, int allow_dups)
+@@ -342,6 +345,7 @@ void fsnotify_init_mark(struct fsnotify_mark *mark,
        atomic_set(&mark->refcnt, 1);
        mark->free_mark = free_mark;
  }
@@ -216,30 +226,30 @@ index e14587d..be6533b 100644
  static int fsnotify_mark_destroy(void *ignored)
  {
 diff --git a/fs/open.c b/fs/open.c
-index 22c41b5..33b4033 100644
+index 8c74100..be563cd 100644
 --- a/fs/open.c
 +++ b/fs/open.c
-@@ -60,6 +60,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
+@@ -61,6 +61,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
        mutex_unlock(&dentry->d_inode->i_mutex);
        return ret;
  }
 +EXPORT_SYMBOL(do_truncate);
  
static long do_sys_truncate(const char __user *pathname, loff_t length)
long vfs_truncate(struct path *path, loff_t length)
  {
 diff --git a/fs/splice.c b/fs/splice.c
-index e3569b0..9dc07b7 100644
+index 987346f..8d6a045 100644
 --- a/fs/splice.c
 +++ b/fs/splice.c
-@@ -1109,6 +1109,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
-       return splice_write(pipe, out, ppos, len, flags);
+@@ -1120,6 +1120,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
+       file_end_write(out);
+       return ret;
  }
 +EXPORT_SYMBOL(do_splice_from);
  
  /*
   * Attempt to initiate a splice from a file to a pipe.
-@@ -1135,6 +1136,7 @@ long do_splice_to(struct file *in, loff_t *ppos,
+@@ -1146,6 +1147,7 @@ long do_splice_to(struct file *in, loff_t *ppos,
  
        return splice_read(in, ppos, pipe, len, flags);
  }
@@ -248,16 +258,23 @@ index e3569b0..9dc07b7 100644
  /**
   * splice_direct_to_actor - splices data directly between two non-pipes
 diff --git a/security/commoncap.c b/security/commoncap.c
-index ee4f848..611fd70 100644
+index c44b6fe..d78b003 100644
 --- a/security/commoncap.c
 +++ b/security/commoncap.c
-@@ -975,3 +975,4 @@ int cap_file_mmap(struct file *file, unsigned long reqprot,
+@@ -988,9 +988,11 @@ int cap_mmap_addr(unsigned long addr)
        }
        return ret;
  }
-+EXPORT_SYMBOL(cap_file_mmap);
++EXPORT_SYMBOL(cap_mmap_addr);
+ int cap_mmap_file(struct file *file, unsigned long reqprot,
+                 unsigned long prot, unsigned long flags)
+ {
+       return 0;
+ }
++EXPORT_SYMBOL(cap_mmap_file);
 diff --git a/security/device_cgroup.c b/security/device_cgroup.c
-index 4450fbe..bc94175 100644
+index dd0dc57..9760ecb6 100644
 --- a/security/device_cgroup.c
 +++ b/security/device_cgroup.c
 @@ -7,6 +7,7 @@
@@ -268,19 +285,19 @@ index 4450fbe..bc94175 100644
  #include <linux/list.h>
  #include <linux/uaccess.h>
  #include <linux/seq_file.h>
-@@ -500,6 +501,7 @@ found:
-       return -EPERM;
+@@ -789,6 +790,7 @@ int __devcgroup_inode_permission(struct inode *inode, int mask)
+       return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
+                       access);
  }
 +EXPORT_SYMBOL(__devcgroup_inode_permission);
  
  int devcgroup_inode_mknod(int mode, dev_t dev)
  {
 diff --git a/security/security.c b/security/security.c
-index e2f684a..892000c 100644
+index a3dce87..06a6ea6 100644
 --- a/security/security.c
 +++ b/security/security.c
-@@ -411,6 +411,7 @@ int security_path_rmdir(struct path *dir, struct dentry *dentry)
+@@ -396,6 +396,7 @@ int security_path_rmdir(struct path *dir, struct dentry *dentry)
                return 0;
        return security_ops->path_rmdir(dir, dentry);
  }
@@ -288,7 +305,7 @@ index e2f684a..892000c 100644
  
  int security_path_unlink(struct path *dir, struct dentry *dentry)
  {
-@@ -427,6 +428,7 @@ int security_path_symlink(struct path *dir, struct dentry *dentry,
+@@ -412,6 +413,7 @@ int security_path_symlink(struct path *dir, struct dentry *dentry,
                return 0;
        return security_ops->path_symlink(dir, dentry, old_name);
  }
@@ -296,7 +313,7 @@ index e2f684a..892000c 100644
  
  int security_path_link(struct dentry *old_dentry, struct path *new_dir,
                       struct dentry *new_dentry)
-@@ -435,6 +437,7 @@ int security_path_link(struct dentry *old_dentry, struct path *new_dir,
+@@ -420,6 +422,7 @@ int security_path_link(struct dentry *old_dentry, struct path *new_dir,
                return 0;
        return security_ops->path_link(old_dentry, new_dir, new_dentry);
  }
@@ -304,23 +321,23 @@ index e2f684a..892000c 100644
  
  int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
                         struct path *new_dir, struct dentry *new_dentry)
-@@ -453,6 +456,7 @@ int security_path_truncate(struct path *path)
+@@ -438,6 +441,7 @@ int security_path_truncate(struct path *path)
                return 0;
        return security_ops->path_truncate(path);
  }
 +EXPORT_SYMBOL(security_path_truncate);
  
- int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt,
-                       mode_t mode)
-@@ -461,6 +465,7 @@ int security_path_chmod(struct dentry *dentry, struct vfsmount *mnt,
+ int security_path_chmod(struct path *path, umode_t mode)
+ {
+@@ -445,6 +449,7 @@ int security_path_chmod(struct path *path, umode_t mode)
                return 0;
-       return security_ops->path_chmod(dentry, mnt, mode);
+       return security_ops->path_chmod(path, mode);
  }
 +EXPORT_SYMBOL(security_path_chmod);
  
- int security_path_chown(struct path *path, uid_t uid, gid_t gid)
+ int security_path_chown(struct path *path, kuid_t uid, kgid_t gid)
  {
-@@ -468,6 +473,7 @@ int security_path_chown(struct path *path, uid_t uid, gid_t gid)
+@@ -452,6 +457,7 @@ int security_path_chown(struct path *path, kuid_t uid, kgid_t gid)
                return 0;
        return security_ops->path_chown(path, uid, gid);
  }
@@ -328,7 +345,7 @@ index e2f684a..892000c 100644
  
  int security_path_chroot(struct path *path)
  {
-@@ -544,6 +550,7 @@ int security_inode_readlink(struct dentry *dentry)
+@@ -528,6 +534,7 @@ int security_inode_readlink(struct dentry *dentry)
                return 0;
        return security_ops->inode_readlink(dentry);
  }
@@ -336,7 +353,7 @@ index e2f684a..892000c 100644
  
  int security_inode_follow_link(struct dentry *dentry, struct nameidata *nd)
  {
-@@ -558,6 +565,7 @@ int security_inode_permission(struct inode *inode, int mask)
+@@ -542,6 +549,7 @@ int security_inode_permission(struct inode *inode, int mask)
                return 0;
        return security_ops->inode_permission(inode, mask);
  }
@@ -344,7 +361,7 @@ index e2f684a..892000c 100644
  
  int security_inode_setattr(struct dentry *dentry, struct iattr *attr)
  {
-@@ -673,6 +681,7 @@ int security_file_permission(struct file *file, int mask)
+@@ -663,6 +671,7 @@ int security_file_permission(struct file *file, int mask)
  
        return fsnotify_perm(file, mask);
  }
@@ -352,18 +369,18 @@ index e2f684a..892000c 100644
  
  int security_file_alloc(struct file *file)
  {
-@@ -700,6 +709,7 @@ int security_file_mmap(struct file *file, unsigned long reqprot,
+@@ -723,6 +732,7 @@ int security_mmap_file(struct file *file, unsigned long prot,
                return ret;
        return ima_file_mmap(file, prot);
  }
-+EXPORT_SYMBOL(security_file_mmap);
++EXPORT_SYMBOL(security_mmap_file);
  
- int security_file_mprotect(struct vm_area_struct *vma, unsigned long reqprot,
-                           unsigned long prot)
+ int security_mmap_addr(unsigned long addr)
+ {
 diff -urN /usr/share/empty/Documentation/ABI/testing/debugfs-aufs linux/Documentation/ABI/testing/debugfs-aufs
 --- /usr/share/empty/Documentation/ABI/testing/debugfs-aufs    1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/ABI/testing/debugfs-aufs       2012-02-13 21:54:56.963104881 +0100
-@@ -0,0 +1,37 @@
++++ linux/Documentation/ABI/testing/debugfs-aufs       2013-07-06 13:20:47.716863966 +0200
+@@ -0,0 +1,50 @@
 +What:         /debug/aufs/si_<id>/
 +Date:         March 2009
 +Contact:      J. R. Okajima <hooanon05@yahoo.co.jp>
@@ -372,6 +389,19 @@ diff -urN /usr/share/empty/Documentation/ABI/testing/debugfs-aufs linux/Document
 +              per aufs mount, where <id> is a unique id generated
 +              internally.
 +
++What:         /debug/aufs/si_<id>/plink
++Date:         Apr 2013
++Contact:      J. R. Okajima <hooanon05@yahoo.co.jp>
++Description:
++              It has three lines and shows the information about the
++              pseudo-link. The first line is a single number
++              representing a number of buckets. The second line is a
++              number of pseudo-links per buckets (separated by a
++              blank). The last line is a single number representing a
++              total number of psedo-links.
++              When the aufs mount option 'noplink' is specified, it
++              will show "1\n0\n0\n".
++
 +What:         /debug/aufs/si_<id>/xib
 +Date:         March 2009
 +Contact:      J. R. Okajima <hooanon05@yahoo.co.jp>
@@ -403,7 +433,7 @@ diff -urN /usr/share/empty/Documentation/ABI/testing/debugfs-aufs linux/Document
 +              will be empty. About XINO files, see the aufs manual.
 diff -urN /usr/share/empty/Documentation/ABI/testing/sysfs-aufs linux/Documentation/ABI/testing/sysfs-aufs
 --- /usr/share/empty/Documentation/ABI/testing/sysfs-aufs      1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/ABI/testing/sysfs-aufs 2012-02-13 21:54:56.963104881 +0100
++++ linux/Documentation/ABI/testing/sysfs-aufs 2013-07-06 13:20:47.730197761 +0200
 @@ -0,0 +1,24 @@
 +What:         /sys/fs/aufs/si_<id>/
 +Date:         March 2009
@@ -431,10 +461,10 @@ diff -urN /usr/share/empty/Documentation/ABI/testing/sysfs-aufs linux/Documentat
 +              will be empty. About XINO files, see the aufs manual.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/01intro.txt linux/Documentation/filesystems/aufs/design/01intro.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/01intro.txt 1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/01intro.txt    2012-02-13 21:54:56.963104881 +0100
++++ linux/Documentation/filesystems/aufs/design/01intro.txt    2013-07-06 13:20:47.730197761 +0200
 @@ -0,0 +1,162 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -597,10 +627,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/01intro.txt lin
 +about it. But currently I have implemented it in kernel space.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/02struct.txt linux/Documentation/filesystems/aufs/design/02struct.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/02struct.txt        1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/02struct.txt   2012-02-13 21:54:56.963104881 +0100
-@@ -0,0 +1,226 @@
++++ linux/Documentation/filesystems/aufs/design/02struct.txt   2013-08-23 23:59:39.631583456 +0200
+@@ -0,0 +1,243 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -825,12 +855,29 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/02struct.txt li
 +internally and makes change to the new file on the upper writable branch.
 +When the trigger systemcall does not update the timestamps of the parent
 +dir, aufs reverts it after copy-up.
++
++
++Move-down (aufs3.9 and later)
++----------------------------------------------------------------------
++"Copy-up" is one of the essential feature in aufs. It copies a file from
++the lower readonly branch to the upper writable branch when a user
++changes something about the file.
++"Move-down" is an opposite action of copy-up. Basically this action is
++ran manually instead of automatically and internally.
++
++Sometimes users want to move-down a file from the upper writable branch
++to the lower readonly or writable branch. For instance,
++- the free space of the upper writable branch is going to run out.
++- create a new intermediate branch between the upper and lower branch.
++- etc.
++
++For this purpose, use "aumvdown" command in aufs-util.git.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/03lookup.txt linux/Documentation/filesystems/aufs/design/03lookup.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/03lookup.txt        1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/03lookup.txt   2012-02-13 21:54:56.963104881 +0100
++++ linux/Documentation/filesystems/aufs/design/03lookup.txt   2013-07-06 13:20:47.730197761 +0200
 @@ -0,0 +1,106 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -937,10 +984,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/03lookup.txt li
 +   by over-mounting something (or another method).
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/04branch.txt linux/Documentation/filesystems/aufs/design/04branch.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/04branch.txt        1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/04branch.txt   2012-02-13 21:54:56.966438287 +0100
++++ linux/Documentation/filesystems/aufs/design/04branch.txt   2013-07-06 13:20:47.730197761 +0200
 @@ -0,0 +1,76 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -1017,10 +1064,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/04branch.txt li
 +    same named entry on the upper branch.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/05wbr_policy.txt linux/Documentation/filesystems/aufs/design/05wbr_policy.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/05wbr_policy.txt    1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/05wbr_policy.txt       2012-02-13 21:54:56.966438287 +0100
++++ linux/Documentation/filesystems/aufs/design/05wbr_policy.txt       2013-07-06 13:20:47.730197761 +0200
 @@ -0,0 +1,65 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -1086,10 +1133,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/05wbr_policy.tx
 +  copyup policy.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/06mmap.txt linux/Documentation/filesystems/aufs/design/06mmap.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/06mmap.txt  1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/06mmap.txt     2012-02-13 21:54:56.966438287 +0100
++++ linux/Documentation/filesystems/aufs/design/06mmap.txt     2013-07-06 13:20:47.730197761 +0200
 @@ -0,0 +1,47 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -1137,10 +1184,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/06mmap.txt linu
 +switching the approach.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/07export.txt linux/Documentation/filesystems/aufs/design/07export.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/07export.txt        1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/07export.txt   2012-02-13 21:54:56.966438287 +0100
++++ linux/Documentation/filesystems/aufs/design/07export.txt   2013-07-06 13:20:47.736864659 +0200
 @@ -0,0 +1,59 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -1200,10 +1247,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/07export.txt li
 +  lookup_one_len(), vfs_getattr(), encode_fh() and others.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/08shwh.txt linux/Documentation/filesystems/aufs/design/08shwh.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/08shwh.txt  1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/08shwh.txt     2012-02-13 21:54:56.966438287 +0100
++++ linux/Documentation/filesystems/aufs/design/08shwh.txt     2013-07-06 13:20:47.736864659 +0200
 @@ -0,0 +1,53 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -1257,10 +1304,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/08shwh.txt linu
 +initramfs will use it to replace the old one at the next boot.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/10dynop.txt linux/Documentation/filesystems/aufs/design/10dynop.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/10dynop.txt 1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/10dynop.txt    2012-02-13 21:54:56.966438287 +0100
++++ linux/Documentation/filesystems/aufs/design/10dynop.txt    2013-07-06 13:20:47.736864659 +0200
 @@ -0,0 +1,47 @@
 +
-+# Copyright (C) 2010-2011 Junjiro R. Okajima
++# Copyright (C) 2010-2013 Junjiro R. Okajima
 +#
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -1308,10 +1355,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/10dynop.txt lin
 +vm_operations_struct for regular files only.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/99plan.txt linux/Documentation/filesystems/aufs/design/99plan.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/99plan.txt  1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/99plan.txt     2012-02-13 21:54:56.966438287 +0100
++++ linux/Documentation/filesystems/aufs/design/99plan.txt     2013-07-06 13:20:47.736864659 +0200
 @@ -0,0 +1,96 @@
 +
-+# Copyright (C) 2005-2011 Junjiro R. Okajima
++# Copyright (C) 2005-2013 Junjiro R. Okajima
 +# 
 +# This program is free software; you can redistribute it and/or modify
 +# it under the terms of the GNU General Public License as published by
@@ -1408,8 +1455,8 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/99plan.txt linu
 +Otherwise from /new.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documentation/filesystems/aufs/README
 --- /usr/share/empty/Documentation/filesystems/aufs/README     1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/README        2012-02-13 21:54:56.963104881 +0100
-@@ -0,0 +1,328 @@
++++ linux/Documentation/filesystems/aufs/README        2013-07-30 22:42:46.229279157 +0200
+@@ -0,0 +1,346 @@
 +
 +Aufs3 -- advanced multi layered unification filesystem version 3.x
 +http://aufs.sf.net
@@ -1515,7 +1562,7 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +The aufs3-linux tree includes the whole linux mainline GIT tree,
 +git://git.kernel.org/.../torvalds/linux.git.
 +And you cannot select CONFIG_AUFS_FS=m for this version, eg. you cannot
-+build aufs3 as an externel kernel module.
++build aufs3 as an external kernel module.
 +
 +On the other hand, the aufs3-standalone tree has only aufs source files
 +and necessary patches, and you can select CONFIG_AUFS_FS=m.
@@ -1527,20 +1574,20 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +
 +o aufs3-linux tree
 +$ git clone --reference /your/linux/git/tree \
-+      git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-linux.git \
++      git://git.code.sf.net/p/aufs/aufs3-linux aufs-aufs3-linux \
 +      aufs3-linux.git
 +- if you don't have linux GIT tree, then remove "--reference ..."
 +$ cd aufs3-linux.git
 +$ git checkout origin/aufs3.0
 +
 +o aufs3-standalone tree
-+$ git clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs3-standalone.git \
++$ git clone git://git.code.sf.net/p/aufs/aufs3-standalone \
 +      aufs3-standalone.git
 +$ cd aufs3-standalone.git
 +$ git checkout origin/aufs3.0
 +
 +o aufs-util tree
-+$ git clone git://aufs.git.sourceforge.net/gitroot/aufs/aufs-util.git \
++$ git clone git://git.code.sf.net/p/aufs/aufs-util \
 +      aufs-util.git
 +$ cd aufs-util.git
 +$ git checkout origin/aufs3.0
@@ -1559,7 +1606,7 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +
 +For (an unreleased) example:
 +If you are using "linux-3.10" and the "aufs3.10" branch
-+does not exit in aufs-util repository, then "aufs3.9", "aufs3.8"
++does not exist in aufs-util repository, then "aufs3.9", "aufs3.8"
 +or something numerically smaller is the branch for your kernel.
 +
 +Also you can view all branches by
@@ -1571,7 +1618,7 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +Make sure you have git-checkout'ed the correct branch.
 +
 +For aufs3-linux tree,
-+- enable CONFIG_EXPERIMENTAL and CONFIG_AUFS_FS.
++- enable CONFIG_AUFS_FS.
 +- set other aufs configurations if necessary.
 +
 +For aufs3-standalone tree,
@@ -1585,13 +1632,18 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +  path on the branch fs.
 +- apply ./aufs3-standalone.patch too, if you have a plan to set
 +  CONFIG_AUFS_FS=m. otherwise you don't need ./aufs3-standalone.patch.
-+- copy ./{Documentation,fs,include/linux/aufs_type.h} files to your
-+  kernel source tree. Never copy ./include/linux/Kbuild.
-+- enable CONFIG_EXPERIMENTAL and CONFIG_AUFS_FS, you can select either
++- copy ./{Documentation,fs,include/uapi/linux/aufs_type.h} files to your
++  kernel source tree. Never copy $PWD/include/uapi/linux/Kbuild.
++- enable CONFIG_AUFS_FS, you can select either
 +  =m or =y.
 +- and build your kernel as usual.
 +- install the built kernel.
-+- install the header files too by "make headers_install".
++  Note: Since linux-3.9, every filesystem module requires an alias
++  "fs-<fsname>". You should make sure that "fs-aufs" is listed in your
++  modules.aliases file if you set CONFIG_AUFS_FS=m.
++- install the header files too by "make headers_install" to the
++  directory where you specify. By default, it is $PWD/usr.
++  "make help" shows a brief note for headers_install.
 +- and reboot your system.
 +
 +2.
@@ -1603,21 +1655,26 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +- apply ./aufs3-standalone.patch too.
 +- build your kernel, don't forget "make headers_install", and reboot.
 +- edit ./config.mk and set other aufs configurations if necessary.
-+  Note: You should read ./fs/aufs/Kconfig carefully which describes
++  Note: You should read $PWD/fs/aufs/Kconfig carefully which describes
 +  every aufs configurations.
 +- build the module by simple "make".
++  Note: Since linux-3.9, every filesystem module requires an alias
++  "fs-<fsname>". You should make sure that "fs-aufs" is listed in your
++  modules.aliases file.
 +- you can specify ${KDIR} make variable which points to your kernel
 +  source tree.
 +- install the files
 +  + run "make install" to install the aufs module, or copy the built
-+    ./aufs.ko to /lib/modules/... and run depmod -a (or reboot simply).
-+  + run "make headers_install" to install the aufs header file (you can
-+    specify DESTDIR), or copty ./usr/include/linux/aufs_type.h to
-+    /usr/include/linux or wherever you like.
++    $PWD/aufs.ko to /lib/modules/... and run depmod -a (or reboot simply).
++  + run "make install_headers" (instead of headers_install) to install
++    the modified aufs header file (you can specify DESTDIR which is
++    available in aufs standalone version's Makefile only), or copy
++    $PWD/usr/include/linux/aufs_type.h to /usr/include/linux or wherever
++    you like manually. By default, the target directory is $PWD/usr.
 +- no need to apply aufs3-kbuild.patch, nor copying source files to your
 +  kernel source tree.
 +
-+Note: The haeder file aufs_type.h is necessary to build aufs-util
++Note: The header file aufs_type.h is necessary to build aufs-util
 +      as well as "make headers_install" in the kernel source tree.
 +      headers_install is subject to be forgotten, but it is essentially
 +      necessary, not only for building aufs-util.
@@ -1701,7 +1758,7 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +      Since Apr 2010, Tomas M (the author of Slax and Linux Live
 +      scripts) is making "doubling" donations.
 +      Unfortunately I cannot list all of the donators, but I really
-+      appriciate.
++      appreciate.
 +      It ends Aug 2010, but the ordinary donation URL is still available.
 +      <http://sourceforge.net/donate/index.php?group_id=167503>
 +Dai Itasaka made a donation (2007/8).
@@ -1719,8 +1776,16 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +Pavel Pronskiy made a donation (2011/2).
 +Iridium and Inmarsat satellite phone retailer (www.mailasail.com), Nippy
 +      Networks (Ed Wildgoose) made a donation for hardware (2011/3).
-+Max Lekomcev (DOM-TV project) made a donation (2011/7 and 12).
++Max Lekomcev (DOM-TV project) made a donation (2011/7, 12, 2012/3, 6 and
++11).
 +Sam Liddicott made a donation (2011/9).
++Era Scarecrow made a donation (2013/4).
++Bor Ratajc made a donation (2013/4).
++Alessandro Gorreta made a donation (2013/4).
++POIRETTE Marc made a donation (2013/4).
++Alessandro Gorreta made a donation (2013/4).
++lauri kasvandik made a donation (2013/5).
++pemasu from Finland made a donation (2013/7).
 +
 +Thank you very much.
 +Donations are always, including future donations, very important and
@@ -1740,10 +1805,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +# End: ;
 diff -urN /usr/share/empty/fs/aufs/aufs.h linux/fs/aufs/aufs.h
 --- /usr/share/empty/fs/aufs/aufs.h    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/aufs.h       2012-02-13 21:54:56.966438287 +0100
++++ linux/fs/aufs/aufs.h       2013-07-06 13:20:47.736864659 +0200
 @@ -0,0 +1,60 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -1804,10 +1869,10 @@ diff -urN /usr/share/empty/fs/aufs/aufs.h linux/fs/aufs/aufs.h
 +#endif /* __AUFS_H__ */
 diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 --- /usr/share/empty/fs/aufs/branch.c  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/branch.c     2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,1169 @@
++++ linux/fs/aufs/branch.c     2013-07-30 22:42:55.839613269 +0200
+@@ -0,0 +1,1222 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -1835,6 +1900,34 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +/*
 + * free a single branch
 + */
++
++/* prohibit rmdir to the root of the branch */
++/* todo: another new flag? */
++static void au_br_dflags_force(struct au_branch *br)
++{
++      struct dentry *h_dentry;
++
++      h_dentry = au_br_dentry(br);
++      spin_lock(&h_dentry->d_lock);
++      br->br_dflags = h_dentry->d_flags & DCACHE_MOUNTED;
++      h_dentry->d_flags |= DCACHE_MOUNTED;
++      spin_unlock(&h_dentry->d_lock);
++}
++
++/* restore its d_flags */
++static void au_br_dflags_restore(struct au_branch *br)
++{
++      struct dentry *h_dentry;
++
++      if (br->br_dflags)
++              return;
++
++      h_dentry = au_br_dentry(br);
++      spin_lock(&h_dentry->d_lock);
++      h_dentry->d_flags &= ~DCACHE_MOUNTED;
++      spin_unlock(&h_dentry->d_lock);
++}
++
 +static void au_br_do_free(struct au_branch *br)
 +{
 +      int i;
@@ -1864,7 +1957,12 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              else
 +                      break;
 +
-+      mntput(br->br_mnt);
++      au_br_dflags_restore(br);
++
++      /* recursive lock, s_umount of branch's */
++      lockdep_off();
++      path_put(&br->br_path);
++      lockdep_on();
 +      kfree(wbr);
 +      kfree(br);
 +}
@@ -2059,14 +2157,14 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      if (au_opt_test(au_mntflags(sb), WARN_PERM)) {
 +              h_inode = au_h_dptr(root, 0)->d_inode;
 +              if ((h_inode->i_mode & S_IALLUGO) != (inode->i_mode & S_IALLUGO)
-+                  || h_inode->i_uid != inode->i_uid
-+                  || h_inode->i_gid != inode->i_gid)
-+                      pr_warning("uid/gid/perm %s %u/%u/0%o, %u/%u/0%o\n",
-+                                 add->pathname,
-+                                 inode->i_uid, inode->i_gid,
-+                                 (inode->i_mode & S_IALLUGO),
-+                                 h_inode->i_uid, h_inode->i_gid,
-+                                 (h_inode->i_mode & S_IALLUGO));
++                  || !uid_eq(h_inode->i_uid, inode->i_uid)
++                  || !gid_eq(h_inode->i_gid, inode->i_gid))
++                      pr_warn("uid/gid/perm %s %u/%u/0%o, %u/%u/0%o\n",
++                              add->pathname,
++                              i_uid_read(inode), i_gid_read(inode),
++                              (inode->i_mode & S_IALLUGO),
++                              i_uid_read(h_inode), i_gid_read(h_inode),
++                              (h_inode->i_mode & S_IALLUGO));
 +      }
 +
 +out:
@@ -2077,7 +2175,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 + * initialize or clean the whiteouts for an adding branch
 + */
 +static int au_br_init_wh(struct super_block *sb, struct au_branch *br,
-+                       int new_perm, struct dentry *h_root)
++                       int new_perm)
 +{
 +      int err, old_perm;
 +      aufs_bindex_t bindex;
@@ -2085,6 +2183,10 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      struct au_wbr *wbr;
 +      struct au_hinode *hdir;
 +
++      err = vfsub_mnt_want_write(au_br_mnt(br));
++      if (unlikely(err))
++              goto out;
++
 +      wbr = br->br_wbr;
 +      old_perm = br->br_perm;
 +      br->br_perm = new_perm;
@@ -2095,20 +2197,21 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              hdir = au_hi(sb->s_root->d_inode, bindex);
 +              au_hn_imtx_lock_nested(hdir, AuLsc_I_PARENT);
 +      } else {
-+              h_mtx = &h_root->d_inode->i_mutex;
++              h_mtx = &au_br_dentry(br)->d_inode->i_mutex;
 +              mutex_lock_nested(h_mtx, AuLsc_I_PARENT);
 +      }
 +      if (!wbr)
-+              err = au_wh_init(h_root, br, sb);
++              err = au_wh_init(br, sb);
 +      else {
 +              wbr_wh_write_lock(wbr);
-+              err = au_wh_init(h_root, br, sb);
++              err = au_wh_init(br, sb);
 +              wbr_wh_write_unlock(wbr);
 +      }
 +      if (hdir)
 +              au_hn_imtx_unlock(hdir);
 +      else
 +              mutex_unlock(h_mtx);
++      vfsub_mnt_drop_write(au_br_mnt(br));
 +      br->br_perm = old_perm;
 +
 +      if (!err && wbr && !au_br_writable(new_perm)) {
@@ -2116,16 +2219,16 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              br->br_wbr = NULL;
 +      }
 +
++out:
 +      return err;
 +}
 +
 +static int au_wbr_init(struct au_branch *br, struct super_block *sb,
-+                     int perm, struct path *path)
++                     int perm)
 +{
 +      int err;
 +      struct kstatfs kst;
 +      struct au_wbr *wbr;
-+      struct dentry *h_dentry;
 +
 +      wbr = br->br_wbr;
 +      au_rw_init(&wbr->wbr_wh_rwsem);
@@ -2137,17 +2240,16 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +       * a limit for rmdir/rename a dir
 +       * cf. AUFS_MAX_NAMELEN in include/linux/aufs_type.h
 +       */
-+      err = vfs_statfs(path, &kst);
++      err = vfs_statfs(&br->br_path, &kst);
 +      if (unlikely(err))
 +              goto out;
 +      err = -EINVAL;
-+      h_dentry = path->dentry;
 +      if (kst.f_namelen >= NAME_MAX)
-+              err = au_br_init_wh(sb, br, perm, h_dentry);
++              err = au_br_init_wh(sb, br, perm);
 +      else
 +              pr_err("%.*s(%s), unsupported namelen %ld\n",
-+                     AuDLNPair(h_dentry), au_sbtype(h_dentry->d_sb),
-+                     kst.f_namelen);
++                     AuDLNPair(au_br_dentry(br)),
++                     au_sbtype(au_br_dentry(br)->d_sb), kst.f_namelen);
 +
 +out:
 +      return err;
@@ -2163,7 +2265,10 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      memset(&br->br_xino, 0, sizeof(br->br_xino));
 +      mutex_init(&br->br_xino.xi_nondir_mtx);
 +      br->br_perm = add->perm;
-+      br->br_mnt = add->path.mnt; /* set first, mntget() later */
++      BUILD_BUG_ON(sizeof(br->br_dflags)
++                   != sizeof(br->br_path.dentry->d_flags));
++      br->br_dflags = DCACHE_MOUNTED;
++      br->br_path = add->path; /* set first, path_get() later */
 +      spin_lock_init(&br->br_dykey_lock);
 +      memset(br->br_dykey, 0, sizeof(br->br_dykey));
 +      atomic_set(&br->br_count, 0);
@@ -2173,7 +2278,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      AuDebugOn(br->br_id < 0);
 +
 +      if (au_br_writable(add->perm)) {
-+              err = au_wbr_init(br, sb, add->perm, &add->path);
++              err = au_wbr_init(br, sb, add->perm);
 +              if (unlikely(err))
 +                      goto out_err;
 +      }
@@ -2188,11 +2293,11 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      }
 +
 +      sysaufs_br_init(br);
-+      mntget(add->path.mnt);
++      path_get(&br->br_path);
 +      goto out; /* success */
 +
 +out_err:
-+      br->br_mnt = NULL;
++      memset(&br->br_path, 0, sizeof(br->br_path));
 +out:
 +      return err;
 +}
@@ -2244,17 +2349,20 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              iinfo->ii_bstart = 0;
 +}
 +
-+static void au_br_do_add(struct super_block *sb, struct dentry *h_dentry,
-+                       struct au_branch *br, aufs_bindex_t bindex)
++static void au_br_do_add(struct super_block *sb, struct au_branch *br,
++                       aufs_bindex_t bindex)
 +{
-+      struct dentry *root;
++      struct dentry *root, *h_dentry;
 +      struct inode *root_inode;
 +      aufs_bindex_t bend, amount;
 +
++      au_br_dflags_force(br);
++
 +      root = sb->s_root;
 +      root_inode = root->d_inode;
 +      bend = au_sbend(sb);
 +      amount = bend + 1 - bindex;
++      h_dentry = au_br_dentry(br);
 +      au_sbilist_lock();
 +      au_br_do_add_brp(au_sbi(sb), bindex, br, bend, amount);
 +      au_br_do_add_hdp(au_di(root), bindex, bend, amount);
@@ -2297,15 +2405,15 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      }
 +
 +      add_bindex = add->bindex;
-+      h_dentry = add->path.dentry;
 +      if (!remount)
-+              au_br_do_add(sb, h_dentry, add_branch, add_bindex);
++              au_br_do_add(sb, add_branch, add_bindex);
 +      else {
 +              sysaufs_brs_del(sb, add_bindex);
-+              au_br_do_add(sb, h_dentry, add_branch, add_bindex);
++              au_br_do_add(sb, add_branch, add_bindex);
 +              sysaufs_brs_add(sb, add_bindex);
 +      }
 +
++      h_dentry = add->path.dentry;
 +      if (!add_bindex) {
 +              au_cpup_attr_all(root_inode, /*force*/1);
 +              sb->s_maxbytes = h_dentry->d_sb->s_maxbytes;
@@ -2440,7 +2548,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                      continue;
 +
 +              /* AuDbgInode(i); */
-+              if (au_iigen(i) == sigen)
++              if (au_iigen(i, NULL) == sigen)
 +                      ii_read_lock_child(i);
 +              else {
 +                      ii_write_lock_child(i);
@@ -2611,6 +2719,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              goto out;
 +      }
 +      br = au_sbr(sb, bindex);
++      AuDebugOn(!path_equal(&br->br_path, &del->h_path));
 +      i = atomic_read(&br->br_count);
 +      if (unlikely(i)) {
 +              AuVerbose(verbose, "%d file(s) opened\n", i);
@@ -2659,10 +2768,10 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +out_wh:
 +      /* revert */
-+      rerr = au_br_init_wh(sb, br, br->br_perm, del->h_path.dentry);
++      rerr = au_br_init_wh(sb, br, br->br_perm);
 +      if (rerr)
-+              pr_warning("failed re-creating base whiteout, %s. (%d)\n",
-+                         del->pathname, rerr);
++              pr_warn("failed re-creating base whiteout, %s. (%d)\n",
++                      del->pathname, rerr);
 +out:
 +      return err;
 +}
@@ -2769,22 +2878,25 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +{
 +      unsigned long long n;
 +      struct file **p, *f;
++      struct au_sphlhead *files;
++      struct au_finfo *finfo;
 +      struct super_block *sb = arg;
 +
 +      n = 0;
 +      p = a;
-+      lg_global_lock(files_lglock);
-+      do_file_list_for_each_entry(sb, f) {
-+              if (au_fi(f)
-+                  && file_count(f)
-+                  && !special_file(f->f_dentry->d_inode->i_mode)) {
++      files = &au_sbi(sb)->si_files;
++      spin_lock(&files->spin);
++      hlist_for_each_entry(finfo, &files->head, fi_hlist) {
++              f = finfo->fi_file;
++              if (file_count(f)
++                  && !special_file(file_inode(f)->i_mode)) {
 +                      get_file(f);
 +                      *p++ = f;
 +                      n++;
 +                      AuDebugOn(n > max);
 +              }
-+      } while_file_list_for_each_entry;
-+      lg_global_unlock(files_lglock);
++      }
++      spin_unlock(&files->spin);
 +
 +      return n;
 +}
@@ -2842,7 +2954,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                      goto out_array;
 +              }
 +
-+              inode = file->f_dentry->d_inode;
++              inode = file_inode(file);
 +              hfile = &au_fi(file)->fi_htop;
 +              hf = hfile->hf_file;
 +              if (!S_ISREG(inode->i_mode)
@@ -2870,7 +2982,13 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                      continue;
 +
 +              /* todo: already flushed? */
-+              /* cf. fs/super.c:mark_files_ro() */
++              /*
++               * fs/super.c:mark_files_ro() is gone, but aufs keeps its
++               * approach which resets f_mode and calls mnt_drop_write() and
++               * file_release_write() for each file, because the branch
++               * attribute in aufs world is totally different from the native
++               * fs rw/ro mode.
++              */
 +              /* fi_read_lock(file); */
 +              hfile = &au_fi(file)->fi_htop;
 +              hf = hfile->hf_file;
@@ -2879,8 +2997,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              hf->f_mode &= ~FMODE_WRITE;
 +              spin_unlock(&hf->f_lock);
 +              if (!file_check_writeable(hf)) {
++                      __mnt_drop_write(hf->f_path.mnt);
 +                      file_release_write(hf);
-+                      mnt_drop_write(hf->f_vfsmnt);
 +              }
 +      }
 +
@@ -2896,7 +3014,6 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +{
 +      int err, rerr;
 +      aufs_bindex_t bindex;
-+      struct path path;
 +      struct dentry *root;
 +      struct au_branch *br;
 +
@@ -2916,12 +3033,13 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              goto out;
 +
 +      br = au_sbr(sb, bindex);
++      AuDebugOn(mod->h_root != au_br_dentry(br));
 +      if (br->br_perm == mod->perm)
 +              return 0; /* success */
 +
 +      if (au_br_writable(br->br_perm)) {
 +              /* remove whiteout base */
-+              err = au_br_init_wh(sb, br, mod->perm, mod->h_root);
++              err = au_br_init_wh(sb, br, mod->perm);
 +              if (unlikely(err))
 +                      goto out;
 +
@@ -2938,12 +3056,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                              rerr = -ENOMEM;
 +                              br->br_wbr = kmalloc(sizeof(*br->br_wbr),
 +                                                   GFP_NOFS);
-+                              if (br->br_wbr) {
-+                                      path.mnt = br->br_mnt;
-+                                      path.dentry = mod->h_root;
-+                                      rerr = au_wbr_init(br, sb, br->br_perm,
-+                                                         &path);
-+                              }
++                              if (br->br_wbr)
++                                      rerr = au_wbr_init(br, sb, br->br_perm);
 +                              if (unlikely(rerr)) {
 +                                      AuIOErr("nested error %d (%d)\n",
 +                                              rerr, err);
@@ -2956,9 +3070,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              err = -ENOMEM;
 +              br->br_wbr = kmalloc(sizeof(*br->br_wbr), GFP_NOFS);
 +              if (br->br_wbr) {
-+                      path.mnt = br->br_mnt;
-+                      path.dentry = mod->h_root;
-+                      err = au_wbr_init(br, sb, mod->perm, &path);
++                      err = au_wbr_init(br, sb, mod->perm);
 +                      if (unlikely(err)) {
 +                              kfree(br->br_wbr);
 +                              br->br_wbr = NULL;
@@ -2967,6 +3079,12 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      }
 +
 +      if (!err) {
++              if ((br->br_perm & AuBrAttr_UNPIN)
++                  && !(mod->perm & AuBrAttr_UNPIN))
++                      au_br_dflags_force(br);
++              else if (!(br->br_perm & AuBrAttr_UNPIN)
++                       && (mod->perm & AuBrAttr_UNPIN))
++                      au_br_dflags_restore(br);
 +              *do_refresh |= need_sigen_inc(br->br_perm, mod->perm);
 +              br->br_perm = mod->perm;
 +      }
@@ -2977,10 +3095,10 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +}
 diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 --- /usr/share/empty/fs/aufs/branch.h  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/branch.h     2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,230 @@
++++ linux/fs/aufs/branch.h     2013-07-06 13:20:47.740198107 +0200
+@@ -0,0 +1,255 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -3042,6 +3160,13 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +/* ext2 has 3 types of operations at least, ext3 has 4 */
 +#define AuBrDynOp (AuDyLast * 4)
 +
++#ifdef CONFIG_AUFS_HFSNOTIFY
++/* support for asynchronous destruction */
++struct au_br_hfsnotify {
++      struct fsnotify_group   *hfsn_group;
++};
++#endif
++
 +/* protected by superblock rwsem */
 +struct au_branch {
 +      struct au_xino_file     br_xino;
@@ -3049,7 +3174,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +      aufs_bindex_t           br_id;
 +
 +      int                     br_perm;
-+      struct vfsmount         *br_mnt;
++      unsigned int            br_dflags;
++      struct path             br_path;
 +      spinlock_t              br_dykey_lock;
 +      struct au_dykey         *br_dykey[AuBrDynOp];
 +      atomic_t                br_count;
@@ -3061,8 +3187,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +      atomic_t                br_xino_running;
 +
 +#ifdef CONFIG_AUFS_HFSNOTIFY
-+      struct fsnotify_group   *br_hfsn_group;
-+      struct fsnotify_ops     br_hfsn_ops;
++      struct au_br_hfsnotify  *br_hfsn;
 +#endif
 +
 +#ifdef CONFIG_SYSFS
@@ -3074,6 +3199,21 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +
 +/* ---------------------------------------------------------------------- */
 +
++static inline struct vfsmount *au_br_mnt(struct au_branch *br)
++{
++      return br->br_path.mnt;
++}
++
++static inline struct dentry *au_br_dentry(struct au_branch *br)
++{
++      return br->br_path.dentry;
++}
++
++static inline struct super_block *au_br_sb(struct au_branch *br)
++{
++      return au_br_mnt(br)->mnt_sb;
++}
++
 +/* branch permissions and attributes */
 +#define AuBrPerm_RW           1               /* writable, hardlinkable wh */
 +#define AuBrPerm_RO           (1 << 1)        /* readonly */
@@ -3084,6 +3224,9 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +
 +#define AuBrWAttr_NoLinkWH    (1 << 4)        /* un-hardlinkable whiteouts */
 +
++#define AuBrAttr_UNPIN                (1 << 5)        /* rename-able top dir of
++                                                 branch */
++
 +static inline int au_br_writable(int brperm)
 +{
 +      return brperm & AuBrPerm_RW;
@@ -3101,7 +3244,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +
 +static inline int au_br_rdonly(struct au_branch *br)
 +{
-+      return ((br->br_mnt->mnt_sb->s_flags & MS_RDONLY)
++      return ((au_br_sb(br)->s_flags & MS_RDONLY)
 +              || !au_br_writable(br->br_perm))
 +              ? -EROFS : 0;
 +}
@@ -3171,13 +3314,13 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +static inline
 +struct vfsmount *au_sbr_mnt(struct super_block *sb, aufs_bindex_t bindex)
 +{
-+      return au_sbr(sb, bindex)->br_mnt;
++      return au_br_mnt(au_sbr(sb, bindex));
 +}
 +
 +static inline
 +struct super_block *au_sbr_sb(struct super_block *sb, aufs_bindex_t bindex)
 +{
-+      return au_sbr_mnt(sb, bindex)->mnt_sb;
++      return au_br_sb(au_sbr(sb, bindex));
 +}
 +
 +static inline void au_sbr_put(struct super_block *sb, aufs_bindex_t bindex)
@@ -3211,7 +3354,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +#endif /* __AUFS_BRANCH_H__ */
 diff -urN /usr/share/empty/fs/aufs/conf.mk linux/fs/aufs/conf.mk
 --- /usr/share/empty/fs/aufs/conf.mk   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/conf.mk      2012-02-13 21:54:56.966438287 +0100
++++ linux/fs/aufs/conf.mk      2013-07-06 13:20:47.740198107 +0200
 @@ -0,0 +1,38 @@
 +
 +AuConfStr = CONFIG_AUFS_FS=${CONFIG_AUFS_FS}
@@ -3253,10 +3396,10 @@ diff -urN /usr/share/empty/fs/aufs/conf.mk linux/fs/aufs/conf.mk
 +-include ${srctree}/${src}/conf_priv.mk
 diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 --- /usr/share/empty/fs/aufs/cpup.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/cpup.c       2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,1079 @@
++++ linux/fs/aufs/cpup.c       2013-08-23 23:59:39.631583456 +0200
+@@ -0,0 +1,1255 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -3281,12 +3424,14 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +#include <linux/mm.h>
 +#include "aufs.h"
 +
-+void au_cpup_attr_flags(struct inode *dst, struct inode *src)
++void au_cpup_attr_flags(struct inode *dst, unsigned int iflags)
 +{
 +      const unsigned int mask = S_DEAD | S_SWAPFILE | S_PRIVATE
-+              | S_NOATIME | S_NOCMTIME;
++              | S_NOATIME | S_NOCMTIME | S_AUTOMOUNT;
++
++      BUILD_BUG_ON(sizeof(iflags) != sizeof(dst->i_flags));
 +
-+      dst->i_flags |= src->i_flags & ~mask;
++      dst->i_flags |= iflags & ~mask;
 +      if (au_test_fs_notime(dst->i_sb))
 +              dst->i_flags |= S_NOATIME | S_NOCMTIME;
 +}
@@ -3315,6 +3460,11 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +          && au_plink_test(inode))
 +              return;
 +
++      /*
++       * 0 can happen in revalidating.
++       * h_inode->i_mutex is not held, but it is harmless since once i_nlink
++       * reaches 0, it will never become positive.
++       */
 +      set_nlink(inode, h_inode->i_nlink);
 +
 +      /*
@@ -3340,7 +3490,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      inode->i_uid = h_inode->i_uid;
 +      inode->i_gid = h_inode->i_gid;
 +      au_cpup_attr_timesizes(inode);
-+      au_cpup_attr_flags(inode, h_inode);
++      au_cpup_attr_flags(inode, h_inode->i_flags);
 +}
 +
 +void au_cpup_igen(struct inode *inode, struct inode *h_inode)
@@ -3396,18 +3546,27 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +      err = vfsub_notify_change(&dt->dt_h_path, &attr);
 +      if (unlikely(err))
-+              pr_warning("restoring timestamps failed(%d). ignored\n", err);
++              pr_warn("restoring timestamps failed(%d). ignored\n", err);
 +}
 +
 +/* ---------------------------------------------------------------------- */
 +
++/* internal use only */
++struct au_cpup_reg_attr {
++      int             valid;
++      struct kstat    st;
++      unsigned int    iflags; /* inode->i_flags */
++};
++
 +static noinline_for_stack
-+int cpup_iattr(struct dentry *dst, aufs_bindex_t bindex, struct dentry *h_src)
++int cpup_iattr(struct dentry *dst, aufs_bindex_t bindex, struct dentry *h_src,
++             struct au_cpup_reg_attr *h_src_attr)
 +{
 +      int err, sbits;
 +      struct iattr ia;
 +      struct path h_path;
 +      struct inode *h_isrc, *h_idst;
++      struct kstat *h_st;
 +
 +      h_path.dentry = au_h_dptr(dst, bindex);
 +      h_idst = h_path.dentry->d_inode;
@@ -3416,17 +3575,32 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      ia.ia_valid = ATTR_FORCE | ATTR_UID | ATTR_GID
 +              | ATTR_ATIME | ATTR_MTIME
 +              | ATTR_ATIME_SET | ATTR_MTIME_SET;
-+      ia.ia_uid = h_isrc->i_uid;
-+      ia.ia_gid = h_isrc->i_gid;
-+      ia.ia_atime = h_isrc->i_atime;
-+      ia.ia_mtime = h_isrc->i_mtime;
-+      if (h_idst->i_mode != h_isrc->i_mode
-+          && !S_ISLNK(h_idst->i_mode)) {
-+              ia.ia_valid |= ATTR_MODE;
-+              ia.ia_mode = h_isrc->i_mode;
++      if (h_src_attr && h_src_attr->valid) {
++              h_st = &h_src_attr->st;
++              ia.ia_uid = h_st->uid;
++              ia.ia_gid = h_st->gid;
++              ia.ia_atime = h_st->atime;
++              ia.ia_mtime = h_st->mtime;
++              if (h_idst->i_mode != h_st->mode
++                  && !S_ISLNK(h_idst->i_mode)) {
++                      ia.ia_valid |= ATTR_MODE;
++                      ia.ia_mode = h_st->mode;
++              }
++              sbits = !!(h_st->mode & (S_ISUID | S_ISGID));
++              au_cpup_attr_flags(h_idst, h_src_attr->iflags);
++      } else {
++              ia.ia_uid = h_isrc->i_uid;
++              ia.ia_gid = h_isrc->i_gid;
++              ia.ia_atime = h_isrc->i_atime;
++              ia.ia_mtime = h_isrc->i_mtime;
++              if (h_idst->i_mode != h_isrc->i_mode
++                  && !S_ISLNK(h_idst->i_mode)) {
++                      ia.ia_valid |= ATTR_MODE;
++                      ia.ia_mode = h_isrc->i_mode;
++              }
++              sbits = !!(h_isrc->i_mode & (S_ISUID | S_ISGID));
++              au_cpup_attr_flags(h_idst, h_isrc->i_flags);
 +      }
-+      sbits = !!(h_isrc->i_mode & (S_ISUID | S_ISGID));
-+      au_cpup_attr_flags(h_idst, h_isrc);
 +      err = vfsub_notify_change(&h_path, &ia);
 +
 +      /* is this nfs only? */
@@ -3526,7 +3700,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +                      ia->ia_size = dst->f_pos;
 +                      ia->ia_valid = ATTR_SIZE | ATTR_FILE;
 +                      ia->ia_file = dst;
-+                      h_mtx = &dst->f_dentry->d_inode->i_mutex;
++                      h_mtx = &file_inode(dst)->i_mutex;
 +                      mutex_lock_nested(h_mtx, AuLsc_I_CHILD2);
 +                      err = vfsub_notify_change(&dst->f_path, ia);
 +                      mutex_unlock(h_mtx);
@@ -3575,8 +3749,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 + * to support a sparse file which is opened with O_APPEND,
 + * we need to close the file.
 + */
-+static int au_cp_regular(struct dentry *dentry, aufs_bindex_t bdst,
-+                       aufs_bindex_t bsrc, loff_t len)
++static int au_cp_regular(struct au_cp_generic *cpg)
 +{
 +      int err, i;
 +      enum { SRC, DST };
@@ -3588,14 +3761,14 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              void *label, *label_file;
 +      } *f, file[] = {
 +              {
-+                      .bindex = bsrc,
++                      .bindex = cpg->bsrc,
 +                      .flags = O_RDONLY | O_NOATIME | O_LARGEFILE,
 +                      .file = NULL,
 +                      .label = &&out,
 +                      .label_file = &&out_src
 +              },
 +              {
-+                      .bindex = bdst,
++                      .bindex = cpg->bdst,
 +                      .flags = O_WRONLY | O_NOATIME | O_LARGEFILE,
 +                      .file = NULL,
 +                      .label = &&out_src,
@@ -3605,11 +3778,12 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      struct super_block *sb;
 +
 +      /* bsrc branch can be ro/rw. */
-+      sb = dentry->d_sb;
++      sb = cpg->dentry->d_sb;
 +      f = file;
 +      for (i = 0; i < 2; i++, f++) {
-+              f->dentry = au_h_dptr(dentry, f->bindex);
-+              f->file = au_h_open(dentry, f->bindex, f->flags, /*file*/NULL);
++              f->dentry = au_h_dptr(cpg->dentry, f->bindex);
++              f->file = au_h_open(cpg->dentry, f->bindex, f->flags,
++                                  /*file*/NULL);
 +              err = PTR_ERR(f->file);
 +              if (IS_ERR(f->file))
 +                      goto *f->label;
@@ -3620,7 +3794,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +      /* try stopping to update while we copyup */
 +      IMustLock(file[SRC].dentry->d_inode);
-+      err = au_copy_file(file[DST].file, file[SRC].file, len);
++      err = au_copy_file(file[DST].file, file[SRC].file, cpg->len);
 +
 +out_dst:
 +      fput(file[DST].file);
@@ -3632,27 +3806,38 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      return err;
 +}
 +
-+static int au_do_cpup_regular(struct dentry *dentry, aufs_bindex_t bdst,
-+                            aufs_bindex_t bsrc, loff_t len,
-+                            struct inode *h_dir, struct path *h_path)
++static int au_do_cpup_regular(struct au_cp_generic *cpg,
++                            struct au_cpup_reg_attr *h_src_attr)
 +{
 +      int err, rerr;
 +      loff_t l;
++      struct path h_path;
++      struct inode *h_src_inode;
 +
 +      err = 0;
-+      l = i_size_read(au_h_iptr(dentry->d_inode, bsrc));
-+      if (len == -1 || l < len)
-+              len = l;
-+      if (len)
-+              err = au_cp_regular(dentry, bdst, bsrc, len);
-+      if (!err)
-+              goto out; /* success */
++      h_src_inode = au_h_iptr(cpg->dentry->d_inode, cpg->bsrc);
++      l = i_size_read(h_src_inode);
++      if (cpg->len == -1 || l < cpg->len)
++              cpg->len = l;
++      if (cpg->len) {
++              /* try stopping to update while we are referencing */
++              mutex_lock_nested(&h_src_inode->i_mutex, AuLsc_I_CHILD);
++              au_pin_hdir_unlock(cpg->pin);
 +
-+      rerr = vfsub_unlink(h_dir, h_path, /*force*/0);
-+      if (rerr) {
-+              AuIOErr("failed unlinking cpup-ed %.*s(%d, %d)\n",
-+                      AuDLNPair(h_path->dentry), err, rerr);
-+              err = -EIO;
++              h_path.dentry = au_h_dptr(cpg->dentry, cpg->bsrc);
++              h_path.mnt = au_sbr_mnt(cpg->dentry->d_sb, cpg->bsrc);
++              h_src_attr->iflags = h_src_inode->i_flags;
++              err = vfs_getattr(&h_path, &h_src_attr->st);
++              if (unlikely(err)) {
++                      mutex_unlock(&h_src_inode->i_mutex);
++                      goto out;
++              }
++              h_src_attr->valid = 1;
++              err = au_cp_regular(cpg);
++              mutex_unlock(&h_src_inode->i_mutex);
++              rerr = au_pin_hdir_relock(cpg->pin);
++              if (!err && rerr)
++                      err = rerr;
 +      }
 +
 +out:
@@ -3674,7 +3859,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              goto out;
 +
 +      err = -ENOMEM;
-+      sym.k = __getname_gfp(GFP_NOFS);
++      sym.k = (void *)__get_free_page(GFP_NOFS);
 +      if (unlikely(!sym.k))
 +              goto out;
 +
@@ -3689,23 +3874,21 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              sym.k[symlen] = 0;
 +              err = vfsub_symlink(h_dir, h_path, sym.k);
 +      }
-+      __putname(sym.k);
++      free_page((unsigned long)sym.k);
 +
 +out:
 +      return err;
 +}
 +
-+/* return with the lower dst inode is locked */
 +static noinline_for_stack
-+int cpup_entry(struct dentry *dentry, aufs_bindex_t bdst,
-+             aufs_bindex_t bsrc, loff_t len, unsigned int flags,
-+             struct dentry *dst_parent)
++int cpup_entry(struct au_cp_generic *cpg, struct dentry *dst_parent,
++             struct au_cpup_reg_attr *h_src_attr)
 +{
 +      int err;
 +      umode_t mode;
 +      unsigned int mnt_flags;
 +      unsigned char isdir;
-+      const unsigned char do_dt = !!au_ftest_cpup(flags, DTIME);
++      const unsigned char do_dt = !!au_ftest_cpup(cpg->flags, DTIME);
 +      struct au_dtime dt;
 +      struct path h_path;
 +      struct dentry *h_src, *h_dst, *h_parent;
@@ -3713,19 +3896,22 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      struct super_block *sb;
 +
 +      /* bsrc branch can be ro/rw. */
-+      h_src = au_h_dptr(dentry, bsrc);
++      h_src = au_h_dptr(cpg->dentry, cpg->bsrc);
 +      h_inode = h_src->d_inode;
-+      AuDebugOn(h_inode != au_h_iptr(dentry->d_inode, bsrc));
++      AuDebugOn(h_inode != au_h_iptr(cpg->dentry->d_inode, cpg->bsrc));
 +
 +      /* try stopping to be referenced while we are creating */
-+      h_dst = au_h_dptr(dentry, bdst);
++      h_dst = au_h_dptr(cpg->dentry, cpg->bdst);
++      if (au_ftest_cpup(cpg->flags, RENAME))
++              AuDebugOn(strncmp(h_dst->d_name.name, AUFS_WH_PFX,
++                                AUFS_WH_PFX_LEN));
 +      h_parent = h_dst->d_parent; /* dir inode is locked */
 +      h_dir = h_parent->d_inode;
 +      IMustLock(h_dir);
 +      AuDebugOn(h_parent != h_dst->d_parent);
 +
-+      sb = dentry->d_sb;
-+      h_path.mnt = au_sbr_mnt(sb, bdst);
++      sb = cpg->dentry->d_sb;
++      h_path.mnt = au_sbr_mnt(sb, cpg->bdst);
 +      if (do_dt) {
 +              h_path.dentry = h_parent;
 +              au_dtime_store(&dt, dst_parent, &h_path);
@@ -3736,13 +3922,10 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      mode = h_inode->i_mode;
 +      switch (mode & S_IFMT) {
 +      case S_IFREG:
-+              /* try stopping to update while we are referencing */
-+              IMustLock(h_inode);
-+              err = vfsub_create(h_dir, &h_path, mode | S_IWUSR);
++              err = vfsub_create(h_dir, &h_path, mode | S_IWUSR,
++                                 /*want_excl*/true);
 +              if (!err)
-+                      err = au_do_cpup_regular
-+                              (dentry, bdst, bsrc, len,
-+                               au_h_iptr(dst_parent->d_inode, bdst), &h_path);
++                      err = au_do_cpup_regular(cpg, h_src_attr);
 +              break;
 +      case S_IFDIR:
 +              isdir = 1;
@@ -3752,10 +3935,10 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +                       * strange behaviour from the users view,
 +                       * particularry setattr case
 +                       */
-+                      if (au_ibstart(dst_parent->d_inode) == bdst)
++                      if (au_ibstart(dst_parent->d_inode) == cpg->bdst)
 +                              au_cpup_attr_nlink(dst_parent->d_inode,
 +                                                 /*force*/1);
-+                      au_cpup_attr_nlink(dentry->d_inode, /*force*/1);
++                      au_cpup_attr_nlink(cpg->dentry->d_inode, /*force*/1);
 +              }
 +              break;
 +      case S_IFLNK:
@@ -3780,10 +3963,10 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +          && au_opt_test(mnt_flags, XINO)
 +          && h_inode->i_nlink == 1
 +          /* todo: unnecessary? */
-+          /* && dentry->d_inode->i_nlink == 1 */
-+          && bdst < bsrc
-+          && !au_ftest_cpup(flags, KEEPLINO))
-+              au_xino_write(sb, bsrc, h_inode->i_ino, /*ino*/0);
++          /* && cpg->dentry->d_inode->i_nlink == 1 */
++          && cpg->bdst < cpg->bsrc
++          && !au_ftest_cpup(cpg->flags, KEEPLINO))
++              au_xino_write(sb, cpg->bsrc, h_inode->i_ino, /*ino*/0);
 +              /* ignore this error */
 +
 +      if (do_dt)
@@ -3791,160 +3974,232 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      return err;
 +}
 +
++static int au_do_ren_after_cpup(struct dentry *dentry, aufs_bindex_t bdst,
++                              struct path *h_path)
++{
++      int err;
++      struct dentry *h_dentry, *h_parent;
++      struct inode *h_dir;
++
++      h_dentry = dget(au_h_dptr(dentry, bdst));
++      au_set_h_dptr(dentry, bdst, NULL);
++      err = au_lkup_neg(dentry, bdst, /*wh*/0);
++      if (unlikely(err)) {
++              au_set_h_dptr(dentry, bdst, h_dentry);
++              goto out;
++      }
++
++      h_path->dentry = dget(au_h_dptr(dentry, bdst));
++      au_set_h_dptr(dentry, bdst, h_dentry);
++      h_parent = h_dentry->d_parent; /* dir inode is locked */
++      h_dir = h_parent->d_inode;
++      IMustLock(h_dir);
++      AuDbg("%.*s %.*s\n", AuDLNPair(h_dentry), AuDLNPair(h_path->dentry));
++      err = vfsub_rename(h_dir, h_dentry, h_dir, h_path);
++      dput(h_path->dentry);
++
++out:
++      return err;
++}
++
 +/*
 + * copyup the @dentry from @bsrc to @bdst.
 + * the caller must set the both of lower dentries.
 + * @len is for truncating when it is -1 copyup the entire file.
 + * in link/rename cases, @dst_parent may be different from the real one.
++ * basic->bsrc can be larger than basic->bdst.
 + */
-+static int au_cpup_single(struct dentry *dentry, aufs_bindex_t bdst,
-+                        aufs_bindex_t bsrc, loff_t len, unsigned int flags,
-+                        struct dentry *dst_parent)
++static int au_cpup_single(struct au_cp_generic *cpg, struct dentry *dst_parent)
 +{
 +      int err, rerr;
 +      aufs_bindex_t old_ibstart;
 +      unsigned char isdir, plink;
-+      struct au_dtime dt;
-+      struct path h_path;
 +      struct dentry *h_src, *h_dst, *h_parent;
 +      struct inode *dst_inode, *h_dir, *inode;
 +      struct super_block *sb;
++      struct au_branch *br;
++      /* to reuduce stack size */
++      struct {
++              struct au_dtime dt;
++              struct path h_path;
++              struct au_cpup_reg_attr h_src_attr;
++      } *a;
 +
-+      AuDebugOn(bsrc <= bdst);
++      err = -ENOMEM;
++      a = kmalloc(sizeof(*a), GFP_NOFS);
++      if (unlikely(!a))
++              goto out;
++      a->h_src_attr.valid = 0;
 +
-+      sb = dentry->d_sb;
-+      h_path.mnt = au_sbr_mnt(sb, bdst);
-+      h_dst = au_h_dptr(dentry, bdst);
++      sb = cpg->dentry->d_sb;
++      br = au_sbr(sb, cpg->bdst);
++      a->h_path.mnt = au_br_mnt(br);
++      h_dst = au_h_dptr(cpg->dentry, cpg->bdst);
 +      h_parent = h_dst->d_parent; /* dir inode is locked */
 +      h_dir = h_parent->d_inode;
 +      IMustLock(h_dir);
 +
-+      h_src = au_h_dptr(dentry, bsrc);
-+      inode = dentry->d_inode;
++      h_src = au_h_dptr(cpg->dentry, cpg->bsrc);
++      inode = cpg->dentry->d_inode;
 +
 +      if (!dst_parent)
-+              dst_parent = dget_parent(dentry);
++              dst_parent = dget_parent(cpg->dentry);
 +      else
 +              dget(dst_parent);
 +
 +      plink = !!au_opt_test(au_mntflags(sb), PLINK);
-+      dst_inode = au_h_iptr(inode, bdst);
++      dst_inode = au_h_iptr(inode, cpg->bdst);
 +      if (dst_inode) {
 +              if (unlikely(!plink)) {
 +                      err = -EIO;
 +                      AuIOErr("hi%lu(i%lu) exists on b%d "
 +                              "but plink is disabled\n",
-+                              dst_inode->i_ino, inode->i_ino, bdst);
-+                      goto out;
++                              dst_inode->i_ino, inode->i_ino, cpg->bdst);
++                      goto out_parent;
 +              }
 +
 +              if (dst_inode->i_nlink) {
-+                      const int do_dt = au_ftest_cpup(flags, DTIME);
++                      const int do_dt = au_ftest_cpup(cpg->flags, DTIME);
 +
-+                      h_src = au_plink_lkup(inode, bdst);
++                      h_src = au_plink_lkup(inode, cpg->bdst);
 +                      err = PTR_ERR(h_src);
 +                      if (IS_ERR(h_src))
-+                              goto out;
++                              goto out_parent;
 +                      if (unlikely(!h_src->d_inode)) {
 +                              err = -EIO;
 +                              AuIOErr("i%lu exists on a upper branch "
 +                                      "but not pseudo-linked\n",
 +                                      inode->i_ino);
 +                              dput(h_src);
-+                              goto out;
++                              goto out_parent;
 +                      }
 +
 +                      if (do_dt) {
-+                              h_path.dentry = h_parent;
-+                              au_dtime_store(&dt, dst_parent, &h_path);
++                              a->h_path.dentry = h_parent;
++                              au_dtime_store(&a->dt, dst_parent, &a->h_path);
 +                      }
-+                      h_path.dentry = h_dst;
-+                      err = vfsub_link(h_src, h_dir, &h_path);
++
++                      a->h_path.dentry = h_dst;
++                      err = vfsub_link(h_src, h_dir, &a->h_path);
++                      if (!err && au_ftest_cpup(cpg->flags, RENAME))
++                              err = au_do_ren_after_cpup
++                                      (cpg->dentry, cpg->bdst, &a->h_path);
 +                      if (do_dt)
-+                              au_dtime_revert(&dt);
++                              au_dtime_revert(&a->dt);
 +                      dput(h_src);
-+                      goto out;
++                      goto out_parent;
 +              } else
 +                      /* todo: cpup_wh_file? */
 +                      /* udba work */
 +                      au_update_ibrange(inode, /*do_put_zero*/1);
 +      }
 +
++      isdir = S_ISDIR(inode->i_mode);
 +      old_ibstart = au_ibstart(inode);
-+      err = cpup_entry(dentry, bdst, bsrc, len, flags, dst_parent);
++      err = cpup_entry(cpg, dst_parent, &a->h_src_attr);
 +      if (unlikely(err))
-+              goto out;
++              goto out_rev;
 +      dst_inode = h_dst->d_inode;
 +      mutex_lock_nested(&dst_inode->i_mutex, AuLsc_I_CHILD2);
++      /* todo: necessary? */
++      /* au_pin_hdir_unlock(cpg->pin); */
 +
-+      err = cpup_iattr(dentry, bdst, h_src);
-+      isdir = S_ISDIR(dst_inode->i_mode);
-+      if (!err) {
-+              if (bdst < old_ibstart) {
-+                      if (S_ISREG(inode->i_mode)) {
-+                              err = au_dy_iaop(inode, bdst, dst_inode);
-+                              if (unlikely(err))
-+                                      goto out_rev;
++      err = cpup_iattr(cpg->dentry, cpg->bdst, h_src, &a->h_src_attr);
++      if (unlikely(err)) {
++              /* todo: necessary? */
++              /* au_pin_hdir_relock(cpg->pin); */ /* ignore an error */
++              mutex_unlock(&dst_inode->i_mutex);
++              goto out_rev;
++      }
++
++      if (cpg->bdst < old_ibstart) {
++              if (S_ISREG(inode->i_mode)) {
++                      err = au_dy_iaop(inode, cpg->bdst, dst_inode);
++                      if (unlikely(err)) {
++                              /* ignore an error */
++                              /* au_pin_hdir_relock(cpg->pin); */
++                              mutex_unlock(&dst_inode->i_mutex);
++                              goto out_rev;
 +                      }
-+                      au_set_ibstart(inode, bdst);
 +              }
-+              au_set_h_iptr(inode, bdst, au_igrab(dst_inode),
-+                            au_hi_flags(inode, isdir));
-+              mutex_unlock(&dst_inode->i_mutex);
-+              if (!isdir
-+                  && h_src->d_inode->i_nlink > 1
-+                  && plink)
-+                      au_plink_append(inode, bdst, h_dst);
-+              goto out; /* success */
++              au_set_ibstart(inode, cpg->bdst);
++      } else
++              au_set_ibend(inode, cpg->bdst);
++      au_set_h_iptr(inode, cpg->bdst, au_igrab(dst_inode),
++                    au_hi_flags(inode, isdir));
++
++      /* todo: necessary? */
++      /* err = au_pin_hdir_relock(cpg->pin); */
++      mutex_unlock(&dst_inode->i_mutex);
++      if (unlikely(err))
++              goto out_rev;
++
++      if (!isdir
++          && h_src->d_inode->i_nlink > 1
++          && plink)
++              au_plink_append(inode, cpg->bdst, h_dst);
++
++      if (au_ftest_cpup(cpg->flags, RENAME)) {
++              a->h_path.dentry = h_dst;
++              err = au_do_ren_after_cpup(cpg->dentry, cpg->bdst, &a->h_path);
 +      }
++      if (!err)
++              goto out_parent; /* success */
 +
 +      /* revert */
 +out_rev:
-+      h_path.dentry = h_parent;
-+      mutex_unlock(&dst_inode->i_mutex);
-+      au_dtime_store(&dt, dst_parent, &h_path);
-+      h_path.dentry = h_dst;
-+      if (!isdir)
-+              rerr = vfsub_unlink(h_dir, &h_path, /*force*/0);
-+      else
-+              rerr = vfsub_rmdir(h_dir, &h_path);
-+      au_dtime_revert(&dt);
++      a->h_path.dentry = h_parent;
++      au_dtime_store(&a->dt, dst_parent, &a->h_path);
++      a->h_path.dentry = h_dst;
++      rerr = 0;
++      if (h_dst->d_inode) {
++              if (!isdir)
++                      rerr = vfsub_unlink(h_dir, &a->h_path, /*force*/0);
++              else
++                      rerr = vfsub_rmdir(h_dir, &a->h_path);
++      }
++      au_dtime_revert(&a->dt);
 +      if (rerr) {
 +              AuIOErr("failed removing broken entry(%d, %d)\n", err, rerr);
 +              err = -EIO;
 +      }
-+
-+out:
++out_parent:
 +      dput(dst_parent);
++      kfree(a);
++out:
 +      return err;
 +}
 +
++#if 0 /* unused */
 +struct au_cpup_single_args {
 +      int *errp;
-+      struct dentry *dentry;
-+      aufs_bindex_t bdst, bsrc;
-+      loff_t len;
-+      unsigned int flags;
++      struct au_cp_generic *cpg;
 +      struct dentry *dst_parent;
 +};
 +
 +static void au_call_cpup_single(void *args)
 +{
 +      struct au_cpup_single_args *a = args;
-+      *a->errp = au_cpup_single(a->dentry, a->bdst, a->bsrc, a->len,
-+                                a->flags, a->dst_parent);
++
++      au_pin_hdir_acquire_nest(a->cpg->pin);
++      *a->errp = au_cpup_single(a->cpg, a->dst_parent);
++      au_pin_hdir_release(a->cpg->pin);
 +}
++#endif
 +
 +/*
 + * prevent SIGXFSZ in copy-up.
 + * testing CAP_MKNOD is for generic fs,
 + * but CAP_FSETID is for xfs only, currently.
 + */
-+static int au_cpup_sio_test(struct super_block *sb, umode_t mode)
++static int au_cpup_sio_test(struct au_pin *pin, umode_t mode)
 +{
 +      int do_sio;
++      struct super_block *sb;
++      struct inode *h_dir;
 +
 +      do_sio = 0;
++      sb = au_pinned_parent(pin)->d_sb;
 +      if (!au_wkq_test()
 +          && (!au_sbi(sb)->si_plink_maint_pid
 +              || au_plink_maint(sb, AuLock_NOPLM))) {
@@ -3961,30 +4216,29 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              if (!do_sio)
 +                      do_sio = ((mode & (S_ISUID | S_ISGID))
 +                                && !capable(CAP_FSETID));
++              /* this workaround may be removed in the future */
++              if (!do_sio) {
++                      h_dir = au_pinned_h_dir(pin);
++                      do_sio = h_dir->i_mode & S_ISVTX;
++              }
 +      }
 +
 +      return do_sio;
 +}
 +
-+int au_sio_cpup_single(struct dentry *dentry, aufs_bindex_t bdst,
-+                     aufs_bindex_t bsrc, loff_t len, unsigned int flags,
-+                     struct dentry *dst_parent)
++#if 0 /* unused */
++int au_sio_cpup_single(struct au_cp_generic *cpg, struct dentry *dst_parent)
 +{
 +      int err, wkq_err;
 +      struct dentry *h_dentry;
 +
-+      h_dentry = au_h_dptr(dentry, bsrc);
-+      if (!au_cpup_sio_test(dentry->d_sb, h_dentry->d_inode->i_mode))
-+              err = au_cpup_single(dentry, bdst, bsrc, len, flags,
-+                                   dst_parent);
++      h_dentry = au_h_dptr(cpg->dentry, cpg->bsrc);
++      if (!au_cpup_sio_test(pin, h_dentry->d_inode->i_mode))
++              err = au_cpup_single(cpg, dst_parent);
 +      else {
 +              struct au_cpup_single_args args = {
 +                      .errp           = &err,
-+                      .dentry         = dentry,
-+                      .bdst           = bdst,
-+                      .bsrc           = bsrc,
-+                      .len            = len,
-+                      .flags          = flags,
++                      .cpg            = cpg,
 +                      .dst_parent     = dst_parent
 +              };
 +              wkq_err = au_wkq_wait(au_call_cpup_single, &args);
@@ -3994,31 +4248,35 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +      return err;
 +}
++#endif
 +
 +/*
 + * copyup the @dentry from the first active lower branch to @bdst,
 + * using au_cpup_single().
 + */
-+static int au_cpup_simple(struct dentry *dentry, aufs_bindex_t bdst, loff_t len,
-+                        unsigned int flags)
++static int au_cpup_simple(struct au_cp_generic *cpg)
 +{
 +      int err;
-+      aufs_bindex_t bsrc, bend;
++      unsigned int flags_orig;
++      struct dentry *dentry;
 +
-+      bend = au_dbend(dentry);
-+      for (bsrc = bdst + 1; bsrc <= bend; bsrc++)
-+              if (au_h_dptr(dentry, bsrc))
-+                      break;
++      AuDebugOn(cpg->bsrc < 0);
++
++      dentry = cpg->dentry;
++      DiMustWriteLock(dentry);
 +
-+      err = au_lkup_neg(dentry, bdst);
++      err = au_lkup_neg(dentry, cpg->bdst, /*wh*/1);
 +      if (!err) {
-+              err = au_cpup_single(dentry, bdst, bsrc, len, flags, NULL);
++              flags_orig = cpg->flags;
++              au_fset_cpup(cpg->flags, RENAME);
++              err = au_cpup_single(cpg, NULL);
++              cpg->flags = flags_orig;
 +              if (!err)
 +                      return 0; /* success */
 +
 +              /* revert */
-+              au_set_h_dptr(dentry, bdst, NULL);
-+              au_set_dbstart(dentry, bsrc);
++              au_set_h_dptr(dentry, cpg->bdst, NULL);
++              au_set_dbstart(dentry, cpg->bsrc);
 +      }
 +
 +      return err;
@@ -4026,37 +4284,44 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +struct au_cpup_simple_args {
 +      int *errp;
-+      struct dentry *dentry;
-+      aufs_bindex_t bdst;
-+      loff_t len;
-+      unsigned int flags;
++      struct au_cp_generic *cpg;
 +};
 +
 +static void au_call_cpup_simple(void *args)
 +{
 +      struct au_cpup_simple_args *a = args;
-+      *a->errp = au_cpup_simple(a->dentry, a->bdst, a->len, a->flags);
++
++      au_pin_hdir_acquire_nest(a->cpg->pin);
++      *a->errp = au_cpup_simple(a->cpg);
++      au_pin_hdir_release(a->cpg->pin);
 +}
 +
-+int au_sio_cpup_simple(struct dentry *dentry, aufs_bindex_t bdst, loff_t len,
-+                     unsigned int flags)
++static int au_do_sio_cpup_simple(struct au_cp_generic *cpg)
 +{
 +      int err, wkq_err;
-+      struct dentry *parent;
++      struct dentry *dentry, *parent;
++      struct file *h_file;
 +      struct inode *h_dir;
 +
++      dentry = cpg->dentry;
++      h_file = NULL;
++      if (au_ftest_cpup(cpg->flags, HOPEN)) {
++              AuDebugOn(cpg->bsrc < 0);
++              h_file = au_h_open_pre(dentry, cpg->bsrc);
++              err = PTR_ERR(h_file);
++              if (IS_ERR(h_file))
++                      goto out;
++      }
++
 +      parent = dget_parent(dentry);
-+      h_dir = au_h_iptr(parent->d_inode, bdst);
++      h_dir = au_h_iptr(parent->d_inode, cpg->bdst);
 +      if (!au_test_h_perm_sio(h_dir, MAY_EXEC | MAY_WRITE)
-+          && !au_cpup_sio_test(dentry->d_sb, dentry->d_inode->i_mode))
-+              err = au_cpup_simple(dentry, bdst, len, flags);
++          && !au_cpup_sio_test(cpg->pin, dentry->d_inode->i_mode))
++              err = au_cpup_simple(cpg);
 +      else {
 +              struct au_cpup_simple_args args = {
 +                      .errp           = &err,
-+                      .dentry         = dentry,
-+                      .bdst           = bdst,
-+                      .len            = len,
-+                      .flags          = flags
++                      .cpg            = cpg
 +              };
 +              wkq_err = au_wkq_wait(au_call_cpup_simple, &args);
 +              if (unlikely(wkq_err))
@@ -4064,58 +4329,97 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      }
 +
 +      dput(parent);
++      if (h_file)
++              au_h_open_post(dentry, cpg->bsrc, h_file);
++
++out:
 +      return err;
 +}
 +
++int au_sio_cpup_simple(struct au_cp_generic *cpg)
++{
++      aufs_bindex_t bsrc, bend;
++      struct dentry *dentry, *h_dentry;
++
++      if (cpg->bsrc < 0) {
++              dentry = cpg->dentry;
++              bend = au_dbend(dentry);
++              for (bsrc = cpg->bdst + 1; bsrc <= bend; bsrc++) {
++                      h_dentry = au_h_dptr(dentry, bsrc);
++                      if (h_dentry) {
++                              AuDebugOn(!h_dentry->d_inode);
++                              break;
++                      }
++              }
++              AuDebugOn(bsrc > bend);
++              cpg->bsrc = bsrc;
++      }
++      AuDebugOn(cpg->bsrc <= cpg->bdst);
++      return au_do_sio_cpup_simple(cpg);
++}
++
++int au_sio_cpdown_simple(struct au_cp_generic *cpg)
++{
++      AuDebugOn(cpg->bdst <= cpg->bsrc);
++      return au_do_sio_cpup_simple(cpg);
++}
++
 +/* ---------------------------------------------------------------------- */
 +
 +/*
 + * copyup the deleted file for writing.
 + */
-+static int au_do_cpup_wh(struct dentry *dentry, aufs_bindex_t bdst,
-+                       struct dentry *wh_dentry, struct file *file,
-+                       loff_t len)
++static int au_do_cpup_wh(struct au_cp_generic *cpg, struct dentry *wh_dentry,
++                       struct file *file)
 +{
 +      int err;
-+      aufs_bindex_t bstart;
-+      struct au_dinfo *dinfo;
++      unsigned int flags_orig;
++      aufs_bindex_t bsrc_orig;
 +      struct dentry *h_d_dst, *h_d_start;
++      struct au_dinfo *dinfo;
 +      struct au_hdentry *hdp;
 +
-+      dinfo = au_di(dentry);
++      dinfo = au_di(cpg->dentry);
 +      AuRwMustWriteLock(&dinfo->di_rwsem);
 +
-+      bstart = dinfo->di_bstart;
++      bsrc_orig = cpg->bsrc;
++      cpg->bsrc = dinfo->di_bstart;
 +      hdp = dinfo->di_hdentry;
-+      h_d_dst = hdp[0 + bdst].hd_dentry;
-+      dinfo->di_bstart = bdst;
-+      hdp[0 + bdst].hd_dentry = wh_dentry;
++      h_d_dst = hdp[0 + cpg->bdst].hd_dentry;
++      dinfo->di_bstart = cpg->bdst;
++      hdp[0 + cpg->bdst].hd_dentry = wh_dentry;
++      h_d_start = NULL;
 +      if (file) {
-+              h_d_start = hdp[0 + bstart].hd_dentry;
-+              hdp[0 + bstart].hd_dentry = au_hf_top(file)->f_dentry;
++              h_d_start = hdp[0 + cpg->bsrc].hd_dentry;
++              hdp[0 + cpg->bsrc].hd_dentry = au_hf_top(file)->f_dentry;
 +      }
-+      err = au_cpup_single(dentry, bdst, bstart, len, !AuCpup_DTIME,
-+                           /*h_parent*/NULL);
++      flags_orig = cpg->flags;
++      cpg->flags = !AuCpup_DTIME;
++      err = au_cpup_single(cpg, /*h_parent*/NULL);
++      cpg->flags = flags_orig;
 +      if (file) {
 +              if (!err)
 +                      err = au_reopen_nondir(file);
-+              hdp[0 + bstart].hd_dentry = h_d_start;
++              hdp[0 + cpg->bsrc].hd_dentry = h_d_start;
 +      }
-+      hdp[0 + bdst].hd_dentry = h_d_dst;
-+      dinfo->di_bstart = bstart;
++      hdp[0 + cpg->bdst].hd_dentry = h_d_dst;
++      dinfo->di_bstart = cpg->bsrc;
++      cpg->bsrc = bsrc_orig;
 +
 +      return err;
 +}
 +
-+static int au_cpup_wh(struct dentry *dentry, aufs_bindex_t bdst, loff_t len,
-+                    struct file *file)
++static int au_cpup_wh(struct au_cp_generic *cpg, struct file *file)
 +{
 +      int err;
++      aufs_bindex_t bdst;
 +      struct au_dtime dt;
-+      struct dentry *parent, *h_parent, *wh_dentry;
++      struct dentry *dentry, *parent, *h_parent, *wh_dentry;
 +      struct au_branch *br;
 +      struct path h_path;
 +
++      dentry = cpg->dentry;
++      bdst = cpg->bdst;
 +      br = au_sbr(dentry->d_sb, bdst);
 +      parent = dget_parent(dentry);
 +      h_parent = au_h_dptr(parent, bdst);
@@ -4125,9 +4429,9 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              goto out;
 +
 +      h_path.dentry = h_parent;
-+      h_path.mnt = br->br_mnt;
++      h_path.mnt = au_br_mnt(br);
 +      au_dtime_store(&dt, parent, &h_path);
-+      err = au_do_cpup_wh(dentry, bdst, wh_dentry, file, len);
++      err = au_do_cpup_wh(cpg, wh_dentry, file);
 +      if (unlikely(err))
 +              goto out_wh;
 +
@@ -4154,32 +4458,37 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +struct au_cpup_wh_args {
 +      int *errp;
-+      struct dentry *dentry;
-+      aufs_bindex_t bdst;
-+      loff_t len;
++      struct au_cp_generic *cpg;
 +      struct file *file;
 +};
 +
 +static void au_call_cpup_wh(void *args)
 +{
 +      struct au_cpup_wh_args *a = args;
-+      *a->errp = au_cpup_wh(a->dentry, a->bdst, a->len, a->file);
++
++      au_pin_hdir_acquire_nest(a->cpg->pin);
++      *a->errp = au_cpup_wh(a->cpg, a->file);
++      au_pin_hdir_release(a->cpg->pin);
 +}
 +
-+int au_sio_cpup_wh(struct dentry *dentry, aufs_bindex_t bdst, loff_t len,
-+                 struct file *file)
++int au_sio_cpup_wh(struct au_cp_generic *cpg, struct file *file)
 +{
 +      int err, wkq_err;
-+      struct dentry *parent, *h_orph, *h_parent, *h_dentry;
-+      struct inode *dir, *h_dir, *h_tmpdir, *h_inode;
++      aufs_bindex_t bdst;
++      struct dentry *dentry, *parent, *h_orph, *h_parent, *h_dentry;
++      struct inode *dir, *h_dir, *h_tmpdir;
 +      struct au_wbr *wbr;
++      struct au_pin wh_pin, *pin_orig;
 +
++      dentry = cpg->dentry;
++      bdst = cpg->bdst;
 +      parent = dget_parent(dentry);
 +      dir = parent->d_inode;
 +      h_orph = NULL;
 +      h_parent = NULL;
 +      h_dir = au_igrab(au_h_iptr(dir, bdst));
 +      h_tmpdir = h_dir;
++      pin_orig = NULL;
 +      if (!h_dir->i_nlink) {
 +              wbr = au_sbr(dentry->d_sb, bdst)->br_wbr;
 +              h_orph = wbr->wbr_orph;
@@ -4189,28 +4498,26 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              h_tmpdir = h_orph->d_inode;
 +              au_set_h_iptr(dir, bdst, au_igrab(h_tmpdir), /*flags*/0);
 +
-+              /* this temporary unlock is safe */
 +              if (file)
 +                      h_dentry = au_hf_top(file)->f_dentry;
 +              else
 +                      h_dentry = au_h_dptr(dentry, au_dbstart(dentry));
-+              h_inode = h_dentry->d_inode;
-+              IMustLock(h_inode);
-+              mutex_unlock(&h_inode->i_mutex);
 +              mutex_lock_nested(&h_tmpdir->i_mutex, AuLsc_I_PARENT3);
-+              mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
 +              /* todo: au_h_open_pre()? */
++
++              pin_orig = cpg->pin;
++              au_pin_init(&wh_pin, dentry, bdst, AuLsc_DI_PARENT,
++                          AuLsc_I_PARENT3, cpg->pin->udba, AuPin_DI_LOCKED);
++              cpg->pin = &wh_pin;
 +      }
 +
 +      if (!au_test_h_perm_sio(h_tmpdir, MAY_EXEC | MAY_WRITE)
-+          && !au_cpup_sio_test(dentry->d_sb, dentry->d_inode->i_mode))
-+              err = au_cpup_wh(dentry, bdst, len, file);
++          && !au_cpup_sio_test(cpg->pin, dentry->d_inode->i_mode))
++              err = au_cpup_wh(cpg, file);
 +      else {
 +              struct au_cpup_wh_args args = {
 +                      .errp   = &err,
-+                      .dentry = dentry,
-+                      .bdst   = bdst,
-+                      .len    = len,
++                      .cpg    = cpg,
 +                      .file   = file
 +              };
 +              wkq_err = au_wkq_wait(au_call_cpup_wh, &args);
@@ -4223,6 +4530,8 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              /* todo: au_h_open_post()? */
 +              au_set_h_iptr(dir, bdst, au_igrab(h_dir), /*flags*/0);
 +              au_set_h_dptr(parent, bdst, h_parent);
++              AuDebugOn(!pin_orig);
++              cpg->pin = pin_orig;
 +      }
 +      iput(h_dir);
 +      dput(parent);
@@ -4238,6 +4547,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +/* cf. revalidate function in file.c */
 +int au_cp_dirs(struct dentry *dentry, aufs_bindex_t bdst,
 +             int (*cp)(struct dentry *dentry, aufs_bindex_t bdst,
++                       struct au_pin *pin,
 +                       struct dentry *h_parent, void *arg),
 +             void *arg)
 +{
@@ -4283,7 +4593,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +                      au_pin_set_dentry(&pin, d);
 +                      err = au_do_pin(&pin);
 +                      if (!err) {
-+                              err = cp(d, bdst, h_parent, arg);
++                              err = cp(d, bdst, &pin, h_parent, arg);
 +                              au_unpin(&pin);
 +                      }
 +              }
@@ -4300,10 +4610,19 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +}
 +
 +static int au_cpup_dir(struct dentry *dentry, aufs_bindex_t bdst,
++                     struct au_pin *pin,
 +                     struct dentry *h_parent __maybe_unused ,
 +                     void *arg __maybe_unused)
 +{
-+      return au_sio_cpup_simple(dentry, bdst, -1, AuCpup_DTIME);
++      struct au_cp_generic cpg = {
++              .dentry = dentry,
++              .bdst   = bdst,
++              .bsrc   = -1,
++              .len    = 0,
++              .pin    = pin,
++              .flags  = AuCpup_DTIME
++      };
++      return au_sio_cpup_simple(&cpg);
 +}
 +
 +int au_cpup_dirs(struct dentry *dentry, aufs_bindex_t bdst)
@@ -4336,10 +4655,10 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +}
 diff -urN /usr/share/empty/fs/aufs/cpup.h linux/fs/aufs/cpup.h
 --- /usr/share/empty/fs/aufs/cpup.h    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/cpup.h       2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,81 @@
++++ linux/fs/aufs/cpup.h       2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,90 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -4369,8 +4688,9 @@ diff -urN /usr/share/empty/fs/aufs/cpup.h linux/fs/aufs/cpup.h
 +
 +struct inode;
 +struct file;
++struct au_pin;
 +
-+void au_cpup_attr_flags(struct inode *dst, struct inode *src);
++void au_cpup_attr_flags(struct inode *dst, unsigned int iflags);
 +void au_cpup_attr_timesizes(struct inode *inode);
 +void au_cpup_attr_nlink(struct inode *inode, int force);
 +void au_cpup_attr_changeable(struct inode *inode);
@@ -4379,10 +4699,21 @@ diff -urN /usr/share/empty/fs/aufs/cpup.h linux/fs/aufs/cpup.h
 +
 +/* ---------------------------------------------------------------------- */
 +
++struct au_cp_generic {
++      struct dentry   *dentry;
++      aufs_bindex_t   bdst, bsrc;
++      loff_t          len;
++      struct au_pin   *pin;
++      unsigned int    flags;
++};
++
 +/* cpup flags */
 +#define AuCpup_DTIME  1               /* do dtime_store/revert */
 +#define AuCpup_KEEPLINO       (1 << 1)        /* do not clear the lower xino,
 +                                         for link(2) */
++#define AuCpup_RENAME (1 << 2)        /* rename after cpup */
++#define AuCpup_HOPEN  (1 << 3)        /* call h_open_pre/post() in cpup */
++
 +#define au_ftest_cpup(flags, name)    ((flags) & AuCpup_##name)
 +#define au_fset_cpup(flags, name) \
 +      do { (flags) |= AuCpup_##name; } while (0)
@@ -4390,16 +4721,13 @@ diff -urN /usr/share/empty/fs/aufs/cpup.h linux/fs/aufs/cpup.h
 +      do { (flags) &= ~AuCpup_##name; } while (0)
 +
 +int au_copy_file(struct file *dst, struct file *src, loff_t len);
-+int au_sio_cpup_single(struct dentry *dentry, aufs_bindex_t bdst,
-+                     aufs_bindex_t bsrc, loff_t len, unsigned int flags,
-+                     struct dentry *dst_parent);
-+int au_sio_cpup_simple(struct dentry *dentry, aufs_bindex_t bdst, loff_t len,
-+                     unsigned int flags);
-+int au_sio_cpup_wh(struct dentry *dentry, aufs_bindex_t bdst, loff_t len,
-+                 struct file *file);
++int au_sio_cpup_simple(struct au_cp_generic *cpg);
++int au_sio_cpdown_simple(struct au_cp_generic *cpg);
++int au_sio_cpup_wh(struct au_cp_generic *cpg, struct file *file);
 +
 +int au_cp_dirs(struct dentry *dentry, aufs_bindex_t bdst,
 +             int (*cp)(struct dentry *dentry, aufs_bindex_t bdst,
++                       struct au_pin *pin,
 +                       struct dentry *h_parent, void *arg),
 +             void *arg);
 +int au_cpup_dirs(struct dentry *dentry, aufs_bindex_t bdst);
@@ -4421,10 +4749,10 @@ diff -urN /usr/share/empty/fs/aufs/cpup.h linux/fs/aufs/cpup.h
 +#endif /* __AUFS_CPUP_H__ */
 diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 --- /usr/share/empty/fs/aufs/dbgaufs.c 1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dbgaufs.c    2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,334 @@
++++ linux/fs/aufs/dbgaufs.c    2013-07-06 13:20:47.740198107 +0200
+@@ -0,0 +1,433 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -4488,7 +4816,7 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +      if (!xf)
 +              goto out;
 +
-+      err = vfs_getattr(xf->f_vfsmnt, xf->f_dentry, &st);
++      err = vfs_getattr(&xf->f_path, &st);
 +      if (!err) {
 +              if (do_fcnt)
 +                      p->n = snprintf
@@ -4521,6 +4849,101 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +
 +/* ---------------------------------------------------------------------- */
 +
++struct dbgaufs_plink_arg {
++      int n;
++      char a[];
++};
++
++static int dbgaufs_plink_release(struct inode *inode __maybe_unused,
++                               struct file *file)
++{
++      free_page((unsigned long)file->private_data);
++      return 0;
++}
++
++static int dbgaufs_plink_open(struct inode *inode, struct file *file)
++{
++      int err, i, limit;
++      unsigned long n, sum;
++      struct dbgaufs_plink_arg *p;
++      struct au_sbinfo *sbinfo;
++      struct super_block *sb;
++      struct au_sphlhead *sphl;
++
++      err = -ENOMEM;
++      p = (void *)get_zeroed_page(GFP_NOFS);
++      if (unlikely(!p))
++              goto out;
++
++      err = -EFBIG;
++      sbinfo = inode->i_private;
++      sb = sbinfo->si_sb;
++      si_noflush_read_lock(sb);
++      if (au_opt_test(au_mntflags(sb), PLINK)) {
++              limit = PAGE_SIZE - sizeof(p->n);
++
++              /* the number of buckets */
++              n = snprintf(p->a + p->n, limit, "%d\n", AuPlink_NHASH);
++              p->n += n;
++              limit -= n;
++
++              sum = 0;
++              for (i = 0, sphl = sbinfo->si_plink;
++                   i < AuPlink_NHASH;
++                   i++, sphl++) {
++                      n = au_sphl_count(sphl);
++                      sum += n;
++
++                      n = snprintf(p->a + p->n, limit, "%lu ", n);
++                      p->n += n;
++                      limit -= n;
++                      if (unlikely(limit <= 0))
++                              goto out_free;
++              }
++              p->a[p->n - 1] = '\n';
++
++              /* the sum of plinks */
++              n = snprintf(p->a + p->n, limit, "%lu\n", sum);
++              p->n += n;
++              limit -= n;
++              if (unlikely(limit <= 0))
++                      goto out_free;
++      } else {
++#define str "1\n0\n0\n"
++              p->n = sizeof(str) - 1;
++              strcpy(p->a, str);
++#undef str
++      }
++      si_read_unlock(sb);
++
++      err = 0;
++      file->private_data = p;
++      goto out; /* success */
++
++out_free:
++      free_page((unsigned long)p);
++out:
++      return err;
++}
++
++static ssize_t dbgaufs_plink_read(struct file *file, char __user *buf,
++                                size_t count, loff_t *ppos)
++{
++      struct dbgaufs_plink_arg *p;
++
++      p = file->private_data;
++      return simple_read_from_buffer(buf, count, ppos, p->a, p->n);
++}
++
++static const struct file_operations dbgaufs_plink_fop = {
++      .owner          = THIS_MODULE,
++      .open           = dbgaufs_plink_open,
++      .release        = dbgaufs_plink_release,
++      .read           = dbgaufs_plink_read
++};
++
++/* ---------------------------------------------------------------------- */
++
 +static int dbgaufs_xib_open(struct inode *inode, struct file *file)
 +{
 +      int err;
@@ -4600,10 +5023,8 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +      for (; bindex <= bend; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              xi = &br->br_xino;
-+              if (xi->xi_dbgaufs) {
-+                      debugfs_remove(xi->xi_dbgaufs);
-+                      xi->xi_dbgaufs = NULL;
-+              }
++              debugfs_remove(xi->xi_dbgaufs);
++              xi->xi_dbgaufs = NULL;
 +      }
 +}
 +
@@ -4730,6 +5151,12 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +      if (unlikely(!sbinfo->si_dbgaufs_xib))
 +              goto out_dir;
 +
++      sbinfo->si_dbgaufs_plink = debugfs_create_file
++              ("plink", dbgaufs_mode, sbinfo->si_dbgaufs, sbinfo,
++               &dbgaufs_plink_fop);
++      if (unlikely(!sbinfo->si_dbgaufs_plink))
++              goto out_dir;
++
 +      err = dbgaufs_xigen_init(sbinfo);
 +      if (!err)
 +              goto out; /* success */
@@ -4759,10 +5186,10 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +}
 diff -urN /usr/share/empty/fs/aufs/dbgaufs.h linux/fs/aufs/dbgaufs.h
 --- /usr/share/empty/fs/aufs/dbgaufs.h 1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dbgaufs.h    2012-02-13 21:54:56.966438287 +0100
++++ linux/fs/aufs/dbgaufs.h    2013-07-06 13:20:47.740198107 +0200
 @@ -0,0 +1,49 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -4812,10 +5239,10 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.h linux/fs/aufs/dbgaufs.h
 +#endif /* __DBGAUFS_H__ */
 diff -urN /usr/share/empty/fs/aufs/dcsub.c linux/fs/aufs/dcsub.c
 --- /usr/share/empty/fs/aufs/dcsub.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dcsub.c      2012-02-13 21:54:56.966438287 +0100
++++ linux/fs/aufs/dcsub.c      2013-07-30 22:42:55.839613269 +0200
 @@ -0,0 +1,243 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -4950,7 +5377,7 @@ diff -urN /usr/share/empty/fs/aufs/dcsub.c linux/fs/aufs/dcsub.c
 +      while (next != &this_parent->d_subdirs) {
 +              struct list_head *tmp = next;
 +              struct dentry *dentry = list_entry(tmp, struct dentry,
-+                                                 d_u.d_child);
++                                                 d_child);
 +
 +              next = tmp->next;
 +              spin_lock_nested(&dentry->d_lock, DENTRY_D_LOCK_NESTED);
@@ -4986,7 +5413,7 @@ diff -urN /usr/share/empty/fs/aufs/dcsub.c linux/fs/aufs/dcsub.c
 +              this_parent = tmp;
 +              spin_lock(&this_parent->d_lock);
 +              rcu_read_unlock();
-+              next = child->d_u.d_child.next;
++              next = child->d_child.next;
 +              goto resume;
 +      }
 +
@@ -5013,7 +5440,7 @@ diff -urN /usr/share/empty/fs/aufs/dcsub.c linux/fs/aufs/dcsub.c
 +              goto out;
 +
 +      /*
-+       * vfsmount_lock is unnecessary since this is a traverse in a single
++       * RCU for vfsmount is unnecessary since this is a traverse in a single
 +       * mount
 +       */
 +      while (!IS_ROOT(dentry)) {
@@ -5059,10 +5486,10 @@ diff -urN /usr/share/empty/fs/aufs/dcsub.c linux/fs/aufs/dcsub.c
 +}
 diff -urN /usr/share/empty/fs/aufs/dcsub.h linux/fs/aufs/dcsub.h
 --- /usr/share/empty/fs/aufs/dcsub.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dcsub.h      2012-02-13 21:54:56.966438287 +0100
++++ linux/fs/aufs/dcsub.h      2013-07-06 13:20:47.740198107 +0200
 @@ -0,0 +1,94 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -5157,10 +5584,10 @@ diff -urN /usr/share/empty/fs/aufs/dcsub.h linux/fs/aufs/dcsub.h
 +#endif /* __AUFS_DCSUB_H__ */
 diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 --- /usr/share/empty/fs/aufs/debug.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/debug.c      2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,489 @@
++++ linux/fs/aufs/debug.c      2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,491 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -5202,17 +5629,16 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +{
 +      unsigned long ul, n;
 +      struct hlist_head *head;
-+      struct au_vdir_wh *tpos;
-+      struct hlist_node *pos;
++      struct au_vdir_wh *pos;
 +
 +      n = whlist->nh_num;
 +      head = whlist->nh_head;
 +      for (ul = 0; ul < n; ul++) {
-+              hlist_for_each_entry(tpos, pos, head, wh_hash)
++              hlist_for_each_entry(pos, head, wh_hash)
 +                      dpri("b%d, %.*s, %d\n",
-+                           tpos->wh_bindex,
-+                           tpos->wh_str.len, tpos->wh_str.name,
-+                           tpos->wh_str.len);
++                           pos->wh_bindex,
++                           pos->wh_str.len, pos->wh_str.name,
++                           pos->wh_str.len);
 +              head++;
 +      }
 +}
@@ -5249,7 +5675,7 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +              return -1;
 +      }
 +
-+      /* the type of i_blocks depends upon CONFIG_LSF */
++      /* the type of i_blocks depends upon CONFIG_LBDAF */
 +      BUILD_BUG_ON(sizeof(inode->i_blocks) != sizeof(unsigned long)
 +                   && sizeof(inode->i_blocks) != sizeof(u64));
 +      if (wh) {
@@ -5285,7 +5711,7 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +      if (!iinfo)
 +              return;
 +      dpri("i-1: bstart %d, bend %d, gen %d\n",
-+           iinfo->ii_bstart, iinfo->ii_bend, au_iigen(inode));
++           iinfo->ii_bstart, iinfo->ii_bend, au_iigen(inode, NULL));
 +      if (iinfo->ii_bstart < 0)
 +              return;
 +      hn = 0;
@@ -5301,7 +5727,7 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +      struct dentry *d;
 +
 +      spin_lock(&inode->i_lock);
-+      list_for_each_entry(d, &inode->i_dentry, d_alias)
++      hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias)
 +              au_dpri_dentry(d);
 +      spin_unlock(&inode->i_lock);
 +}
@@ -5417,7 +5843,7 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +
 +      if (!br || IS_ERR(br))
 +              goto out;
-+      mnt = br->br_mnt;
++      mnt = au_br_mnt(br);
 +      if (!mnt || IS_ERR(mnt))
 +              goto out;
 +      sb = mnt->mnt_sb;
@@ -5458,7 +5884,7 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +
 +      a->mnt.mnt_sb = sb;
 +      a->fake.br_perm = 0;
-+      a->fake.br_mnt = &a->mnt;
++      a->fake.br_path.mnt = &a->mnt;
 +      a->fake.br_xino.xi_file = NULL;
 +      atomic_set(&a->fake.br_count, 0);
 +      smp_mb(); /* atomic_set */
@@ -5488,8 +5914,11 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +
 +void au_dbg_iattr(struct iattr *ia)
 +{
-+#define AuBit(name)   if (ia->ia_valid & ATTR_ ## name) \
-+                              dpri(#name "\n")
++#define AuBit(name)                                   \
++      do {                                            \
++              if (ia->ia_valid & ATTR_ ## name)       \
++                      dpri(#name "\n");               \
++      } while (0)
 +      AuBit(MODE);
 +      AuBit(UID);
 +      AuBit(GID);
@@ -5639,7 +6068,7 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +      AuDebugOn(destr.len < NAME_MAX);
 +
 +#ifdef CONFIG_4KSTACKS
-+      pr_warning("CONFIG_4KSTACKS is defined.\n");
++      pr_warn("CONFIG_4KSTACKS is defined.\n");
 +#endif
 +
 +#ifdef AuForceNoBrs
@@ -5650,10 +6079,10 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +}
 diff -urN /usr/share/empty/fs/aufs/debug.h linux/fs/aufs/debug.h
 --- /usr/share/empty/fs/aufs/debug.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/debug.h      2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,243 @@
++++ linux/fs/aufs/debug.h      2013-07-06 13:20:47.740198107 +0200
+@@ -0,0 +1,242 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -5679,7 +6108,6 @@ diff -urN /usr/share/empty/fs/aufs/debug.h linux/fs/aufs/debug.h
 +
 +#ifdef __KERNEL__
 +
-+#include <asm/system.h>
 +#include <linux/module.h>
 +#include <linux/kallsyms.h>
 +#include <linux/sysrq.h>
@@ -5718,7 +6146,7 @@ diff -urN /usr/share/empty/fs/aufs/debug.h linux/fs/aufs/debug.h
 +#define AuWarn1(fmt, ...) do { \
 +      static unsigned char _c; \
 +      if (!_c++) \
-+              pr_warning(fmt, ##__VA_ARGS__); \
++              pr_warn(fmt, ##__VA_ARGS__); \
 +} while (0)
 +
 +#define AuErr1(fmt, ...) do { \
@@ -5897,10 +6325,10 @@ diff -urN /usr/share/empty/fs/aufs/debug.h linux/fs/aufs/debug.h
 +#endif /* __AUFS_DEBUG_H__ */
 diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 --- /usr/share/empty/fs/aufs/dentry.c  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dentry.c     2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,1140 @@
++++ linux/fs/aufs/dentry.c     2013-07-06 13:20:47.740198107 +0200
+@@ -0,0 +1,1065 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -5924,63 +6352,6 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +#include <linux/namei.h>
 +#include "aufs.h"
 +
-+static void au_h_nd(struct nameidata *h_nd, struct nameidata *nd)
-+{
-+      if (nd) {
-+              *h_nd = *nd;
-+
-+              /*
-+               * gave up supporting LOOKUP_CREATE/OPEN for lower fs,
-+               * due to whiteout and branch permission.
-+               */
-+              h_nd->flags &= ~(/*LOOKUP_PARENT |*/ LOOKUP_OPEN | LOOKUP_CREATE
-+                               | LOOKUP_FOLLOW | LOOKUP_EXCL);
-+              /* unnecessary? */
-+              h_nd->intent.open.file = NULL;
-+      } else
-+              memset(h_nd, 0, sizeof(*h_nd));
-+}
-+
-+struct au_lkup_one_args {
-+      struct dentry **errp;
-+      struct qstr *name;
-+      struct dentry *h_parent;
-+      struct au_branch *br;
-+      struct nameidata *nd;
-+};
-+
-+struct dentry *au_lkup_one(struct qstr *name, struct dentry *h_parent,
-+                         struct au_branch *br, struct nameidata *nd)
-+{
-+      struct dentry *h_dentry;
-+      int err;
-+      struct nameidata h_nd;
-+
-+      if (au_test_fs_null_nd(h_parent->d_sb))
-+              return vfsub_lookup_one_len(name->name, h_parent, name->len);
-+
-+      au_h_nd(&h_nd, nd);
-+      h_nd.path.dentry = h_parent;
-+      h_nd.path.mnt = br->br_mnt;
-+
-+      err = vfsub_name_hash(name->name, &h_nd.last, name->len);
-+      h_dentry = ERR_PTR(err);
-+      if (!err) {
-+              path_get(&h_nd.path);
-+              h_dentry = vfsub_lookup_hash(&h_nd);
-+              path_put(&h_nd.path);
-+      }
-+
-+      AuTraceErrPtr(h_dentry);
-+      return h_dentry;
-+}
-+
-+static void au_call_lkup_one(void *args)
-+{
-+      struct au_lkup_one_args *a = args;
-+      *a->errp = au_lkup_one(a->name, a->h_parent, a->br, a->nd);
-+}
-+
 +#define AuLkup_ALLOW_NEG      1
 +#define au_ftest_lkup(flags, name)    ((flags) & AuLkup_##name)
 +#define au_fset_lkup(flags, name) \
@@ -5991,7 +6362,6 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +struct au_do_lookup_args {
 +      unsigned int            flags;
 +      mode_t                  type;
-+      struct nameidata        *nd;
 +};
 +
 +/*
@@ -6028,7 +6398,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              return NULL; /* success */
 +
 +real_lookup:
-+      h_dentry = au_lkup_one(&dentry->d_name, h_parent, br, args->nd);
++      h_dentry = vfsub_lkup_one(&dentry->d_name, h_parent);
 +      if (IS_ERR(h_dentry))
 +              goto out;
 +
@@ -6082,17 +6452,15 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 + * otherwise an error.
 + * can be called at unlinking with @type is zero.
 + */
-+int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t bstart, mode_t type,
-+                 struct nameidata *nd)
++int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t bstart, mode_t type)
 +{
 +      int npositive, err;
 +      aufs_bindex_t bindex, btail, bdiropq;
 +      unsigned char isdir;
 +      struct qstr whname;
 +      struct au_do_lookup_args args = {
-+              .flags  = 0,
-+              .type   = type,
-+              .nd     = nd
++              .flags          = 0,
++              .type           = type
 +      };
 +      const struct qstr *name = &dentry->d_name;
 +      struct dentry *parent;
@@ -6188,17 +6556,15 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      int wkq_err;
 +
 +      if (!au_test_h_perm_sio(parent->d_inode, MAY_EXEC))
-+              dentry = au_lkup_one(name, parent, br, /*nd*/NULL);
++              dentry = vfsub_lkup_one(name, parent);
 +      else {
-+              struct au_lkup_one_args args = {
-+                      .errp           = &dentry,
-+                      .name           = name,
-+                      .h_parent       = parent,
-+                      .br             = br,
-+                      .nd             = NULL
++              struct vfsub_lkup_one_args args = {
++                      .errp   = &dentry,
++                      .name   = name,
++                      .parent = parent
 +              };
 +
-+              wkq_err = au_wkq_wait(au_call_lkup_one, &args);
++              wkq_err = au_wkq_wait(vfsub_call_lkup_one, &args);
 +              if (unlikely(wkq_err))
 +                      dentry = ERR_PTR(wkq_err);
 +      }
@@ -6209,15 +6575,19 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +/*
 + * lookup @dentry on @bindex which should be negative.
 + */
-+int au_lkup_neg(struct dentry *dentry, aufs_bindex_t bindex)
++int au_lkup_neg(struct dentry *dentry, aufs_bindex_t bindex, int wh)
 +{
 +      int err;
 +      struct dentry *parent, *h_parent, *h_dentry;
++      struct au_branch *br;
 +
 +      parent = dget_parent(dentry);
 +      h_parent = au_h_dptr(parent, bindex);
-+      h_dentry = au_sio_lkup_one(&dentry->d_name, h_parent,
-+                                 au_sbr(dentry->d_sb, bindex));
++      br = au_sbr(dentry->d_sb, bindex);
++      if (wh)
++              h_dentry = au_whtmp_lkup(h_parent, br, &dentry->d_name);
++      else
++              h_dentry = au_sio_lkup_one(&dentry->d_name, h_parent, br);
 +      err = PTR_ERR(h_dentry);
 +      if (IS_ERR(h_dentry))
 +              goto out;
@@ -6247,8 +6617,8 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +struct au_iattr {
 +      unsigned long           i_ino;
 +      /* unsigned int         i_nlink; */
-+      uid_t                   i_uid;
-+      gid_t                   i_gid;
++      kuid_t                  i_uid;
++      kgid_t                  i_gid;
 +      u64                     i_version;
 +/*
 +      loff_t                  i_size;
@@ -6275,8 +6645,8 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +{
 +      return ia->i_ino != h_inode->i_ino
 +              /* || ia->i_nlink != h_inode->i_nlink */
-+              || ia->i_uid != h_inode->i_uid
-+              || ia->i_gid != h_inode->i_gid
++              || !uid_eq(ia->i_uid, h_inode->i_uid)
++              || !gid_eq(ia->i_gid, h_inode->i_gid)
 +              || ia->i_version != h_inode->i_version
 +/*
 +              || ia->i_size != h_inode->i_size
@@ -6306,7 +6676,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              goto out;
 +
 +      /* main purpose is namei.c:cached_lookup() and d_revalidate */
-+      h_d = au_lkup_one(&h_dentry->d_name, h_parent, br, /*nd*/NULL);
++      h_d = vfsub_lkup_one(&h_dentry->d_name, h_parent);
 +      err = PTR_ERR(h_d);
 +      if (IS_ERR(h_d))
 +              goto out;
@@ -6692,7 +7062,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +       * if current working dir is removed, it returns an error.
 +       * but the dentry is legal.
 +       */
-+      err = au_lkup_dentry(dentry, /*bstart*/0, /*type*/0, /*nd*/NULL);
++      err = au_lkup_dentry(dentry, /*bstart*/0, /*type*/0);
 +      AuDbgDentry(dentry);
 +      au_di_swap(tmp, dinfo);
 +      if (err == -ENOENT)
@@ -6721,42 +7091,24 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      return err;
 +}
 +
-+static noinline_for_stack
-+int au_do_h_d_reval(struct dentry *h_dentry, struct nameidata *nd,
-+                  struct dentry *dentry, aufs_bindex_t bindex)
++static int au_do_h_d_reval(struct dentry *h_dentry, unsigned int flags,
++                         struct dentry *dentry, aufs_bindex_t bindex)
 +{
 +      int err, valid;
-+      int (*reval)(struct dentry *, struct nameidata *);
 +
 +      err = 0;
 +      if (!(h_dentry->d_flags & DCACHE_OP_REVALIDATE))
 +              goto out;
-+      reval = h_dentry->d_op->d_revalidate;
 +
 +      AuDbg("b%d\n", bindex);
-+      if (au_test_fs_null_nd(h_dentry->d_sb))
-+              /* it may return tri-state */
-+              valid = reval(h_dentry, NULL);
-+      else {
-+              struct nameidata h_nd;
-+              int locked;
-+              struct dentry *parent;
-+
-+              au_h_nd(&h_nd, nd);
-+              parent = nd->path.dentry;
-+              locked = (nd && nd->path.dentry != dentry);
-+              if (locked)
-+                      di_read_lock_parent(parent, AuLock_IR);
-+              BUG_ON(bindex > au_dbend(parent));
-+              h_nd.path.dentry = au_h_dptr(parent, bindex);
-+              BUG_ON(!h_nd.path.dentry);
-+              h_nd.path.mnt = au_sbr(parent->d_sb, bindex)->br_mnt;
-+              path_get(&h_nd.path);
-+              valid = reval(h_dentry, &h_nd);
-+              path_put(&h_nd.path);
-+              if (locked)
-+                      di_read_unlock(parent, AuLock_IR);
-+      }
++      /*
++       * gave up supporting LOOKUP_CREATE/OPEN for lower fs,
++       * due to whiteout and branch permission.
++       */
++      flags &= ~(/*LOOKUP_PARENT |*/ LOOKUP_OPEN | LOOKUP_CREATE
++                 | LOOKUP_FOLLOW | LOOKUP_EXCL);
++      /* it may return tri-state */
++      valid = h_dentry->d_op->d_revalidate(h_dentry, flags);
 +
 +      if (unlikely(valid < 0))
 +              err = valid;
@@ -6770,7 +7122,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +
 +/* todo: remove this */
 +static int h_d_revalidate(struct dentry *dentry, struct inode *inode,
-+                        struct nameidata *nd, int do_udba)
++                        unsigned int flags, int do_udba)
 +{
 +      int err;
 +      umode_t mode, h_mode;
@@ -6830,7 +7182,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              }
 +              spin_unlock(&h_dentry->d_lock);
 +
-+              err = au_do_h_d_reval(h_dentry, nd, dentry, bindex);
++              err = au_do_h_d_reval(h_dentry, flags, dentry, bindex);
 +              if (unlikely(err))
 +                      /* do not goto err, to keep the errno */
 +                      break;
@@ -6939,7 +7291,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +/*
 + * if valid returns 1, otherwise 0.
 + */
-+static int aufs_d_revalidate(struct dentry *dentry, struct nameidata *nd)
++static int aufs_d_revalidate(struct dentry *dentry, unsigned int flags)
 +{
 +      int valid, err;
 +      unsigned int sigen;
@@ -6948,7 +7300,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      struct inode *inode;
 +
 +      /* todo: support rcu-walk? */
-+      if (nd && (nd->flags & LOOKUP_RCU))
++      if (flags & LOOKUP_RCU)
 +              return -ECHILD;
 +
 +      valid = 0;
@@ -7005,7 +7357,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              }
 +      }
 +
-+      err = h_d_revalidate(dentry, inode, nd, do_udba);
++      err = h_d_revalidate(dentry, inode, flags, do_udba);
 +      if (unlikely(!err && do_udba && au_dbstart(dentry) < 0)) {
 +              err = -EIO;
 +              AuDbg("both of real entry and whiteout found, %.*s, err %d\n",
@@ -7036,15 +7388,16 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +}
 +
 +const struct dentry_operations aufs_dop = {
-+      .d_revalidate   = aufs_d_revalidate,
-+      .d_release      = aufs_d_release
++      .d_revalidate           = aufs_d_revalidate,
++      .d_weak_revalidate      = aufs_d_revalidate,
++      .d_release              = aufs_d_release
 +};
 diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 --- /usr/share/empty/fs/aufs/dentry.h  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dentry.h     2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,237 @@
++++ linux/fs/aufs/dentry.h     2013-07-06 13:20:47.740198107 +0200
+@@ -0,0 +1,234 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -7091,16 +7444,13 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +/* dentry.c */
 +extern const struct dentry_operations aufs_dop;
 +struct au_branch;
-+struct dentry *au_lkup_one(struct qstr *name, struct dentry *h_parent,
-+                         struct au_branch *br, struct nameidata *nd);
 +struct dentry *au_sio_lkup_one(struct qstr *name, struct dentry *parent,
 +                             struct au_branch *br);
 +int au_h_verify(struct dentry *h_dentry, unsigned int udba, struct inode *h_dir,
 +              struct dentry *h_parent, struct au_branch *br);
 +
-+int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t bstart, mode_t type,
-+                 struct nameidata *nd);
-+int au_lkup_neg(struct dentry *dentry, aufs_bindex_t bindex);
++int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t bstart, mode_t type);
++int au_lkup_neg(struct dentry *dentry, aufs_bindex_t bindex, int wh);
 +int au_refresh_dentry(struct dentry *dentry, struct dentry *parent);
 +int au_reval_dpath(struct dentry *dentry, unsigned int sigen);
 +
@@ -7282,10 +7632,10 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +#endif /* __AUFS_DENTRY_H__ */
 diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 --- /usr/share/empty/fs/aufs/dinfo.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dinfo.c      2012-02-13 21:54:56.969771692 +0100
++++ linux/fs/aufs/dinfo.c      2013-07-30 22:42:55.839613269 +0200
 @@ -0,0 +1,543 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -7829,10 +8179,10 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +}
 diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 --- /usr/share/empty/fs/aufs/dir.c     1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dir.c        2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,634 @@
++++ linux/fs/aufs/dir.c        2013-07-30 22:42:55.839613269 +0200
+@@ -0,0 +1,632 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -7866,6 +8216,8 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      nlink += h_dir->i_nlink - 2;
 +      if (h_dir->i_nlink < 2)
 +              nlink += 2;
++      smp_mb();
++      /* 0 can happen in revaliding */
 +      set_nlink(dir, nlink);
 +}
 +
@@ -7879,6 +8231,8 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      nlink -= h_dir->i_nlink - 2;
 +      if (h_dir->i_nlink < 2)
 +              nlink -= 2;
++      smp_mb();
++      /* nlink == 0 means the branch-fs is broken */
 +      set_nlink(dir, nlink);
 +}
 +
@@ -7891,19 +8245,16 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +
 +      sz = 0;
 +      if (file) {
-+              AuDebugOn(!file->f_dentry);
-+              AuDebugOn(!file->f_dentry->d_inode);
-+              AuDebugOn(!S_ISDIR(file->f_dentry->d_inode->i_mode));
++              AuDebugOn(!file_inode(file));
++              AuDebugOn(!S_ISDIR(file_inode(file)->i_mode));
 +
 +              bend = au_fbend_dir(file);
 +              for (bindex = au_fbstart(file);
 +                   bindex <= bend && sz < KMALLOC_MAX_SIZE;
 +                   bindex++) {
 +                      h_file = au_hf_dir(file, bindex);
-+                      if (h_file
-+                          && h_file->f_dentry
-+                          && h_file->f_dentry->d_inode)
-+                              sz += i_size_read(h_file->f_dentry->d_inode);
++                      if (h_file && file_inode(h_file))
++                              sz += vfsub_f_size_read(h_file);
 +              }
 +      } else {
 +              AuDebugOn(!dentry);
@@ -8054,9 +8405,6 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      finfo = au_fi(file);
 +      fidir = finfo->fi_hdir;
 +      if (fidir) {
-+              /* remove me from sb->s_files */
-+              file_sb_list_del(file);
-+
 +              vdir_cache = fidir->fd_vdir_cache; /* lock-free */
 +              if (vdir_cache)
 +                      au_vdir_free(vdir_cache);
@@ -8144,7 +8492,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +              goto out;
 +
 +      sb = file->f_dentry->d_sb;
-+      inode = file->f_dentry->d_inode;
++      inode = file_inode(file);
 +      bend = au_fbend_dir(file);
 +      for (bindex = au_fbstart(file); !err && bindex <= bend; bindex++) {
 +              h_file = au_hf_dir(file, bindex);
@@ -8317,7 +8665,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +
 +      err = 0;
 +      if (!au_opt_test(au_mntflags(dentry->d_sb), UDBA_NONE)
-+          && !h_file->f_dentry->d_inode->i_nlink)
++          && !file_inode(h_file)->i_nlink)
 +              goto out_put;
 +
 +      do {
@@ -8467,10 +8815,10 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +};
 diff -urN /usr/share/empty/fs/aufs/dir.h linux/fs/aufs/dir.h
 --- /usr/share/empty/fs/aufs/dir.h     1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dir.h        2012-02-13 21:54:56.969771692 +0100
++++ linux/fs/aufs/dir.h        2013-07-30 22:42:55.839613269 +0200
 @@ -0,0 +1,137 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -8608,10 +8956,10 @@ diff -urN /usr/share/empty/fs/aufs/dir.h linux/fs/aufs/dir.h
 +#endif /* __AUFS_DIR_H__ */
 diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 --- /usr/share/empty/fs/aufs/dynop.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dynop.c      2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,377 @@
++++ linux/fs/aufs/dynop.c      2013-07-30 22:42:55.839613269 +0200
+@@ -0,0 +1,379 @@
 +/*
-+ * Copyright (C) 2010-2012 Junjiro R. Okajima
++ * Copyright (C) 2010-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -8806,6 +9154,8 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +      DySetAop(launder_page);
 +      DySetAop(is_partially_uptodate);
 +      DySetAop(error_remove_page);
++      DySetAop(swap_activate);
++      DySetAop(swap_deactivate);
 +
 +      DyDbgSize(cnt, *h_aop);
 +      dyaop->da_get_xip_mem = h_aop->get_xip_mem;
@@ -8849,7 +9199,7 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +
 +      key->dk_op.dy_hop = op->dy_hop;
 +      kref_init(&key->dk_kref);
-+      p->set(key, op->dy_hop, br->br_mnt->mnt_sb);
++      p->set(key, op->dy_hop, au_br_sb(br));
 +      old = dy_gadd(spl, key);
 +      if (old) {
 +              kfree(key);
@@ -8989,10 +9339,10 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +}
 diff -urN /usr/share/empty/fs/aufs/dynop.h linux/fs/aufs/dynop.h
 --- /usr/share/empty/fs/aufs/dynop.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/dynop.h      2012-02-13 21:54:56.969771692 +0100
++++ linux/fs/aufs/dynop.h      2013-07-06 13:20:47.740198107 +0200
 @@ -0,0 +1,76 @@
 +/*
-+ * Copyright (C) 2010-2012 Junjiro R. Okajima
++ * Copyright (C) 2010-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -9069,10 +9419,10 @@ diff -urN /usr/share/empty/fs/aufs/dynop.h linux/fs/aufs/dynop.h
 +#endif /* __AUFS_DYNOP_H__ */
 diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 --- /usr/share/empty/fs/aufs/export.c  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/export.c     2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,804 @@
++++ linux/fs/aufs/export.c     2013-07-30 22:42:55.839613269 +0200
+@@ -0,0 +1,826 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -9094,11 +9444,12 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 + */
 +
 +#include <linux/exportfs.h>
-+#include <linux/mnt_namespace.h>
++#include <linux/fs_struct.h>
 +#include <linux/namei.h>
 +#include <linux/nsproxy.h>
 +#include <linux/random.h>
 +#include <linux/writeback.h>
++#include "../fs/mount.h"
 +#include "aufs.h"
 +
 +union conv {
@@ -9161,6 +9512,21 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      return !!(dentry->d_flags & DCACHE_DISCONNECTED);
 +}
 +
++int au_test_nfsd(void)
++{
++      int ret;
++      struct task_struct *tsk = current;
++      char comm[sizeof(tsk->comm)];
++
++      ret = 0;
++      if (tsk->flags & PF_KTHREAD) {
++              get_task_comm(comm, tsk);
++              ret = !strcmp(comm, "nfsd");
++      }
++
++      return ret;
++}
++
 +/* ---------------------------------------------------------------------- */
 +/* inode generation external table */
 +
@@ -9219,7 +9585,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      file = sbinfo->si_xigen;
 +      BUG_ON(!file);
 +
-+      if (i_size_read(file->f_dentry->d_inode)
++      if (vfsub_f_size_read(file)
 +          < pos + sizeof(inode->i_generation)) {
 +              inode->i_generation = atomic_inc_return(&sbinfo->si_xigen_next);
 +              sz = xino_fwrite(sbinfo->si_xwrite, file, &inode->i_generation,
@@ -9293,7 +9659,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      sigen = au_sigen(sb);
 +      if (unlikely(is_bad_inode(inode)
 +                   || IS_DEADDIR(inode)
-+                   || sigen != au_iigen(inode)))
++                   || sigen != au_iigen(inode, NULL)))
 +              goto out_iput;
 +
 +      dentry = NULL;
@@ -9301,7 +9667,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +              dentry = d_find_alias(inode);
 +      else {
 +              spin_lock(&inode->i_lock);
-+              list_for_each_entry(d, &inode->i_dentry, d_alias) {
++              hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias) {
 +                      spin_lock(&d->d_lock);
 +                      if (!au_test_anon(d)
 +                          && d->d_parent->d_inode->i_ino == dir_ino) {
@@ -9352,18 +9718,16 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +static struct vfsmount *au_mnt_get(struct super_block *sb)
 +{
 +      int err;
++      struct path root;
 +      struct au_compare_mnt_args args = {
 +              .sb = sb
 +      };
-+      struct mnt_namespace *ns;
-+
-+      br_read_lock(vfsmount_lock);
-+      /* no get/put ?? */
-+      AuDebugOn(!current->nsproxy);
-+      ns = current->nsproxy->mnt_ns;
-+      AuDebugOn(!ns);
-+      err = iterate_mounts(au_compare_mnt, &args, ns->root);
-+      br_read_unlock(vfsmount_lock);
++
++      get_fs_root(current->fs, &root);
++      rcu_read_lock();
++      err = iterate_mounts(au_compare_mnt, &args, root.mnt);
++      rcu_read_unlock();
++      path_put(&root);
 +      AuDebugOn(!err);
 +      AuDebugOn(!args.mnt);
 +      return args.mnt;
@@ -9440,7 +9804,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +              goto out;
 +
 +      dentry = ERR_PTR(-ENOMEM);
-+      arg.name = __getname_gfp(GFP_NOFS);
++      arg.name = (void *)__get_free_page(GFP_NOFS);
 +      if (unlikely(!arg.name))
 +              goto out_file;
 +      arg.ino = ino;
@@ -9453,11 +9817,12 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      dentry = ERR_PTR(err);
 +      if (unlikely(err))
 +              goto out_name;
-+      dentry = ERR_PTR(-ENOENT);
++      /* instead of ENOENT */
++      dentry = ERR_PTR(-ESTALE);
 +      if (!arg.found)
 +              goto out_name;
 +
-+      /* do not call au_lkup_one() */
++      /* do not call vfsub_lkup_one() */
 +      dir = parent->d_inode;
 +      mutex_lock(&dir->i_mutex);
 +      dentry = vfsub_lookup_one_len(arg.name, parent, arg.namelen);
@@ -9472,7 +9837,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      }
 +
 +out_name:
-+      __putname(arg.name);
++      free_page((unsigned long)arg.name);
 +out_file:
 +      fput(file);
 +out:
@@ -9565,7 +9930,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      struct path path;
 +
 +      br = au_sbr(sb, nsi_lock->bindex);
-+      h_mnt = br->br_mnt;
++      h_mnt = au_br_mnt(br);
 +      h_sb = h_mnt->mnt_sb;
 +      /* todo: call lower fh_to_dentry()? fh_to_parent()? */
 +      h_parent = exportfs_decode_fh(h_mnt, (void *)(fh + Fh_tail),
@@ -9730,19 +10095,16 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +
 +/* ---------------------------------------------------------------------- */
 +
-+static int aufs_encode_fh(struct dentry *dentry, __u32 *fh, int *max_len,
-+                        int connectable)
++static int aufs_encode_fh(struct inode *inode, __u32 *fh, int *max_len,
++                        struct inode *dir)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex;
 +      struct super_block *sb, *h_sb;
-+      struct inode *inode;
-+      struct dentry *parent, *h_parent;
++      struct dentry *dentry, *parent, *h_parent;
++      struct inode *h_dir;
 +      struct au_branch *br;
 +
-+      AuDebugOn(au_test_anon(dentry));
-+
-+      parent = NULL;
 +      err = -ENOSPC;
 +      if (unlikely(*max_len <= Fh_tail)) {
 +              AuWarn1("NFSv2 client (max_len %d)?\n", *max_len);
@@ -9750,49 +10112,58 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      }
 +
 +      err = FILEID_ROOT;
-+      if (IS_ROOT(dentry)) {
-+              AuDebugOn(dentry->d_inode->i_ino != AUFS_ROOT_INO);
++      if (inode->i_ino == AUFS_ROOT_INO) {
++              AuDebugOn(inode->i_ino != AUFS_ROOT_INO);
 +              goto out;
 +      }
 +
 +      h_parent = NULL;
-+      err = aufs_read_lock(dentry, AuLock_FLUSH | AuLock_IR | AuLock_GEN);
++      sb = inode->i_sb;
++      err = si_read_lock(sb, AuLock_FLUSH);
 +      if (unlikely(err))
 +              goto out;
 +
-+      inode = dentry->d_inode;
-+      AuDebugOn(!inode);
-+      sb = dentry->d_sb;
 +#ifdef CONFIG_AUFS_DEBUG
 +      if (unlikely(!au_opt_test(au_mntflags(sb), XINO)))
 +              AuWarn1("NFS-exporting requires xino\n");
 +#endif
 +      err = -EIO;
-+      parent = dget_parent(dentry);
-+      di_read_lock_parent(parent, !AuLock_IR);
-+      bend = au_dbtaildir(parent);
-+      for (bindex = au_dbstart(parent); bindex <= bend; bindex++) {
-+              h_parent = au_h_dptr(parent, bindex);
-+              if (h_parent) {
-+                      dget(h_parent);
-+                      break;
-+              }
++      parent = NULL;
++      ii_read_lock_child(inode);
++      bindex = au_ibstart(inode);
++      if (!dir) {
++              dentry = d_find_alias(inode);
++              if (unlikely(!dentry))
++                      goto out_unlock;
++              AuDebugOn(au_test_anon(dentry));
++              parent = dget_parent(dentry);
++              dput(dentry);
++              if (unlikely(!parent))
++                      goto out_unlock;
++              dir = parent->d_inode;
 +      }
++
++      ii_read_lock_parent(dir);
++      h_dir = au_h_iptr(dir, bindex);
++      ii_read_unlock(dir);
++      if (unlikely(!h_dir))
++              goto out_parent;
++      h_parent = d_find_alias(h_dir);
 +      if (unlikely(!h_parent))
-+              goto out_unlock;
++              goto out_hparent;
 +
 +      err = -EPERM;
 +      br = au_sbr(sb, bindex);
-+      h_sb = br->br_mnt->mnt_sb;
++      h_sb = au_br_sb(br);
 +      if (unlikely(!h_sb->s_export_op)) {
 +              AuErr1("%s branch is not exportable\n", au_sbtype(h_sb));
-+              goto out_dput;
++              goto out_hparent;
 +      }
 +
 +      fh[Fh_br_id] = br->br_id;
 +      fh[Fh_sigen] = au_sigen(sb);
 +      encode_ino(fh + Fh_ino, inode->i_ino);
-+      encode_ino(fh + Fh_dir_ino, parent->d_inode->i_ino);
++      encode_ino(fh + Fh_dir_ino, dir->i_ino);
 +      fh[Fh_igen] = inode->i_generation;
 +
 +      *max_len -= Fh_tail;
@@ -9802,20 +10173,21 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      err = fh[Fh_h_type];
 +      *max_len += Fh_tail;
 +      /* todo: macros? */
-+      if (err != 255)
++      if (err != FILEID_INVALID)
 +              err = 99;
 +      else
 +              AuWarn1("%s encode_fh failed\n", au_sbtype(h_sb));
 +
-+out_dput:
++out_hparent:
 +      dput(h_parent);
-+out_unlock:
-+      di_read_unlock(parent, !AuLock_IR);
++out_parent:
 +      dput(parent);
-+      aufs_read_unlock(dentry, AuLock_IR);
++out_unlock:
++      ii_read_unlock(inode);
++      si_read_unlock(sb);
 +out:
 +      if (unlikely(err < 0))
-+              err = 255;
++              err = FILEID_INVALID;
 +      return err;
 +}
 +
@@ -9877,10 +10249,10 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +}
 diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 --- /usr/share/empty/fs/aufs/file.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/file.c       2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,673 @@
++++ linux/fs/aufs/file.c       2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,708 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -9901,6 +10273,9 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 + * handling file/dir, and address_space operation
 + */
 +
++#ifdef CONFIG_AUFS_DEBUG
++#include <linux/migrate.h>
++#endif
 +#include <linux/pagemap.h>
 +#include "aufs.h"
 +
@@ -9945,7 +10320,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      br = au_sbr(sb, bindex);
 +      h_file = ERR_PTR(-EACCES);
 +      exec_flag = flags & __FMODE_EXEC;
-+      if (exec_flag && (br->br_mnt->mnt_flags & MNT_NOEXEC))
++      if (exec_flag && (au_br_mnt(br)->mnt_flags & MNT_NOEXEC))
 +              goto out;
 +
 +      /* drop flags for writing */
@@ -9954,7 +10329,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      flags &= ~O_CREAT;
 +      atomic_inc(&br->br_count);
 +      h_path.dentry = h_dentry;
-+      h_path.mnt = br->br_mnt;
++      h_path.mnt = au_br_mnt(br);
 +      if (!au_special_file(h_inode->i_mode))
 +              h_file = vfsub_dentry_open(&h_path, flags);
 +      else {
@@ -10032,13 +10407,29 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +              au_set_h_fptr(file, bstart, NULL);
 +      }
 +      AuDebugOn(au_fi(file)->fi_hdir);
-+      AuDebugOn(au_fbstart(file) < bstart);
++      /*
++       * it can happen
++       * file exists on both of rw and ro
++       * open --> dbstart and fbstart are both 0
++       * prepend a branch as rw, "rw" become ro
++       * remove rw/file
++       * delete the top branch, "rw" becomes rw again
++       *      --> dbstart is 1, fbstart is still 0
++       * write --> fbstart is 0 but dbstart is 1
++       */
++      /* AuDebugOn(au_fbstart(file) < bstart); */
 +
 +      h_file = au_h_open(dentry, bstart, vfsub_file_flags(file) & ~O_TRUNC,
 +                         file);
 +      err = PTR_ERR(h_file);
-+      if (IS_ERR(h_file))
++      if (IS_ERR(h_file)) {
++              if (h_file_tmp) {
++                      atomic_inc(&au_sbr(dentry->d_sb, bstart)->br_count);
++                      au_set_h_fptr(file, bstart, h_file_tmp);
++                      h_file_tmp = NULL;
++              }
 +              goto out; /* todo: close all? */
++      }
 +
 +      err = 0;
 +      au_set_fbstart(file, bstart);
@@ -10080,32 +10471,39 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +}
 +
 +static int au_ready_to_write_wh(struct file *file, loff_t len,
-+                              aufs_bindex_t bcpup)
++                              aufs_bindex_t bcpup, struct au_pin *pin)
 +{
 +      int err;
 +      struct inode *inode, *h_inode;
-+      struct dentry *dentry, *h_dentry, *hi_wh;
++      struct dentry *h_dentry, *hi_wh;
++      struct au_cp_generic cpg = {
++              .dentry = file->f_dentry,
++              .bdst   = bcpup,
++              .bsrc   = -1,
++              .len    = len,
++              .pin    = pin
++      };
 +
-+      dentry = file->f_dentry;
-+      au_update_dbstart(dentry);
-+      inode = dentry->d_inode;
++      au_update_dbstart(cpg.dentry);
++      inode = cpg.dentry->d_inode;
 +      h_inode = NULL;
-+      if (au_dbstart(dentry) <= bcpup && au_dbend(dentry) >= bcpup) {
-+              h_dentry = au_h_dptr(dentry, bcpup);
++      if (au_dbstart(cpg.dentry) <= bcpup
++          && au_dbend(cpg.dentry) >= bcpup) {
++              h_dentry = au_h_dptr(cpg.dentry, bcpup);
 +              if (h_dentry)
 +                      h_inode = h_dentry->d_inode;
 +      }
 +      hi_wh = au_hi_wh(inode, bcpup);
 +      if (!hi_wh && !h_inode)
-+              err = au_sio_cpup_wh(dentry, bcpup, len, file);
++              err = au_sio_cpup_wh(&cpg, file);
 +      else
 +              /* already copied-up after unlink */
 +              err = au_reopen_wh(file, bcpup, hi_wh);
 +
 +      if (!err
 +          && inode->i_nlink > 1
-+          && au_opt_test(au_mntflags(dentry->d_sb), PLINK))
-+              au_plink_append(inode, bcpup, au_h_dptr(dentry, bcpup));
++          && au_opt_test(au_mntflags(cpg.dentry->d_sb), PLINK))
++              au_plink_append(inode, bcpup, au_h_dptr(cpg.dentry, bcpup));
 +
 +      return err;
 +}
@@ -10116,81 +10514,80 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +int au_ready_to_write(struct file *file, loff_t len, struct au_pin *pin)
 +{
 +      int err;
-+      aufs_bindex_t bstart, bcpup, dbstart;
-+      struct dentry *dentry, *parent, *h_dentry;
-+      struct inode *h_inode, *inode;
++      aufs_bindex_t dbstart;
++      struct dentry *parent, *h_dentry;
++      struct inode *inode;
 +      struct super_block *sb;
 +      struct file *h_file;
++      struct au_cp_generic cpg = {
++              .dentry = file->f_dentry,
++              .bdst   = -1,
++              .bsrc   = -1,
++              .len    = len,
++              .pin    = pin,
++              .flags  = AuCpup_DTIME
++      };
 +
-+      dentry = file->f_dentry;
-+      sb = dentry->d_sb;
-+      inode = dentry->d_inode;
++      sb = cpg.dentry->d_sb;
++      inode = cpg.dentry->d_inode;
 +      AuDebugOn(au_special_file(inode->i_mode));
-+      bstart = au_fbstart(file);
-+      err = au_test_ro(sb, bstart, inode);
++      cpg.bsrc = au_fbstart(file);
++      err = au_test_ro(sb, cpg.bsrc, inode);
 +      if (!err && (au_hf_top(file)->f_mode & FMODE_WRITE)) {
-+              err = au_pin(pin, dentry, bstart, AuOpt_UDBA_NONE, /*flags*/0);
++              err = au_pin(pin, cpg.dentry, cpg.bsrc, AuOpt_UDBA_NONE,
++                           /*flags*/0);
 +              goto out;
 +      }
 +
 +      /* need to cpup or reopen */
-+      parent = dget_parent(dentry);
++      parent = dget_parent(cpg.dentry);
 +      di_write_lock_parent(parent);
-+      err = AuWbrCopyup(au_sbi(sb), dentry);
-+      bcpup = err;
++      err = AuWbrCopyup(au_sbi(sb), cpg.dentry);
++      cpg.bdst = err;
 +      if (unlikely(err < 0))
 +              goto out_dgrade;
 +      err = 0;
 +
-+      if (!d_unhashed(dentry) && !au_h_dptr(parent, bcpup)) {
-+              err = au_cpup_dirs(dentry, bcpup);
++      if (!d_unhashed(cpg.dentry) && !au_h_dptr(parent, cpg.bdst)) {
++              err = au_cpup_dirs(cpg.dentry, cpg.bdst);
 +              if (unlikely(err))
 +                      goto out_dgrade;
 +      }
 +
-+      err = au_pin(pin, dentry, bcpup, AuOpt_UDBA_NONE,
++      err = au_pin(pin, cpg.dentry, cpg.bdst, AuOpt_UDBA_NONE,
 +                   AuPin_DI_LOCKED | AuPin_MNT_WRITE);
 +      if (unlikely(err))
 +              goto out_dgrade;
 +
 +      h_dentry = au_hf_top(file)->f_dentry;
-+      h_inode = h_dentry->d_inode;
-+      dbstart = au_dbstart(dentry);
-+      if (dbstart <= bcpup) {
-+              h_dentry = au_h_dptr(dentry, bcpup);
++      dbstart = au_dbstart(cpg.dentry);
++      if (dbstart <= cpg.bdst) {
++              h_dentry = au_h_dptr(cpg.dentry, cpg.bdst);
 +              AuDebugOn(!h_dentry);
-+              h_inode = h_dentry->d_inode;
-+              AuDebugOn(!h_inode);
-+              bstart = bcpup;
++              cpg.bsrc = cpg.bdst;
 +      }
 +
-+      if (dbstart <= bcpup            /* just reopen */
-+          || !d_unhashed(dentry)      /* copyup and reopen */
++      if (dbstart <= cpg.bdst         /* just reopen */
++          || !d_unhashed(cpg.dentry)  /* copyup and reopen */
 +              ) {
-+              mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
-+              h_file = au_h_open_pre(dentry, bstart);
-+              if (IS_ERR(h_file)) {
++              h_file = au_h_open_pre(cpg.dentry, cpg.bsrc);
++              if (IS_ERR(h_file))
 +                      err = PTR_ERR(h_file);
-+                      h_file = NULL;
-+              } else {
++              else {
 +                      di_downgrade_lock(parent, AuLock_IR);
-+                      if (dbstart > bcpup)
-+                              err = au_sio_cpup_simple(dentry, bcpup, len,
-+                                                       AuCpup_DTIME);
++                      if (dbstart > cpg.bdst)
++                              err = au_sio_cpup_simple(&cpg);
 +                      if (!err)
 +                              err = au_reopen_nondir(file);
++                      au_h_open_post(cpg.dentry, cpg.bsrc, h_file);
 +              }
-+              mutex_unlock(&h_inode->i_mutex);
-+              au_h_open_post(dentry, bstart, h_file);
 +      } else {                        /* copyup as wh and reopen */
 +              /*
 +               * since writable hfsplus branch is not supported,
 +               * h_open_pre/post() are unnecessary.
 +               */
-+              mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
-+              err = au_ready_to_write_wh(file, len, bcpup);
++              err = au_ready_to_write_wh(file, len, cpg.bdst, pin);
 +              di_downgrade_lock(parent, AuLock_IR);
-+              mutex_unlock(&h_inode->i_mutex);
 +      }
 +
 +      if (!err) {
@@ -10216,13 +10613,11 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +              int (*flush)(struct file *file, fl_owner_t id))
 +{
 +      int err;
-+      struct dentry *dentry;
 +      struct super_block *sb;
 +      struct inode *inode;
 +
-+      dentry = file->f_dentry;
-+      sb = dentry->d_sb;
-+      inode = dentry->d_inode;
++      inode = file_inode(file);
++      sb = inode->i_sb;
 +      si_noflush_read_lock(sb);
 +      fi_read_lock(file);
 +      ii_read_lock_child(inode);
@@ -10241,29 +10636,35 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +static int au_file_refresh_by_inode(struct file *file, int *need_reopen)
 +{
 +      int err;
-+      aufs_bindex_t bstart;
 +      struct au_pin pin;
 +      struct au_finfo *finfo;
-+      struct dentry *dentry, *parent, *hi_wh;
++      struct dentry *parent, *hi_wh;
 +      struct inode *inode;
 +      struct super_block *sb;
++      struct au_cp_generic cpg = {
++              .dentry = file->f_dentry,
++              .bdst   = -1,
++              .bsrc   = -1,
++              .len    = -1,
++              .pin    = &pin,
++              .flags  = AuCpup_DTIME
++      };
 +
 +      FiMustWriteLock(file);
 +
 +      err = 0;
 +      finfo = au_fi(file);
-+      dentry = file->f_dentry;
-+      sb = dentry->d_sb;
-+      inode = dentry->d_inode;
-+      bstart = au_ibstart(inode);
-+      if (bstart == finfo->fi_btop || IS_ROOT(dentry))
++      sb = cpg.dentry->d_sb;
++      inode = cpg.dentry->d_inode;
++      cpg.bdst = au_ibstart(inode);
++      if (cpg.bdst == finfo->fi_btop || IS_ROOT(cpg.dentry))
 +              goto out;
 +
-+      parent = dget_parent(dentry);
-+      if (au_test_ro(sb, bstart, inode)) {
++      parent = dget_parent(cpg.dentry);
++      if (au_test_ro(sb, cpg.bdst, inode)) {
 +              di_read_lock_parent(parent, !AuLock_IR);
-+              err = AuWbrCopyup(au_sbi(sb), dentry);
-+              bstart = err;
++              err = AuWbrCopyup(au_sbi(sb), cpg.dentry);
++              cpg.bdst = err;
 +              di_read_unlock(parent, !AuLock_IR);
 +              if (unlikely(err < 0))
 +                      goto out_parent;
@@ -10271,25 +10672,26 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      }
 +
 +      di_read_lock_parent(parent, AuLock_IR);
-+      hi_wh = au_hi_wh(inode, bstart);
++      hi_wh = au_hi_wh(inode, cpg.bdst);
 +      if (!S_ISDIR(inode->i_mode)
 +          && au_opt_test(au_mntflags(sb), PLINK)
 +          && au_plink_test(inode)
-+          && !d_unhashed(dentry)) {
-+              err = au_test_and_cpup_dirs(dentry, bstart);
++          && !d_unhashed(cpg.dentry)
++          && cpg.bdst < au_dbstart(cpg.dentry)) {
++              err = au_test_and_cpup_dirs(cpg.dentry, cpg.bdst);
 +              if (unlikely(err))
 +                      goto out_unlock;
 +
 +              /* always superio. */
-+              err = au_pin(&pin, dentry, bstart, AuOpt_UDBA_NONE,
++              err = au_pin(&pin, cpg.dentry, cpg.bdst, AuOpt_UDBA_NONE,
 +                           AuPin_DI_LOCKED | AuPin_MNT_WRITE);
-+              if (!err)
-+                      err = au_sio_cpup_simple(dentry, bstart, -1,
-+                                               AuCpup_DTIME);
-+              au_unpin(&pin);
++              if (!err) {
++                      err = au_sio_cpup_simple(&cpg);
++                      au_unpin(&pin);
++              }
 +      } else if (hi_wh) {
 +              /* already copied-up after unlink */
-+              err = au_reopen_wh(file, bstart, hi_wh);
++              err = au_reopen_wh(file, cpg.bdst, hi_wh);
 +              *need_reopen = 0;
 +      }
 +
@@ -10347,8 +10749,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +              for (finfo->fi_btop = 0; finfo->fi_btop <= bend;
 +                   finfo->fi_btop++, p++)
 +                      if (p->hf_file) {
-+                              if (p->hf_file->f_dentry
-+                                  && p->hf_file->f_dentry->d_inode)
++                              if (file_inode(p->hf_file))
 +                                      break;
 +                              else
 +                                      au_hfput(p, file);
@@ -10366,8 +10767,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      for (fidir->fd_bbot = bend; fidir->fd_bbot >= finfo->fi_btop;
 +           fidir->fd_bbot--, p--)
 +              if (p->hf_file) {
-+                      if (p->hf_file->f_dentry
-+                          && p->hf_file->f_dentry->d_inode)
++                      if (file_inode(p->hf_file))
 +                              break;
 +                      else
 +                              au_hfput(p, file);
@@ -10519,7 +10919,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +static int aufs_releasepage(struct page *page, gfp_t gfp)
 +{ AuUnsupport(); return 0; }
 +static int aufs_migratepage(struct address_space *mapping, struct page *newpage,
-+                          struct page *page)
++                          struct page *page, enum migrate_mode mode)
 +{ AuUnsupport(); return 0; }
 +static int aufs_launder_page(struct page *page)
 +{ AuUnsupport(); return 0; }
@@ -10530,6 +10930,11 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +static int aufs_error_remove_page(struct address_space *mapping,
 +                                struct page *page)
 +{ AuUnsupport(); return 0; }
++static int aufs_swap_activate(struct swap_info_struct *sis, struct file *file,
++                            sector_t *span)
++{ AuUnsupport(); return 0; }
++static void aufs_swap_deactivate(struct file *file)
++{ AuUnsupport(); }
 +#endif /* CONFIG_AUFS_DEBUG */
 +
 +const struct address_space_operations aufs_aop = {
@@ -10549,15 +10954,17 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      .migratepage            = aufs_migratepage,
 +      .launder_page           = aufs_launder_page,
 +      .is_partially_uptodate  = aufs_is_partially_uptodate,
-+      .error_remove_page      = aufs_error_remove_page
++      .error_remove_page      = aufs_error_remove_page,
++      .swap_activate          = aufs_swap_activate,
++      .swap_deactivate        = aufs_swap_deactivate
 +#endif /* CONFIG_AUFS_DEBUG */
 +};
 diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 --- /usr/share/empty/fs/aufs/file.h    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/file.h       2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,298 @@
++++ linux/fs/aufs/file.h       2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,313 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -10620,6 +11027,9 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +              atomic_t                        fi_mmapped;
 +      };
 +      struct au_fidir         *fi_hdir;       /* for dir only */
++
++      struct hlist_node       fi_hlist;
++      struct file             *fi_file;       /* very ugly */
 +} ____cacheline_aligned_in_smp;
 +
 +/* ---------------------------------------------------------------------- */
@@ -10667,9 +11077,14 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +
 +#ifdef CONFIG_AUFS_SP_IATTR
 +/* f_op_sp.c */
++struct au_finfo *au_fi_sp(struct file *file);
 +int au_special_file(umode_t mode);
 +void au_init_special_fop(struct inode *inode, umode_t mode, dev_t rdev);
 +#else
++static inline struct au_finfo *au_fi_sp(struct file *file)
++{
++      return NULL;
++}
 +AuStubInt0(au_special_file, umode_t mode)
 +static inline void au_init_special_fop(struct inode *inode, umode_t mode,
 +                                     dev_t rdev)
@@ -10696,13 +11111,20 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +#ifdef CONFIG_COMPAT
 +long aufs_compat_ioctl_dir(struct file *file, unsigned int cmd,
 +                         unsigned long arg);
++long aufs_compat_ioctl_nondir(struct file *file, unsigned int cmd,
++                            unsigned long arg);
 +#endif
 +
 +/* ---------------------------------------------------------------------- */
 +
 +static inline struct au_finfo *au_fi(struct file *file)
 +{
-+      return file->private_data;
++      struct au_finfo *finfo;
++
++      finfo = au_fi_sp(file);
++      if (!finfo)
++              finfo = file->private_data;
++      return finfo;
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -10785,7 +11207,7 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +{
 +      if (atomic_inc_return(&au_fi(f)->fi_mmapped))
 +              return;
-+      pr_warning("fi_mmapped wrapped around\n");
++      pr_warn("fi_mmapped wrapped around\n");
 +      while (!atomic_inc_return(&au_fi(f)->fi_mmapped))
 +              ;
 +}
@@ -10856,10 +11278,10 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +#endif /* __AUFS_FILE_H__ */
 diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 --- /usr/share/empty/fs/aufs/finfo.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/finfo.c      2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,156 @@
++++ linux/fs/aufs/finfo.c      2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,157 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -10987,7 +11409,7 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +
 +int au_finfo_init(struct file *file, struct au_fidir *fidir)
 +{
-+      int err, lc_idx;
++      int err;
 +      struct au_finfo *finfo;
 +      struct dentry *dentry;
 +
@@ -10999,10 +11421,11 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +
 +      err = 0;
 +      au_nfiles_inc(dentry->d_sb);
-+      lc_idx = AuLcNonDir_FIINFO;
-+      if (fidir)
-+              lc_idx = AuLcDir_FIINFO;
-+      au_rw_class(&finfo->fi_rwsem, au_lc_key + lc_idx);
++      /* verbose coding for lock class name */
++      if (!fidir)
++              au_rw_class(&finfo->fi_rwsem, au_lc_key + AuLcNonDir_FIINFO);
++      else
++              au_rw_class(&finfo->fi_rwsem, au_lc_key + AuLcDir_FIINFO);
 +      au_rw_write_lock(&finfo->fi_rwsem);
 +      finfo->fi_btop = -1;
 +      finfo->fi_hdir = fidir;
@@ -11016,10 +11439,10 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +}
 diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 --- /usr/share/empty/fs/aufs/f_op.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/f_op.c       2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,729 @@
++++ linux/fs/aufs/f_op.c       2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,721 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -11040,6 +11463,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 + * file and vm operations
 + */
 +
++#include <linux/aio.h>
 +#include <linux/fs_stack.h>
 +#include <linux/mman.h>
 +#include <linux/security.h>
@@ -11103,11 +11527,8 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +      finfo = au_fi(file);
 +      bindex = finfo->fi_btop;
-+      if (bindex >= 0) {
-+              /* remove me from sb->s_files */
-+              file_sb_list_del(file);
++      if (bindex >= 0)
 +              au_set_h_fptr(file, bindex, NULL);
-+      }
 +
 +      au_finfo_fin(file);
 +      return 0;
@@ -11166,7 +11587,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      /* todo: necessary? */
 +      /* file->f_ra = h_file->f_ra; */
 +      /* update without lock, I don't think it a problem */
-+      fsstack_copy_attr_atime(dentry->d_inode, h_file->f_dentry->d_inode);
++      fsstack_copy_attr_atime(dentry->d_inode, file_inode(h_file));
 +      fput(h_file);
 +
 +out:
@@ -11233,7 +11654,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      err = vfsub_write_u(h_file, buf, count, ppos);
 +      ii_write_lock_child(inode);
 +      au_cpup_attr_timesizes(inode);
-+      inode->i_mode = h_file->f_dentry->d_inode->i_mode;
++      inode->i_mode = file_inode(h_file)->i_mode;
 +      ii_write_unlock(inode);
 +      fput(h_file);
 +
@@ -11301,7 +11722,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      /* todo: necessary? */
 +      /* file->f_ra = h_file->f_ra; */
 +      /* update without lock, I don't think it a problem */
-+      fsstack_copy_attr_atime(dentry->d_inode, h_file->f_dentry->d_inode);
++      fsstack_copy_attr_atime(dentry->d_inode, file_inode(h_file));
 +      fput(h_file);
 +
 +out:
@@ -11346,7 +11767,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      err = au_do_aio(h_file, MAY_WRITE, kio, iov, nv, pos);
 +      ii_write_lock_child(inode);
 +      au_cpup_attr_timesizes(inode);
-+      inode->i_mode = h_file->f_dentry->d_inode->i_mode;
++      inode->i_mode = file_inode(h_file)->i_mode;
 +      ii_write_unlock(inode);
 +      fput(h_file);
 +
@@ -11389,7 +11810,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      /* todo: necessasry? */
 +      /* file->f_ra = h_file->f_ra; */
 +      /* update without lock, I don't think it a problem */
-+      fsstack_copy_attr_atime(dentry->d_inode, h_file->f_dentry->d_inode);
++      fsstack_copy_attr_atime(dentry->d_inode, file_inode(h_file));
 +      fput(h_file);
 +
 +out:
@@ -11434,7 +11855,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      err = vfsub_splice_from(pipe, h_file, ppos, len, flags);
 +      ii_write_lock_child(inode);
 +      au_cpup_attr_timesizes(inode);
-+      inode->i_mode = h_file->f_dentry->d_inode->i_mode;
++      inode->i_mode = file_inode(h_file)->i_mode;
 +      ii_write_unlock(inode);
 +      fput(h_file);
 +
@@ -11496,14 +11917,12 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +{
 +      return AuConv_VM_MAP(flags, GROWSDOWN)
 +              | AuConv_VM_MAP(flags, DENYWRITE)
-+              | AuConv_VM_MAP(flags, EXECUTABLE)
 +              | AuConv_VM_MAP(flags, LOCKED);
 +}
 +
 +static int aufs_mmap(struct file *file, struct vm_area_struct *vma)
 +{
 +      int err;
-+      unsigned long prot;
 +      aufs_bindex_t bstart;
 +      const unsigned char wlock
 +              = (file->f_mode & FMODE_WRITE) && (vma->vm_flags & VM_SHARED);
@@ -11543,9 +11962,8 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      lockdep_on();
 +
 +      au_vm_file_reset(vma, h_file);
-+      prot = au_prot_conv(vma->vm_flags);
-+      err = security_file_mmap(h_file, /*reqprot*/prot, prot,
-+                               au_flag_conv(vma->vm_flags), vma->vm_start, 0);
++      err = security_mmap_file(h_file, au_prot_conv(vma->vm_flags),
++                               au_flag_conv(vma->vm_flags));
 +      if (!err)
 +              err = h_file->f_op->mmap(h_file, vma);
 +      if (unlikely(err))
@@ -11553,8 +11971,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +      au_vm_prfile_set(vma, file);
 +      /* update without lock, I don't think it a problem */
-+      fsstack_copy_attr_atime(file->f_dentry->d_inode,
-+                              h_file->f_dentry->d_inode);
++      fsstack_copy_attr_atime(file_inode(file), file_inode(h_file));
 +      goto out_fput; /* success */
 +
 +out_reset:
@@ -11649,11 +12066,9 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      err = -ENOSYS;
 +      h_file = au_hf_top(file);
 +      if (h_file->f_op && h_file->f_op->aio_fsync) {
-+              struct dentry *h_d;
 +              struct mutex *h_mtx;
 +
-+              h_d = h_file->f_dentry;
-+              h_mtx = &h_d->d_inode->i_mutex;
++              h_mtx = &file_inode(h_file)->i_mutex;
 +              if (!is_sync_kiocb(kio)) {
 +                      get_file(h_file);
 +                      fput(file);
@@ -11730,7 +12145,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +#endif
 +      .unlocked_ioctl = aufs_ioctl_nondir,
 +#ifdef CONFIG_COMPAT
-+      .compat_ioctl   = aufs_ioctl_nondir, /* same */
++      .compat_ioctl   = aufs_compat_ioctl_nondir,
 +#endif
 +      .mmap           = aufs_mmap,
 +      .open           = aufs_open_nondir,
@@ -11749,10 +12164,10 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +};
 diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 --- /usr/share/empty/fs/aufs/f_op_sp.c 1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/f_op_sp.c    2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,298 @@
++++ linux/fs/aufs/f_op_sp.c    2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,383 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -11775,32 +12190,104 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 + * their file I/O is handled out of aufs.
 + */
 +
++#include <linux/aio.h>
 +#include "aufs.h"
 +
-+static ssize_t aufs_aio_read_sp(struct kiocb *kio, const struct iovec *iov,
-+                              unsigned long nv, loff_t pos)
++/*
++ * I don't think the size of this list grows much.
++ * so here is a very simple list implemented in order to find finfo matching a
++ * given file.
++ */
++static struct au_sphlhead au_finfo_sp = {
++      .spin   = __SPIN_LOCK_INITIALIZER(au_finfo_sp.spin),
++      .head   = HLIST_HEAD_INIT
++};
++
++struct au_finfo_sp {
++      struct hlist_node       hlist;
++      struct file             *file;
++      struct au_finfo         *finfo;
++};
++
++struct au_finfo *au_fi_sp(struct file *file)
 +{
-+      ssize_t err;
-+      aufs_bindex_t bstart;
-+      unsigned char wbr;
-+      struct file *file, *h_file;
-+      struct super_block *sb;
++      struct au_finfo *finfo;
++      struct au_finfo_sp *sp;
 +
-+      file = kio->ki_filp;
-+      sb = file->f_dentry->d_sb;
-+      si_read_lock(sb, AuLock_FLUSH);
-+      fi_read_lock(file);
-+      bstart = au_fbstart(file);
-+      h_file = au_hf_top(file);
-+      fi_read_unlock(file);
-+      wbr = !!au_br_writable(au_sbr(sb, bstart)->br_perm);
-+      si_read_unlock(sb);
++      finfo = NULL;
++      spin_lock(&au_finfo_sp.spin);
++      hlist_for_each_entry(sp, &au_finfo_sp.head, hlist) {
++              if (sp->file != file)
++                      continue;
++              finfo = sp->finfo;
++              break;
++      }
++      spin_unlock(&au_finfo_sp.spin);
 +
-+      /* do not change the file in kio */
-+      AuDebugOn(!h_file->f_op || !h_file->f_op->aio_read);
-+      err = h_file->f_op->aio_read(kio, iov, nv, pos);
-+      if (err > 0 && wbr)
-+              file_accessed(h_file);
++      return finfo;
++}
++
++static int au_fi_sp_add(struct file *file)
++{
++      int err;
++      struct au_finfo_sp *sp;
++
++      err = -ENOMEM;
++      sp = kmalloc(sizeof(*sp), GFP_NOFS);
++      if (sp) {
++              err = 0;
++              sp->file = file;
++              sp->finfo = file->private_data;
++              spin_lock(&au_finfo_sp.spin);
++              hlist_add_head(&sp->hlist, &au_finfo_sp.head);
++              spin_unlock(&au_finfo_sp.spin);
++      }
++      return err;
++}
++
++static void au_fi_sp_del(struct file *file)
++{
++      struct au_finfo_sp *sp, *do_free;
++
++      do_free = NULL;
++      spin_lock(&au_finfo_sp.spin);
++      hlist_for_each_entry(sp, &au_finfo_sp.head, hlist) {
++              if (sp->file != file)
++                      continue;
++              hlist_del(&sp->hlist);
++              do_free = sp;
++              break;
++      }
++      spin_unlock(&au_finfo_sp.spin);
++      kfree(do_free);
++}
++
++/* ---------------------------------------------------------------------- */
++
++static ssize_t aufs_aio_read_sp(struct kiocb *kio, const struct iovec *iov,
++                              unsigned long nv, loff_t pos)
++{
++      ssize_t err;
++      aufs_bindex_t bstart;
++      unsigned char wbr;
++      struct file *file, *h_file;
++      struct super_block *sb;
++
++      file = kio->ki_filp;
++      sb = file->f_dentry->d_sb;
++      si_read_lock(sb, AuLock_FLUSH);
++      fi_read_lock(file);
++      bstart = au_fbstart(file);
++      h_file = au_hf_top(file);
++      fi_read_unlock(file);
++      wbr = !!au_br_writable(au_sbr(sb, bstart)->br_perm);
++      si_read_unlock(sb);
++
++      /* do not change the file in kio */
++      AuDebugOn(!h_file->f_op || !h_file->f_op->aio_read);
++      err = h_file->f_op->aio_read(kio, iov, nv, pos);
++      if (err > 0 && wbr)
++              file_accessed(h_file);
 +
 +      return err;
 +}
@@ -11827,9 +12314,6 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 +      /* do not change the file in kio */
 +      AuDebugOn(!h_file->f_op || !h_file->f_op->aio_write);
 +      err = h_file->f_op->aio_write(kio, iov, nv, pos);
-+      if (err > 0 && wbr)
-+              file_update_time(h_file);
-+
 +      return err;
 +}
 +
@@ -11846,6 +12330,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 +      /* close this fifo in aufs */
 +      err = h_file->f_op->release(inode, file); /* ignore */
 +      aufs_release_nondir(inode, file); /* ignore */
++      au_fi_sp_del(file);
 +      return err;
 +}
 +
@@ -11930,12 +12415,19 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 +static int au_cpup_sp(struct dentry *dentry)
 +{
 +      int err;
-+      aufs_bindex_t bcpup;
 +      struct au_pin pin;
 +      struct au_wr_dir_args wr_dir_args = {
 +              .force_btgt     = -1,
 +              .flags          = 0
 +      };
++      struct au_cp_generic cpg = {
++              .dentry = dentry,
++              .bdst   = -1,
++              .bsrc   = -1,
++              .len    = -1,
++              .pin    = &pin,
++              .flags  = AuCpup_DTIME
++      };
 +
 +      AuDbg("%.*s\n", AuDLNPair(dentry));
 +
@@ -11944,15 +12436,15 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 +      err = au_wr_dir(dentry, /*src_dentry*/NULL, &wr_dir_args);
 +      if (unlikely(err < 0))
 +              goto out;
-+      bcpup = err;
++      cpg.bdst = err;
 +      err = 0;
-+      if (bcpup == au_dbstart(dentry))
++      if (cpg.bdst == au_dbstart(dentry))
 +              goto out; /* success */
 +
-+      err = au_pin(&pin, dentry, bcpup, au_opt_udba(dentry->d_sb),
++      err = au_pin(&pin, dentry, cpg.bdst, au_opt_udba(dentry->d_sb),
 +                   AuPin_MNT_WRITE);
 +      if (!err) {
-+              err = au_sio_cpup_simple(dentry, bcpup, -1, AuCpup_DTIME);
++              err = au_sio_cpup_simple(&cpg);
 +              au_unpin(&pin);
 +      }
 +
@@ -11969,6 +12461,10 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 +      struct file *h_file;
 +      struct inode *h_inode;
 +
++      err = au_fi_sp_add(file);
++      if (unlikely(err))
++              goto out;
++
 +      dentry = file->f_dentry;
 +      AuDbg("%.*s\n", AuDLNPair(dentry));
 +
@@ -11981,22 +12477,26 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 +      /* prepare h_file */
 +      err = au_do_open_nondir(file, vfsub_file_flags(file));
 +      if (unlikely(err))
-+              goto out;
++              goto out_del;
 +
 +      sb = dentry->d_sb;
 +      h_file = au_hf_top(file);
-+      h_inode = h_file->f_dentry->d_inode;
++      h_inode = file_inode(h_file);
 +      di_read_unlock(dentry, AuLock_IR);
 +      fi_write_unlock(file);
 +      si_read_unlock(sb);
 +      /* open this fifo in aufs */
-+      err = h_inode->i_fop->open(file->f_dentry->d_inode, file);
++      err = h_inode->i_fop->open(file_inode(file), file);
 +      si_noflush_read_lock(sb);
 +      fi_write_lock(file);
 +      di_read_lock_child(dentry, AuLock_IR);
-+      if (!err)
++      if (!err) {
 +              au_init_fop_sp(file);
++              goto out; /* success */
++      }
 +
++out_del:
++      au_fi_sp_del(file);
 +out:
 +      return err;
 +}
@@ -12051,10 +12551,10 @@ diff -urN /usr/share/empty/fs/aufs/f_op_sp.c linux/fs/aufs/f_op_sp.c
 +}
 diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 --- /usr/share/empty/fs/aufs/fstype.h  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/fstype.h     2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,496 @@
++++ linux/fs/aufs/fstype.h     2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,470 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -12165,15 +12665,6 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +#endif
 +}
 +
-+static inline int au_test_smbfs(struct super_block *sb __maybe_unused)
-+{
-+#if defined(CONFIG_SMB_FS) || defined(CONFIG_SMB_FS_MODULE)
-+      return sb->s_magic == SMB_SUPER_MAGIC;
-+#else
-+      return 0;
-+#endif
-+}
-+
 +static inline int au_test_ocfs2(struct super_block *sb __maybe_unused)
 +{
 +#if defined(CONFIG_OCFS2_FS) || defined(CONFIG_OCFS2_FS_MODULE)
@@ -12212,7 +12703,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_ext4(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_EXT4DEV_FS) || defined(CONFIG_EXT4DEV_FS_MODULE)
++#if defined(CONFIG_EXT4_FS) || defined(CONFIG_EXT4_FS_MODULE)
 +      return sb->s_magic == EXT4_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -12394,16 +12885,6 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +              || au_test_aufs(sb); /* will be supported in next version */
 +}
 +
-+/*
-+ * If the filesystem supports NFS-export, then it has to support NULL as
-+ * a nameidata parameter for ->create(), ->lookup() and ->d_revalidate().
-+ * We can apply this principle when we handle a lower filesystem.
-+ */
-+static inline int au_test_fs_null_nd(struct super_block *sb)
-+{
-+      return !!sb->s_export_op;
-+}
-+
 +static inline int au_test_fs_remote(struct super_block *sb)
 +{
 +      return !au_test_tmpfs(sb)
@@ -12430,7 +12911,6 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +{
 +      return au_test_nfs(sb)
 +              || au_test_fuse(sb)
-+              /* || au_test_smbfs(sb) */      /* untested */
 +              /* || au_test_ocfs2(sb) */      /* untested */
 +              /* || au_test_btrfs(sb) */      /* untested */
 +              /* || au_test_coda(sb) */       /* untested */
@@ -12476,7 +12956,6 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +              || au_test_ramfs(sb)
 +#endif
 +              || au_test_ubifs(sb)
-+              || au_test_btrfs(sb)
 +              || au_test_hfsplus(sb);
 +}
 +
@@ -12519,11 +12998,6 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +{
 +      return au_test_fs_remote(sb)
 +              || au_test_fs_bad_iattr_size(sb)
-+#ifdef CONFIG_AUFS_BR_RAMFS
-+              || !(au_test_ramfs(sb) || au_test_fs_null_nd(sb))
-+#else
-+              || !au_test_fs_null_nd(sb) /* to keep xino code simple */
-+#endif
 +              /* don't want unnecessary work for xino */
 +              || au_test_aufs(sb)
 +              || au_test_ecryptfs(sb)
@@ -12551,10 +13025,10 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +#endif /* __AUFS_FSTYPE_H__ */
 diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 --- /usr/share/empty/fs/aufs/hfsnotify.c       1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/hfsnotify.c  2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,247 @@
++++ linux/fs/aufs/hfsnotify.c  2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,296 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -12581,19 +13055,22 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +static const __u32 AuHfsnMask = (FS_MOVED_TO | FS_MOVED_FROM | FS_DELETE
 +                               | FS_CREATE | FS_EVENT_ON_CHILD);
 +static DECLARE_WAIT_QUEUE_HEAD(au_hfsn_wq);
++static __cacheline_aligned_in_smp atomic64_t au_hfsn_ifree = ATOMIC64_INIT(0);
 +
 +static void au_hfsn_free_mark(struct fsnotify_mark *mark)
 +{
 +      struct au_hnotify *hn = container_of(mark, struct au_hnotify,
 +                                           hn_mark);
 +      AuDbg("here\n");
-+      hn->hn_mark_dead = 1;
-+      smp_mb();
-+      wake_up_all(&au_hfsn_wq);
++      au_cache_free_hnotify(hn);
++      smp_mb__before_atomic_dec();
++      if (atomic64_dec_and_test(&au_hfsn_ifree))
++              wake_up(&au_hfsn_wq);
 +}
 +
 +static int au_hfsn_alloc(struct au_hinode *hinode)
 +{
++      int err;
 +      struct au_hnotify *hn;
 +      struct super_block *sb;
 +      struct au_branch *br;
@@ -12604,7 +13081,8 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +      sb = hn->hn_aufs_inode->i_sb;
 +      bindex = au_br_index(sb, hinode->hi_id);
 +      br = au_sbr(sb, bindex);
-+      hn->hn_mark_dead = 0;
++      AuDebugOn(!br->br_hfsn);
++
 +      mark = &hn->hn_mark;
 +      fsnotify_init_mark(mark, au_hfsn_free_mark);
 +      mark->mask = AuHfsnMask;
@@ -12612,22 +13090,33 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +       * by udba rename or rmdir, aufs assign a new inode to the known
 +       * h_inode, so specify 1 to allow dups.
 +       */
-+      return fsnotify_add_mark(mark, br->br_hfsn_group, hinode->hi_inode,
++      err = fsnotify_add_mark(mark, br->br_hfsn->hfsn_group, hinode->hi_inode,
 +                               /*mnt*/NULL, /*allow_dups*/1);
++      /* even if err */
++      fsnotify_put_mark(mark);
++
++      return err;
 +}
 +
-+static void au_hfsn_free(struct au_hinode *hinode)
++static int au_hfsn_free(struct au_hinode *hinode, struct au_hnotify *hn)
 +{
-+      struct au_hnotify *hn;
 +      struct fsnotify_mark *mark;
++      unsigned long long ull;
++      struct fsnotify_group *group;
++
++      ull = atomic64_inc_return(&au_hfsn_ifree);
++      BUG_ON(!ull);
 +
-+      hn = hinode->hi_notify;
 +      mark = &hn->hn_mark;
-+      fsnotify_destroy_mark(mark);
-+      fsnotify_put_mark(mark);
++      spin_lock(&mark->lock);
++      group = mark->group;
++      fsnotify_get_group(group);
++      spin_unlock(&mark->lock);
++      fsnotify_destroy_mark(mark, group);
++      fsnotify_put_group(group);
 +
-+      /* TODO: bad approach */
-+      wait_event(au_hfsn_wq, hn->hn_mark_dead);
++      /* free hn by myself */
++      return 0;
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -12656,8 +13145,11 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +static char *au_hfsn_name(u32 mask)
 +{
 +#ifdef CONFIG_AUFS_DEBUG
-+#define test_ret(flag)        if (mask & flag) \
-+                              return #flag;
++#define test_ret(flag)                                \
++      do {                                    \
++              if (mask & flag)                \
++                      return #flag;           \
++      } while (0)
 +      test_ret(FS_ACCESS);
 +      test_ret(FS_MODIFY);
 +      test_ret(FS_ATTRIB);
@@ -12686,6 +13178,14 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +
 +/* ---------------------------------------------------------------------- */
 +
++static void au_hfsn_free_group(struct fsnotify_group *group)
++{
++      struct au_br_hfsnotify *hfsn = group->private;
++
++      AuDbg("here\n");
++      kfree(hfsn);
++}
++
 +static int au_hfsn_handle_event(struct fsnotify_group *group,
 +                              struct fsnotify_mark *inode_mark,
 +                              struct fsnotify_mark *vfsmount_mark,
@@ -12695,10 +13195,7 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +      struct au_hnotify *hnotify;
 +      struct inode *h_dir, *h_inode;
 +      __u32 mask;
-+      struct qstr h_child_qstr = {
-+              .name   = event->file_name,
-+              .len    = event->name_len
-+      };
++      struct qstr h_child_qstr = QSTR_INIT(event->file_name, event->name_len);
 +
 +      AuDebugOn(event->data_type != FSNOTIFY_EVENT_INODE);
 +
@@ -12746,66 +13243,92 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +
 +static struct fsnotify_ops au_hfsn_ops = {
 +      .should_send_event      = au_hfsn_should_send_event,
-+      .handle_event           = au_hfsn_handle_event
++      .handle_event           = au_hfsn_handle_event,
++      .free_group_priv        = au_hfsn_free_group
 +};
 +
 +/* ---------------------------------------------------------------------- */
 +
 +static void au_hfsn_fin_br(struct au_branch *br)
 +{
-+      if (br->br_hfsn_group)
-+              fsnotify_put_group(br->br_hfsn_group);
-+}
++      struct au_br_hfsnotify *hfsn;
 +
-+static int au_hfsn_init_br(struct au_branch *br, int perm)
-+{
-+      br->br_hfsn_group = NULL;
-+      br->br_hfsn_ops = au_hfsn_ops;
-+      return 0;
++      hfsn = br->br_hfsn;
++      if (hfsn)
++              fsnotify_put_group(hfsn->hfsn_group);
 +}
 +
-+static int au_hfsn_reset_br(unsigned int udba, struct au_branch *br, int perm)
++static int au_hfsn_init_br(struct au_branch *br, int perm)
 +{
 +      int err;
++      struct fsnotify_group *group;
++      struct au_br_hfsnotify *hfsn;
 +
 +      err = 0;
-+      if (udba != AuOpt_UDBA_HNOTIFY
-+          || !au_br_hnotifyable(perm)) {
-+              au_hfsn_fin_br(br);
-+              br->br_hfsn_group = NULL;
++      br->br_hfsn = NULL;
++      if (!au_br_hnotifyable(perm))
 +              goto out;
-+      }
 +
-+      if (br->br_hfsn_group)
++      err = -ENOMEM;
++      hfsn = kmalloc(sizeof(*hfsn), GFP_NOFS);
++      if (unlikely(!hfsn))
 +              goto out;
 +
-+      br->br_hfsn_group = fsnotify_alloc_group(&br->br_hfsn_ops);
-+      if (IS_ERR(br->br_hfsn_group)) {
-+              err = PTR_ERR(br->br_hfsn_group);
++      err = 0;
++      group = fsnotify_alloc_group(&au_hfsn_ops);
++      if (IS_ERR(group)) {
++              err = PTR_ERR(group);
 +              pr_err("fsnotify_alloc_group() failed, %d\n", err);
-+              br->br_hfsn_group = NULL;
++              goto out_hfsn;
 +      }
 +
++      group->private = hfsn;
++      hfsn->hfsn_group = group;
++      br->br_hfsn = hfsn;
++      goto out; /* success */
++
++out_hfsn:
++      kfree(hfsn);
 +out:
-+      AuTraceErr(err);
 +      return err;
 +}
 +
++static int au_hfsn_reset_br(unsigned int udba, struct au_branch *br, int perm)
++{
++      int err;
++
++      err = 0;
++      if (!br->br_hfsn)
++              err = au_hfsn_init_br(br, perm);
++
++      return err;
++}
++
++/* ---------------------------------------------------------------------- */
++
++static void au_hfsn_fin(void)
++{
++      AuDbg("au_hfsn_ifree %lld\n", (long long)atomic64_read(&au_hfsn_ifree));
++      wait_event(au_hfsn_wq, !atomic64_read(&au_hfsn_ifree));
++}
++
 +const struct au_hnotify_op au_hnotify_op = {
 +      .ctl            = au_hfsn_ctl,
 +      .alloc          = au_hfsn_alloc,
 +      .free           = au_hfsn_free,
 +
++      .fin            = au_hfsn_fin,
++
 +      .reset_br       = au_hfsn_reset_br,
 +      .fin_br         = au_hfsn_fin_br,
 +      .init_br        = au_hfsn_init_br
 +};
 diff -urN /usr/share/empty/fs/aufs/hfsplus.c linux/fs/aufs/hfsplus.c
 --- /usr/share/empty/fs/aufs/hfsplus.c 1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/hfsplus.c    2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,57 @@
++++ linux/fs/aufs/hfsplus.c    2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,56 @@
 +/*
-+ * Copyright (C) 2010-2012 Junjiro R. Okajima
++ * Copyright (C) 2010-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -12842,7 +13365,6 @@ diff -urN /usr/share/empty/fs/aufs/hfsplus.c linux/fs/aufs/hfsplus.c
 +      h_dentry = au_h_dptr(dentry, bindex);
 +      AuDebugOn(!h_dentry);
 +      AuDebugOn(!h_dentry->d_inode);
-+      IMustLock(h_dentry->d_inode);
 +
 +      h_file = NULL;
 +      if (au_test_hfsplus(h_dentry->d_sb)
@@ -12863,10 +13385,10 @@ diff -urN /usr/share/empty/fs/aufs/hfsplus.c linux/fs/aufs/hfsplus.c
 +}
 diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 --- /usr/share/empty/fs/aufs/hnotify.c 1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/hnotify.c    2012-02-13 21:54:56.969771692 +0100
++++ linux/fs/aufs/hnotify.c    2013-07-30 22:42:55.842946719 +0200
 @@ -0,0 +1,712 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -12925,9 +13447,9 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +
 +      hn = hinode->hi_notify;
 +      if (hn) {
-+              au_hnotify_op.free(hinode);
-+              au_cache_free_hnotify(hn);
 +              hinode->hi_notify = NULL;
++              if (au_hnotify_op.free(hinode, hn))
++                      au_cache_free_hnotify(hn);
 +      }
 +}
 +
@@ -12975,7 +13497,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +
 +      err = 0;
 +      if (unlikely(inode->i_ino == AUFS_ROOT_INO)) {
-+              pr_warning("branch root dir was changed\n");
++              pr_warn("branch root dir was changed\n");
 +              goto out;
 +      }
 +
@@ -13070,7 +13592,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +
 +      err = 1;
 +      if (unlikely(inode->i_ino == AUFS_ROOT_INO)) {
-+              pr_warning("branch root dir was changed\n");
++              pr_warn("branch root dir was changed\n");
 +              err = 0;
 +              goto out;
 +      }
@@ -13079,7 +13601,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +              AuDebugOn(!name);
 +              au_iigen_dec(inode);
 +              spin_lock(&inode->i_lock);
-+              list_for_each_entry(d, &inode->i_dentry, d_alias) {
++              hlist_for_each_entry(d, &inode->i_dentry, d_u.d_alias) {
 +                      spin_lock(&d->d_lock);
 +                      dname = &d->d_name;
 +                      if (dname->len != nlen
@@ -13126,7 +13648,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +      if (IS_ROOT(dentry)
 +          /* || (inode && inode->i_ino == AUFS_ROOT_INO) */
 +              ) {
-+              pr_warning("branch root dir was changed\n");
++              pr_warn("branch root dir was changed\n");
 +              return 0;
 +      }
 +
@@ -13225,8 +13747,8 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +      if (au_ftest_hnjob(a->flags, MNTPNT)
 +          && a->dentry
 +          && d_mountpoint(a->dentry))
-+              pr_warning("mount-point %.*s is removed or renamed\n",
-+                         AuDLNPair(a->dentry));
++              pr_warn("mount-point %.*s is removed or renamed\n",
++                      AuDLNPair(a->dentry));
 +
 +      return 0;
 +}
@@ -13245,7 +13767,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +
 +      dentry = NULL;
 +      spin_lock(&parent->d_lock);
-+      list_for_each_entry(d, &parent->d_subdirs, d_u.d_child) {
++      list_for_each_entry(d, &parent->d_subdirs, d_child) {
 +              /* AuDbg("%.*s\n", AuDLNPair(d)); */
 +              spin_lock_nested(&d->d_lock, DENTRY_D_LOCK_NESTED);
 +              dname = &d->d_name;
@@ -13288,7 +13810,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +              goto out;
 +
 +      if (unlikely(inode->i_ino == AUFS_ROOT_INO)) {
-+              pr_warning("wrong root branch\n");
++              pr_warn("wrong root branch\n");
 +              iput(inode);
 +              inode = NULL;
 +              goto out;
@@ -13579,10 +14101,10 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +}
 diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 --- /usr/share/empty/fs/aufs/iinfo.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/iinfo.c      2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,264 @@
++++ linux/fs/aufs/iinfo.c      2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,276 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -13693,10 +14215,22 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +      hinode->hi_whdentry = h_wh;
 +}
 +
-+void au_update_iigen(struct inode *inode)
++void au_update_iigen(struct inode *inode, int half)
 +{
-+      atomic_set(&au_ii(inode)->ii_generation, au_sigen(inode->i_sb));
-+      /* smp_mb(); */ /* atomic_set */
++      struct au_iinfo *iinfo;
++      struct au_iigen *iigen;
++      unsigned int sigen;
++
++      sigen = au_sigen(inode->i_sb);
++      iinfo = au_ii(inode);
++      iigen = &iinfo->ii_generation;
++      spin_lock(&iinfo->ii_genspin);
++      iigen->ig_generation = sigen;
++      if (half)
++              au_ig_fset(iigen->ig_flags, HALF_REFRESHED);
++      else
++              au_ig_fclr(iigen->ig_flags, HALF_REFRESHED);
++      spin_unlock(&iinfo->ii_genspin);
 +}
 +
 +/* it may be called at remount time, too */
@@ -13747,6 +14281,7 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +      struct au_iinfo *iinfo = &c->iinfo;
 +      static struct lock_class_key aufs_ii;
 +
++      spin_lock_init(&iinfo->ii_genspin);
 +      au_rw_init(&iinfo->ii_rwsem);
 +      au_rw_class(&iinfo->ii_rwsem, &aufs_ii);
 +      inode_init_once(&c->vfs_inode);
@@ -13769,8 +14304,7 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +              for (i = 0; i < nbr; i++)
 +                      iinfo->ii_hinode[i].hi_id = -1;
 +
-+              atomic_set(&iinfo->ii_generation, au_sigen(sb));
-+              /* smp_mb(); */ /* atomic_set */
++              iinfo->ii_generation.ig_generation = au_sigen(sb);
 +              iinfo->ii_bstart = -1;
 +              iinfo->ii_bend = -1;
 +              iinfo->ii_vdir = NULL;
@@ -13847,10 +14381,10 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +}
 diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 --- /usr/share/empty/fs/aufs/inode.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/inode.c      2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,471 @@
++++ linux/fs/aufs/inode.c      2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,492 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -13885,7 +14419,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +static void au_refresh_hinode_attr(struct inode *inode, int do_version)
 +{
 +      au_cpup_attr_all(inode, /*force*/0);
-+      au_update_iigen(inode);
++      au_update_iigen(inode, /*half*/1);
 +      if (do_version)
 +              inode->i_version++;
 +}
@@ -14104,6 +14638,8 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +static int reval_inode(struct inode *inode, struct dentry *dentry)
 +{
 +      int err;
++      unsigned int gen;
++      struct au_iigen iigen;
 +      aufs_bindex_t bindex, bend;
 +      struct inode *h_inode, *h_dinode;
 +
@@ -14122,12 +14658,20 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +      bend = au_ibend(inode);
 +      for (bindex = au_ibstart(inode); bindex <= bend; bindex++) {
 +              h_inode = au_h_iptr(inode, bindex);
-+              if (h_inode && h_inode == h_dinode) {
-+                      err = 0;
-+                      if (au_iigen_test(inode, au_digen(dentry)))
-+                              err = au_refresh_hinode(inode, dentry);
++              if (!h_inode || h_inode != h_dinode)
++                      continue;
++
++              err = 0;
++              gen = au_iigen(inode, &iigen);
++              if (gen == au_digen(dentry)
++                  && !au_ig_ftest(iigen.ig_flags, HALF_REFRESHED))
 +                      break;
-+              }
++
++              /* fully refresh inode using dentry */
++              err = au_refresh_hinode(inode, dentry);
++              if (!err)
++                      au_update_iigen(inode, /*half*/0);
++              break;
 +      }
 +
 +      if (unlikely(err))
@@ -14218,6 +14762,17 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +
 +      AuDbg("%lx, new %d\n", inode->i_state, !!(inode->i_state & I_NEW));
 +      if (inode->i_state & I_NEW) {
++              /* verbose coding for lock class name */
++              if (unlikely(S_ISLNK(h_inode->i_mode)))
++                      au_rw_class(&au_ii(inode)->ii_rwsem,
++                                  au_lc_key + AuLcSymlink_IIINFO);
++              else if (unlikely(S_ISDIR(h_inode->i_mode)))
++                      au_rw_class(&au_ii(inode)->ii_rwsem,
++                                  au_lc_key + AuLcDir_IIINFO);
++              else /* likely */
++                      au_rw_class(&au_ii(inode)->ii_rwsem,
++                                  au_lc_key + AuLcNonDir_IIINFO);
++
 +              ii_write_lock_new_child(inode);
 +              err = set_inode(inode, dentry);
 +              if (!err) {
@@ -14307,7 +14862,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +
 +int au_test_h_perm(struct inode *h_inode, int mask)
 +{
-+      if (!current_fsuid())
++      if (uid_eq(current_fsuid(), GLOBAL_ROOT_UID))
 +              return 0;
 +      return inode_permission(h_inode, mask);
 +}
@@ -14322,10 +14877,10 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +}
 diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 --- /usr/share/empty/fs/aufs/inode.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/inode.h      2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,554 @@
++++ linux/fs/aufs/inode.h      2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,600 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -14361,7 +14916,6 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +#ifdef CONFIG_AUFS_HFSNOTIFY
 +      /* never use fsnotify_add_vfsmount_mark() */
 +      struct fsnotify_mark            hn_mark;
-+      int                             hn_mark_dead;
 +#endif
 +      struct inode                    *hn_aufs_inode; /* no get/put */
 +#endif
@@ -14378,9 +14932,22 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +      struct dentry           *hi_whdentry;
 +};
 +
++/* ig_flags */
++#define AuIG_HALF_REFRESHED           1
++#define au_ig_ftest(flags, name)      ((flags) & AuIG_##name)
++#define au_ig_fset(flags, name) \
++      do { (flags) |= AuIG_##name; } while (0)
++#define au_ig_fclr(flags, name) \
++      do { (flags) &= ~AuIG_##name; } while (0)
++
++struct au_iigen {
++      __u32           ig_generation, ig_flags;
++};
++
 +struct au_vdir;
 +struct au_iinfo {
-+      atomic_t                ii_generation;
++      spinlock_t              ii_genspin;
++      struct au_iigen         ii_generation;
 +      struct super_block      *ii_hsb1;       /* no get/put */
 +
 +      struct au_rwsem         ii_rwsem;
@@ -14415,8 +14982,19 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +      struct dentry *parent;
 +      struct au_hinode *hdir;
 +      struct vfsmount *h_mnt;
++
++      /* temporary unlock/relock for copyup */
++      struct dentry *h_dentry, *h_parent;
++      struct au_branch *br;
++      struct task_struct *task;
 +};
 +
++void au_pin_hdir_unlock(struct au_pin *p);
++int au_pin_hdir_relock(struct au_pin *p);
++void au_pin_hdir_set_owner(struct au_pin *p, struct task_struct *task);
++void au_pin_hdir_acquire_nest(struct au_pin *p);
++void au_pin_hdir_release(struct au_pin *p);
++
 +/* ---------------------------------------------------------------------- */
 +
 +static inline struct au_iinfo *au_ii(struct inode *inode)
@@ -14458,7 +15036,8 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +
 +/* au_wr_dir flags */
 +#define AuWrDir_ADD_ENTRY     1
-+#define AuWrDir_ISDIR         (1 << 1)
++#define AuWrDir_TMP_WHENTRY   (1 << 1)
++#define AuWrDir_ISDIR         (1 << 2)
 +#define au_ftest_wrdir(flags, name)   ((flags) & AuWrDir_##name)
 +#define au_fset_wrdir(flags, name) \
 +      do { (flags) |= AuWrDir_##name; } while (0)
@@ -14484,13 +15063,14 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +/* i_op_add.c */
 +int au_may_add(struct dentry *dentry, aufs_bindex_t bindex,
 +             struct dentry *h_parent, int isdir);
-+int aufs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev);
++int aufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
++             dev_t dev);
 +int aufs_symlink(struct inode *dir, struct dentry *dentry, const char *symname);
-+int aufs_create(struct inode *dir, struct dentry *dentry, int mode,
-+              struct nameidata *nd);
++int aufs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
++              bool want_excl);
 +int aufs_link(struct dentry *src_dentry, struct inode *dir,
 +            struct dentry *dentry);
-+int aufs_mkdir(struct inode *dir, struct dentry *dentry, int mode);
++int aufs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
 +
 +/* i_op_del.c */
 +int au_wr_dir_need_wh(struct dentry *dentry, int isdir, aufs_bindex_t *bcpup);
@@ -14528,7 +15108,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +void au_set_h_iptr(struct inode *inode, aufs_bindex_t bindex,
 +                 struct inode *h_inode, unsigned int flags);
 +
-+void au_update_iigen(struct inode *inode);
++void au_update_iigen(struct inode *inode, int half);
 +void au_update_ibrange(struct inode *inode, int do_put_zero);
 +
 +void au_icntnr_init_once(void *_c);
@@ -14636,9 +15216,19 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +#endif
 +}
 +
-+static inline unsigned int au_iigen(struct inode *inode)
++static inline unsigned int au_iigen(struct inode *inode, struct au_iigen *iigen)
 +{
-+      return atomic_read(&au_ii(inode)->ii_generation);
++      unsigned int gen;
++      struct au_iinfo *iinfo;
++
++      iinfo = au_ii(inode);
++      spin_lock(&iinfo->ii_genspin);
++      if (iigen)
++              *iigen = iinfo->ii_generation;
++      gen = iinfo->ii_generation.ig_generation;
++      spin_unlock(&iinfo->ii_genspin);
++
++      return gen;
 +}
 +
 +/* tiny test for inode number */
@@ -14655,7 +15245,12 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +
 +static inline void au_iigen_dec(struct inode *inode)
 +{
-+      atomic_dec(&au_ii(inode)->ii_generation);
++      struct au_iinfo *iinfo;
++
++      iinfo = au_ii(inode);
++      spin_lock(&iinfo->ii_genspin);
++      iinfo->ii_generation.ig_generation--;
++      spin_unlock(&iinfo->ii_genspin);
 +}
 +
 +static inline int au_iigen_test(struct inode *inode, unsigned int sigen)
@@ -14663,7 +15258,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +      int err;
 +
 +      err = 0;
-+      if (unlikely(inode && au_iigen(inode) != sigen))
++      if (unlikely(inode && au_iigen(inode, NULL) != sigen))
 +              err = -EIO;
 +
 +      return err;
@@ -14781,7 +15376,13 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +struct au_hnotify_op {
 +      void (*ctl)(struct au_hinode *hinode, int do_set);
 +      int (*alloc)(struct au_hinode *hinode);
-+      void (*free)(struct au_hinode *hinode);
++
++      /*
++       * if it returns true, the the caller should free hinode->hi_notify,
++       * otherwise ->free() frees it.
++       */
++      int (*free)(struct au_hinode *hinode,
++                  struct au_hnotify *hn) __must_check;
 +
 +      void (*fin)(void);
 +      int (*init)(void);
@@ -14880,10 +15481,10 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +#endif /* __AUFS_INODE_H__ */
 diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 --- /usr/share/empty/fs/aufs/ioctl.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/ioctl.c      2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,196 @@
++++ linux/fs/aufs/ioctl.c      2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,202 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -14904,8 +15505,11 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 + * ioctl
 + * plink-management and readdir in userspace.
 + * assist the pathconf(3) wrapper library.
++ * move-down
 + */
 +
++#include <linux/compat.h>
++#include <linux/file.h>
 +#include "aufs.h"
 +
 +static int au_wbr_fd(struct path *path, struct aufs_wbr_fd __user *arg)
@@ -15032,6 +15636,11 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 +      long err;
 +
 +      switch (cmd) {
++      case AUFS_CTL_MVDOWN:
++              WARN_ONCE(1, "move-down is still testing...\n");
++              err = au_mvdown(file->f_dentry, (void __user *)arg);
++              break;
++
 +      case AUFS_CTL_WBR_FD:
 +              err = au_wbr_fd(&file->f_path, (void __user *)arg);
 +              break;
@@ -15070,20 +15679,18 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 +      return err;
 +}
 +
-+#if 0 /* unused yet */
 +long aufs_compat_ioctl_nondir(struct file *file, unsigned int cmd,
 +                            unsigned long arg)
 +{
 +      return aufs_ioctl_nondir(file, cmd, (unsigned long)compat_ptr(arg));
 +}
 +#endif
-+#endif
 diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 --- /usr/share/empty/fs/aufs/i_op_add.c        1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/i_op_add.c   2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,711 @@
++++ linux/fs/aufs/i_op_add.c   2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,739 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -15274,7 +15881,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      if (dt) {
 +              struct path tmp = {
 +                      .dentry = h_parent,
-+                      .mnt    = br->br_mnt
++                      .mnt    = au_br_mnt(br)
 +              };
 +              au_dtime_store(dt, au_pinned_parent(pin), &tmp);
 +      }
@@ -15299,14 +15906,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      int type;
 +      union {
 +              struct {
-+                      int mode;
-+                      struct nameidata *nd;
++                      umode_t mode;
++                      bool want_excl;
 +              } c;
 +              struct {
 +                      const char *symname;
 +              } s;
 +              struct {
-+                      int mode;
++                      umode_t mode;
 +                      dev_t dev;
 +              } m;
 +      } u;
@@ -15318,46 +15925,55 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      int err;
 +      aufs_bindex_t bstart;
 +      unsigned char created;
-+      struct au_dtime dt;
-+      struct au_pin pin;
-+      struct path h_path;
 +      struct dentry *wh_dentry, *parent;
 +      struct inode *h_dir;
-+      struct au_wr_dir_args wr_dir_args = {
-+              .force_btgt     = -1,
-+              .flags          = AuWrDir_ADD_ENTRY
-+      };
++      /* to reuduce stack size */
++      struct {
++              struct au_dtime dt;
++              struct au_pin pin;
++              struct path h_path;
++              struct au_wr_dir_args wr_dir_args;
++      } *a;
 +
 +      AuDbg("%.*s\n", AuDLNPair(dentry));
 +      IMustLock(dir);
 +
++      err = -ENOMEM;
++      a = kmalloc(sizeof(*a), GFP_NOFS);
++      if (unlikely(!a))
++              goto out;
++      a->wr_dir_args.force_btgt = -1;
++      a->wr_dir_args.flags = AuWrDir_ADD_ENTRY;
++
 +      parent = dentry->d_parent; /* dir inode is locked */
 +      err = aufs_read_lock(dentry, AuLock_DW | AuLock_GEN);
 +      if (unlikely(err))
-+              goto out;
++              goto out_free;
 +      err = au_d_may_add(dentry);
 +      if (unlikely(err))
 +              goto out_unlock;
 +      di_write_lock_parent(parent);
-+      wh_dentry = lock_hdir_lkup_wh(dentry, &dt, /*src_dentry*/NULL, &pin,
-+                                    &wr_dir_args);
++      wh_dentry = lock_hdir_lkup_wh(dentry, &a->dt, /*src_dentry*/NULL,
++                                    &a->pin, &a->wr_dir_args);
 +      err = PTR_ERR(wh_dentry);
 +      if (IS_ERR(wh_dentry))
 +              goto out_parent;
 +
 +      bstart = au_dbstart(dentry);
-+      h_path.dentry = au_h_dptr(dentry, bstart);
-+      h_path.mnt = au_sbr_mnt(dentry->d_sb, bstart);
-+      h_dir = au_pinned_h_dir(&pin);
++      a->h_path.dentry = au_h_dptr(dentry, bstart);
++      a->h_path.mnt = au_sbr_mnt(dentry->d_sb, bstart);
++      h_dir = au_pinned_h_dir(&a->pin);
 +      switch (arg->type) {
 +      case Creat:
-+              err = vfsub_create(h_dir, &h_path, arg->u.c.mode);
++              err = vfsub_create(h_dir, &a->h_path, arg->u.c.mode,
++                                 arg->u.c.want_excl);
 +              break;
 +      case Symlink:
-+              err = vfsub_symlink(h_dir, &h_path, arg->u.s.symname);
++              err = vfsub_symlink(h_dir, &a->h_path, arg->u.s.symname);
 +              break;
 +      case Mknod:
-+              err = vfsub_mknod(h_dir, &h_path, arg->u.m.mode, arg->u.m.dev);
++              err = vfsub_mknod(h_dir, &a->h_path, arg->u.m.mode,
++                                arg->u.m.dev);
 +              break;
 +      default:
 +              BUG();
@@ -15367,18 +15983,18 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              err = epilog(dir, bstart, wh_dentry, dentry);
 +
 +      /* revert */
-+      if (unlikely(created && err && h_path.dentry->d_inode)) {
++      if (unlikely(created && err && a->h_path.dentry->d_inode)) {
 +              int rerr;
-+              rerr = vfsub_unlink(h_dir, &h_path, /*force*/0);
++              rerr = vfsub_unlink(h_dir, &a->h_path, /*force*/0);
 +              if (rerr) {
 +                      AuIOErr("%.*s revert failure(%d, %d)\n",
 +                              AuDLNPair(dentry), err, rerr);
 +                      err = -EIO;
 +              }
-+              au_dtime_revert(&dt);
++              au_dtime_revert(&a->dt);
 +      }
 +
-+      au_unpin(&pin);
++      au_unpin(&a->pin);
 +      dput(wh_dentry);
 +
 +out_parent:
@@ -15389,11 +16005,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              d_drop(dentry);
 +      }
 +      aufs_read_unlock(dentry, AuLock_DW);
++out_free:
++      kfree(a);
 +out:
 +      return err;
 +}
 +
-+int aufs_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
++int aufs_mknod(struct inode *dir, struct dentry *dentry, umode_t mode,
++             dev_t dev)
 +{
 +      struct simple_arg arg = {
 +              .type = Mknod,
@@ -15414,14 +16033,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      return add_simple(dir, dentry, &arg);
 +}
 +
-+int aufs_create(struct inode *dir, struct dentry *dentry, int mode,
-+              struct nameidata *nd)
++int aufs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
++              bool want_excl)
 +{
 +      struct simple_arg arg = {
 +              .type = Creat,
 +              .u.c = {
-+                      .mode   = mode,
-+                      .nd     = nd
++                      .mode           = mode,
++                      .want_excl      = want_excl
 +              }
 +      };
 +      return add_simple(dir, dentry, &arg);
@@ -15441,8 +16060,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +{
 +      int err;
 +      struct dentry *h_src_dentry;
-+      struct mutex *h_mtx;
-+      struct file *h_file;
++      struct au_cp_generic cpg = {
++              .dentry = src_dentry,
++              .bdst   = a->bdst,
++              .bsrc   = a->bsrc,
++              .len    = -1,
++              .pin    = &a->pin,
++              .flags  = AuCpup_DTIME | AuCpup_HOPEN /* | AuCpup_KEEPLINO */
++      };
 +
 +      di_read_lock_parent(a->src_parent, AuLock_IR);
 +      err = au_test_and_cpup_dirs(src_dentry, a->bdst);
@@ -15450,22 +16075,13 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              goto out;
 +
 +      h_src_dentry = au_h_dptr(src_dentry, a->bsrc);
-+      h_mtx = &h_src_dentry->d_inode->i_mutex;
 +      err = au_pin(&a->pin, src_dentry, a->bdst,
 +                   au_opt_udba(src_dentry->d_sb),
 +                   AuPin_DI_LOCKED | AuPin_MNT_WRITE);
 +      if (unlikely(err))
 +              goto out;
-+      mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
-+      h_file = au_h_open_pre(src_dentry, a->bsrc);
-+      if (IS_ERR(h_file)) {
-+              err = PTR_ERR(h_file);
-+              h_file = NULL;
-+      } else
-+              err = au_sio_cpup_simple(src_dentry, a->bdst, -1,
-+                                       AuCpup_DTIME /* | AuCpup_KEEPLINO */);
-+      mutex_unlock(h_mtx);
-+      au_h_open_post(src_dentry, a->bsrc, h_file);
++
++      err = au_sio_cpup_simple(&cpg);
 +      au_unpin(&a->pin);
 +
 +out:
@@ -15473,12 +16089,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      return err;
 +}
 +
-+static int au_cpup_or_link(struct dentry *src_dentry, struct au_link_args *a)
++static int au_cpup_or_link(struct dentry *src_dentry, struct dentry *dentry,
++                         struct au_link_args *a)
 +{
 +      int err;
 +      unsigned char plink;
-+      struct inode *h_inode, *inode;
++      aufs_bindex_t bend;
 +      struct dentry *h_src_dentry;
++      struct inode *h_inode, *inode;
 +      struct super_block *sb;
 +      struct file *h_file;
 +
@@ -15490,22 +16108,38 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              h_inode = au_h_iptr(inode, a->bdst);
 +      if (!h_inode || !h_inode->i_nlink) {
 +              /* copyup src_dentry as the name of dentry. */
-+              au_set_dbstart(src_dentry, a->bdst);
-+              au_set_h_dptr(src_dentry, a->bdst, dget(a->h_path.dentry));
-+              h_inode = au_h_dptr(src_dentry, a->bsrc)->d_inode;
-+              mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
-+              h_file = au_h_open_pre(src_dentry, a->bsrc);
-+              if (IS_ERR(h_file)) {
++              bend = au_dbend(dentry);
++              if (bend < a->bsrc)
++                      au_set_dbend(dentry, a->bsrc);
++              au_set_h_dptr(dentry, a->bsrc,
++                            dget(au_h_dptr(src_dentry, a->bsrc)));
++              dget(a->h_path.dentry);
++              au_set_h_dptr(dentry, a->bdst, NULL);
++              dentry->d_inode = src_dentry->d_inode; /* tmp */
++              h_file = au_h_open_pre(dentry, a->bsrc);
++              if (IS_ERR(h_file))
 +                      err = PTR_ERR(h_file);
-+                      h_file = NULL;
-+              } else
-+                      err = au_sio_cpup_single(src_dentry, a->bdst, a->bsrc,
-+                                               -1, AuCpup_KEEPLINO,
-+                                               a->parent);
-+              mutex_unlock(&h_inode->i_mutex);
-+              au_h_open_post(src_dentry, a->bsrc, h_file);
-+              au_set_h_dptr(src_dentry, a->bdst, NULL);
-+              au_set_dbstart(src_dentry, a->bsrc);
++              else {
++                      struct au_cp_generic cpg = {
++                              .dentry = dentry,
++                              .bdst   = a->bdst,
++                              .bsrc   = -1,
++                              .len    = -1,
++                              .pin    = &a->pin,
++                              .flags  = AuCpup_KEEPLINO
++                      };
++                      err = au_sio_cpup_simple(&cpg);
++                      au_h_open_post(dentry, a->bsrc, h_file);
++                      if (!err) {
++                              dput(a->h_path.dentry);
++                              a->h_path.dentry = au_h_dptr(dentry, a->bdst);
++                      } else
++                              au_set_h_dptr(dentry, a->bdst,
++                                            a->h_path.dentry);
++              }
++              dentry->d_inode = NULL; /* restore */
++              au_set_h_dptr(dentry, a->bsrc, NULL);
++              au_set_dbend(dentry, bend);
 +      } else {
 +              /* the inode of src_dentry already exists on a.bdst branch */
 +              h_src_dentry = d_find_alias(h_inode);
@@ -15604,7 +16238,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      if (au_opt_test(au_mntflags(sb), PLINK)) {
 +              if (a->bdst < a->bsrc
 +                  /* && h_src_dentry->d_sb != a->h_path.dentry->d_sb */)
-+                      err = au_cpup_or_link(src_dentry, a);
++                      err = au_cpup_or_link(src_dentry, dentry, a);
 +              else
 +                      err = vfsub_link(h_src_dentry, au_pinned_h_dir(&a->pin),
 +                                       &a->h_path);
@@ -15683,10 +16317,11 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +out_kfree:
 +      kfree(a);
 +out:
++      AuTraceErr(err);
 +      return err;
 +}
 +
-+int aufs_mkdir(struct inode *dir, struct dentry *dentry, int mode)
++int aufs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
 +{
 +      int err, rerr;
 +      aufs_bindex_t bindex;
@@ -15795,10 +16430,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +}
 diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 --- /usr/share/empty/fs/aufs/i_op.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/i_op.c       2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,992 @@
++++ linux/fs/aufs/i_op.c       2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,1115 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -15821,6 +16456,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +#include <linux/device_cgroup.h>
 +#include <linux/fs_stack.h>
++#include <linux/mm.h>
 +#include <linux/namei.h>
 +#include <linux/security.h>
 +#include "aufs.h"
@@ -15912,7 +16548,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              err = 0;
 +              bindex = au_ibstart(inode);
 +              br = au_sbr(sb, bindex);
-+              err = h_permission(h_inode, mask, br->br_mnt, br->br_perm);
++              err = h_permission(h_inode, mask, au_br_mnt(br), br->br_perm);
 +              if (write_mask
 +                  && !err
 +                  && !special_file(h_inode->i_mode)) {
@@ -15938,7 +16574,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +                              break;
 +
 +                      br = au_sbr(sb, bindex);
-+                      err = h_permission(h_inode, mask, br->br_mnt,
++                      err = h_permission(h_inode, mask, au_br_mnt(br),
 +                                         br->br_perm);
 +              }
 +      }
@@ -15952,24 +16588,30 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +/* ---------------------------------------------------------------------- */
 +
 +static struct dentry *aufs_lookup(struct inode *dir, struct dentry *dentry,
-+                                struct nameidata *nd)
++                                unsigned int flags)
 +{
 +      struct dentry *ret, *parent;
 +      struct inode *inode;
 +      struct super_block *sb;
-+      int err, npositive, lc_idx;
++      int err, npositive;
 +
 +      IMustLock(dir);
 +
++      /* todo: support rcu-walk? */
++      ret = ERR_PTR(-ECHILD);
++      if (flags & LOOKUP_RCU)
++              goto out;
++
++      ret = ERR_PTR(-ENAMETOOLONG);
++      if (unlikely(dentry->d_name.len > AUFS_MAX_NAMELEN))
++              goto out;
++
 +      sb = dir->i_sb;
 +      err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM);
 +      ret = ERR_PTR(err);
 +      if (unlikely(err))
 +              goto out;
 +
-+      ret = ERR_PTR(-ENAMETOOLONG);
-+      if (unlikely(dentry->d_name.len > AUFS_MAX_NAMELEN))
-+              goto out_si;
 +      err = au_di_init(dentry);
 +      ret = ERR_PTR(err);
 +      if (unlikely(err))
@@ -15984,7 +16626,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              err = au_digen_test(parent, au_sigen(sb));
 +      if (!err) {
 +              npositive = au_lkup_dentry(dentry, au_dbstart(parent),
-+                                         /*type*/0, nd);
++                                         /*type*/0);
 +              err = npositive;
 +      }
 +      di_read_unlock(parent, AuLock_IR);
@@ -16002,26 +16644,32 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      }
 +
 +      ret = d_splice_alias(inode, dentry);
++#if 0
++      if (unlikely(d_need_lookup(dentry))) {
++              spin_lock(&dentry->d_lock);
++              dentry->d_flags &= ~DCACHE_NEED_LOOKUP;
++              spin_unlock(&dentry->d_lock);
++      } else
++#endif
 +      if (unlikely(IS_ERR(ret) && inode)) {
 +              ii_write_unlock(inode);
-+              lc_idx = AuLcNonDir_IIINFO;
-+              if (S_ISLNK(inode->i_mode))
-+                      lc_idx = AuLcSymlink_IIINFO;
-+              else if (S_ISDIR(inode->i_mode))
-+                      lc_idx = AuLcDir_IIINFO;
-+              au_rw_class(&au_ii(inode)->ii_rwsem, au_lc_key + lc_idx);
 +              iput(inode);
++              inode = NULL;
 +      }
 +
 +out_unlock:
 +      di_write_unlock(dentry);
-+      if (unlikely(IS_ERR(ret) && inode)) {
-+              lc_idx = AuLcNonDir_DIINFO;
-+              if (S_ISLNK(inode->i_mode))
-+                      lc_idx = AuLcSymlink_DIINFO;
-+              else if (S_ISDIR(inode->i_mode))
-+                      lc_idx = AuLcDir_DIINFO;
-+              au_rw_class(&au_di(dentry)->di_rwsem, au_lc_key + lc_idx);
++      if (inode) {
++              /* verbose coding for lock class name */
++              if (unlikely(S_ISLNK(inode->i_mode)))
++                      au_rw_class(&au_di(dentry)->di_rwsem,
++                                  au_lc_key + AuLcSymlink_DIINFO);
++              else if (unlikely(S_ISDIR(inode->i_mode)))
++                      au_rw_class(&au_di(dentry)->di_rwsem,
++                                  au_lc_key + AuLcDir_DIINFO);
++              else /* likely */
++                      au_rw_class(&au_di(dentry)->di_rwsem,
++                                  au_lc_key + AuLcNonDir_DIINFO);
 +      }
 +out_si:
 +      si_read_unlock(sb);
@@ -16046,16 +16694,19 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +      err = 0;
 +      if (!au_h_dptr(parent, bcpup)) {
-+              if (bstart < bcpup)
++              if (bstart > bcpup)
++                      err = au_cpup_dirs(dentry, bcpup);
++              else if (bstart < bcpup)
 +                      err = au_cpdown_dirs(dentry, bcpup);
 +              else
-+                      err = au_cpup_dirs(dentry, bcpup);
++                      BUG();
 +      }
 +      if (!err && add_entry) {
 +              h_parent = au_h_dptr(parent, bcpup);
 +              h_dir = h_parent->d_inode;
 +              mutex_lock_nested(&h_dir->i_mutex, AuLsc_I_PARENT);
-+              err = au_lkup_neg(dentry, bcpup);
++              err = au_lkup_neg(dentry, bcpup,
++                                au_ftest_wrdir(add_entry, TMP_WHENTRY));
 +              /* todo: no unlock here */
 +              mutex_unlock(&h_dir->i_mutex);
 +
@@ -16086,8 +16737,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +{
 +      int err;
 +      aufs_bindex_t bcpup, bstart, src_bstart;
-+      const unsigned char add_entry = !!au_ftest_wrdir(args->flags,
-+                                                       ADD_ENTRY);
++      const unsigned char add_entry
++              = au_ftest_wrdir(args->flags, ADD_ENTRY)
++              | au_ftest_wrdir(args->flags, TMP_WHENTRY);
 +      struct super_block *sb;
 +      struct dentry *parent;
 +      struct au_sbinfo *sbinfo;
@@ -16151,45 +16803,124 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +/* ---------------------------------------------------------------------- */
 +
-+struct dentry *au_pinned_h_parent(struct au_pin *pin)
++void au_pin_hdir_unlock(struct au_pin *p)
 +{
-+      if (pin && pin->parent)
-+              return au_h_dptr(pin->parent, pin->bindex);
-+      return NULL;
++      if (p->hdir)
++              au_hn_imtx_unlock(p->hdir);
 +}
 +
-+void au_unpin(struct au_pin *p)
++static int au_pin_hdir_lock(struct au_pin *p)
 +{
-+      if (p->h_mnt && au_ftest_pin(p->flags, MNT_WRITE))
-+              mnt_drop_write(p->h_mnt);
++      int err;
++
++      err = 0;
 +      if (!p->hdir)
-+              return;
++              goto out;
 +
-+      au_hn_imtx_unlock(p->hdir);
-+      if (!au_ftest_pin(p->flags, DI_LOCKED))
-+              di_read_unlock(p->parent, AuLock_IR);
-+      iput(p->hdir->hi_inode);
-+      dput(p->parent);
-+      p->parent = NULL;
-+      p->hdir = NULL;
-+      p->h_mnt = NULL;
++      /* even if an error happens later, keep this lock */
++      au_hn_imtx_lock_nested(p->hdir, p->lsc_hi);
++
++      err = -EBUSY;
++      if (unlikely(p->hdir->hi_inode != p->h_parent->d_inode))
++              goto out;
++
++      err = 0;
++      if (p->h_dentry)
++              err = au_h_verify(p->h_dentry, p->udba, p->hdir->hi_inode,
++                                p->h_parent, p->br);
++
++out:
++      return err;
++}
++
++int au_pin_hdir_relock(struct au_pin *p)
++{
++      int err, i;
++      struct inode *h_i;
++      struct dentry *h_d[] = {
++              p->h_dentry,
++              p->h_parent
++      };
++
++      err = au_pin_hdir_lock(p);
++      if (unlikely(err))
++              goto out;
++
++      for (i = 0; !err && i < sizeof(h_d)/sizeof(*h_d); i++) {
++              if (!h_d[i])
++                      continue;
++              h_i = h_d[i]->d_inode;
++              if (h_i)
++                      err = !h_i->i_nlink;
++      }
++
++out:
++      return err;
++}
++
++void au_pin_hdir_set_owner(struct au_pin *p, struct task_struct *task)
++{
++#if defined(CONFIG_DEBUG_MUTEXES) || defined(CONFIG_SMP)
++      p->hdir->hi_inode->i_mutex.owner = task;
++#endif
++}
++
++void au_pin_hdir_acquire_nest(struct au_pin *p)
++{
++      if (p->hdir) {
++              mutex_acquire_nest(&p->hdir->hi_inode->i_mutex.dep_map,
++                                 p->lsc_hi, 0, NULL, _RET_IP_);
++              au_pin_hdir_set_owner(p, current);
++      }
++}
++
++void au_pin_hdir_release(struct au_pin *p)
++{
++      if (p->hdir) {
++              au_pin_hdir_set_owner(p, p->task);
++              mutex_release(&p->hdir->hi_inode->i_mutex.dep_map, 1, _RET_IP_);
++      }
++}
++
++struct dentry *au_pinned_h_parent(struct au_pin *pin)
++{
++      if (pin && pin->parent)
++              return au_h_dptr(pin->parent, pin->bindex);
++      return NULL;
++}
++
++void au_unpin(struct au_pin *p)
++{
++      if (p->hdir)
++              au_pin_hdir_unlock(p);
++      if (p->h_mnt && au_ftest_pin(p->flags, MNT_WRITE))
++              vfsub_mnt_drop_write(p->h_mnt);
++      if (!p->hdir)
++              return;
++
++      if (!au_ftest_pin(p->flags, DI_LOCKED))
++              di_read_unlock(p->parent, AuLock_IR);
++      iput(p->hdir->hi_inode);
++      dput(p->parent);
++      p->parent = NULL;
++      p->hdir = NULL;
++      p->h_mnt = NULL;
++      /* do not clear p->task */
 +}
 +
 +int au_do_pin(struct au_pin *p)
 +{
 +      int err;
 +      struct super_block *sb;
-+      struct dentry *h_dentry, *h_parent;
-+      struct au_branch *br;
 +      struct inode *h_dir;
 +
 +      err = 0;
 +      sb = p->dentry->d_sb;
-+      br = au_sbr(sb, p->bindex);
++      p->br = au_sbr(sb, p->bindex);
 +      if (IS_ROOT(p->dentry)) {
 +              if (au_ftest_pin(p->flags, MNT_WRITE)) {
-+                      p->h_mnt = br->br_mnt;
-+                      err = mnt_want_write(p->h_mnt);
++                      p->h_mnt = au_br_mnt(p->br);
++                      err = vfsub_mnt_want_write(p->h_mnt);
 +                      if (unlikely(err)) {
 +                              au_fclr_pin(p->flags, MNT_WRITE);
 +                              goto out_err;
@@ -16198,16 +16929,16 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              goto out;
 +      }
 +
-+      h_dentry = NULL;
++      p->h_dentry = NULL;
 +      if (p->bindex <= au_dbend(p->dentry))
-+              h_dentry = au_h_dptr(p->dentry, p->bindex);
++              p->h_dentry = au_h_dptr(p->dentry, p->bindex);
 +
 +      p->parent = dget_parent(p->dentry);
 +      if (!au_ftest_pin(p->flags, DI_LOCKED))
 +              di_read_lock(p->parent, AuLock_IR, p->lsc_di);
 +
 +      h_dir = NULL;
-+      h_parent = au_h_dptr(p->parent, p->bindex);
++      p->h_parent = au_h_dptr(p->parent, p->bindex);
 +      p->hdir = au_hi(p->parent->d_inode, p->bindex);
 +      if (p->hdir)
 +              h_dir = p->hdir->hi_inode;
@@ -16217,7 +16948,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +       * if DI_LOCKED is not set, then p->parent may be different
 +       * and h_parent can be NULL.
 +       */
-+      if (unlikely(!p->hdir || !h_dir || !h_parent)) {
++      if (unlikely(!p->hdir || !h_dir || !p->h_parent)) {
 +              err = -EBUSY;
 +              if (!au_ftest_pin(p->flags, DI_LOCKED))
 +                      di_read_unlock(p->parent, AuLock_IR);
@@ -16226,33 +16957,24 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              goto out_err;
 +      }
 +
-+      au_igrab(h_dir);
-+      au_hn_imtx_lock_nested(p->hdir, p->lsc_hi);
-+
-+      if (unlikely(p->hdir->hi_inode != h_parent->d_inode)) {
-+              err = -EBUSY;
-+              goto out_unpin;
-+      }
-+      if (h_dentry) {
-+              err = au_h_verify(h_dentry, p->udba, h_dir, h_parent, br);
-+              if (unlikely(err)) {
-+                      au_fclr_pin(p->flags, MNT_WRITE);
-+                      goto out_unpin;
-+              }
-+      }
-+
 +      if (au_ftest_pin(p->flags, MNT_WRITE)) {
-+              p->h_mnt = br->br_mnt;
-+              err = mnt_want_write(p->h_mnt);
++              p->h_mnt = au_br_mnt(p->br);
++              err = vfsub_mnt_want_write(p->h_mnt);
 +              if (unlikely(err)) {
 +                      au_fclr_pin(p->flags, MNT_WRITE);
-+                      goto out_unpin;
++                      if (!au_ftest_pin(p->flags, DI_LOCKED))
++                              di_read_unlock(p->parent, AuLock_IR);
++                      dput(p->parent);
++                      p->parent = NULL;
++                      goto out_err;
 +              }
 +      }
-+      goto out; /* success */
 +
-+out_unpin:
-+      au_unpin(p);
++      au_igrab(h_dir);
++      err = au_pin_hdir_lock(p);
++      if (!err)
++              goto out; /* success */
++
 +out_err:
 +      pr_err("err %d\n", err);
 +      err = au_busy_or_stale();
@@ -16274,6 +16996,11 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      p->parent = NULL;
 +      p->hdir = NULL;
 +      p->h_mnt = NULL;
++
++      p->h_dentry = NULL;
++      p->h_parent = NULL;
++      p->br = NULL;
++      p->task = current;
 +}
 +
 +int au_pin(struct au_pin *pin, struct dentry *dentry, aufs_bindex_t bindex,
@@ -16339,7 +17066,6 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      aufs_bindex_t bstart, ibstart;
 +      struct dentry *hi_wh, *parent;
 +      struct inode *inode;
-+      struct file *h_file;
 +      struct au_wr_dir_args wr_dir_args = {
 +              .force_btgt     = -1,
 +              .flags          = 0
@@ -16379,13 +17105,20 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      sz = -1;
 +      if ((ia->ia_valid & ATTR_SIZE) && ia->ia_size < i_size_read(a->h_inode))
 +              sz = ia->ia_size;
++      mutex_unlock(&a->h_inode->i_mutex);
 +
-+      h_file = NULL;
 +      hi_wh = NULL;
 +      if (au_ftest_icpup(a->flags, DID_CPUP) && d_unlinked(dentry)) {
 +              hi_wh = au_hi_wh(inode, a->btgt);
 +              if (!hi_wh) {
-+                      err = au_sio_cpup_wh(dentry, a->btgt, sz, /*file*/NULL);
++                      struct au_cp_generic cpg = {
++                              .dentry = dentry,
++                              .bdst   = a->btgt,
++                              .bsrc   = -1,
++                              .len    = sz,
++                              .pin    = &a->pin
++                      };
++                      err = au_sio_cpup_wh(&cpg, /*file*/NULL);
 +                      if (unlikely(err))
 +                              goto out_unlock;
 +                      hi_wh = au_hi_wh(inode, a->btgt);
@@ -16403,13 +17136,15 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              goto out; /* success */
 +
 +      if (!d_unhashed(dentry)) {
-+              h_file = au_h_open_pre(dentry, bstart);
-+              if (IS_ERR(h_file)) {
-+                      err = PTR_ERR(h_file);
-+                      h_file = NULL;
-+              } else
-+                      err = au_sio_cpup_simple(dentry, a->btgt, sz,
-+                                               AuCpup_DTIME);
++              struct au_cp_generic cpg = {
++                      .dentry = dentry,
++                      .bdst   = a->btgt,
++                      .bsrc   = bstart,
++                      .len    = sz,
++                      .pin    = &a->pin,
++                      .flags  = AuCpup_DTIME | AuCpup_HOPEN
++              };
++              err = au_sio_cpup_simple(&cpg);
 +              if (!err)
 +                      a->h_path.dentry = au_h_dptr(dentry, a->btgt);
 +      } else if (!hi_wh)
@@ -16418,14 +17153,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              a->h_path.dentry = hi_wh; /* do not dget here */
 +
 +out_unlock:
-+      mutex_unlock(&a->h_inode->i_mutex);
-+      au_h_open_post(dentry, bstart, h_file);
 +      a->h_inode = a->h_path.dentry->d_inode;
-+      if (!err) {
-+              mutex_lock_nested(&a->h_inode->i_mutex, AuLsc_I_CHILD);
++      if (!err)
 +              goto out; /* success */
-+      }
-+
 +      au_unpin(&a->pin);
 +out_parent:
 +      if (parent) {
@@ -16433,6 +17163,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              dput(parent);
 +      }
 +out:
++      if (!err)
++              mutex_lock_nested(&a->h_inode->i_mutex, AuLsc_I_CHILD);
 +      return err;
 +}
 +
@@ -16496,8 +17228,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      a->h_path.mnt = au_sbr_mnt(sb, a->btgt);
 +      if ((ia->ia_valid & (ATTR_MODE | ATTR_CTIME))
 +          == (ATTR_MODE | ATTR_CTIME)) {
-+              err = security_path_chmod(a->h_path.dentry, a->h_path.mnt,
-+                                        ia->ia_mode);
++              err = security_path_chmod(&a->h_path, ia->ia_mode);
 +              if (unlikely(err))
 +                      goto out_unlock;
 +      } else if ((ia->ia_valid & (ATTR_UID | ATTR_GID))
@@ -16552,6 +17283,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      unsigned int n;
 +
 +      inode->i_mode = st->mode;
++      /* don't i_[ug]id_write() here */
 +      inode->i_uid = st->uid;
 +      inode->i_gid = st->gid;
 +      inode->i_atime = st->atime;
@@ -16563,6 +17295,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              n = inode->i_nlink;
 +              n -= nlink;
 +              n += st->nlink;
++              smp_mb();
++              /* 0 can happen */
 +              set_nlink(inode, n);
 +      }
 +
@@ -16581,8 +17315,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      unsigned char udba_none, positive;
 +      struct super_block *sb, *h_sb;
 +      struct inode *inode;
-+      struct vfsmount *h_mnt;
-+      struct dentry *h_dentry;
++      struct path h_path;
 +
 +      sb = dentry->d_sb;
 +      inode = dentry->d_inode;
@@ -16615,30 +17348,31 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              di_read_lock_child(dentry, AuLock_IR);
 +
 +      bindex = au_ibstart(inode);
-+      h_mnt = au_sbr_mnt(sb, bindex);
-+      h_sb = h_mnt->mnt_sb;
++      h_path.mnt = au_sbr_mnt(sb, bindex);
++      h_sb = h_path.mnt->mnt_sb;
 +      if (!au_test_fs_bad_iattr(h_sb) && udba_none)
 +              goto out_fill; /* success */
 +
-+      h_dentry = NULL;
++      h_path.dentry = NULL;
 +      if (au_dbstart(dentry) == bindex)
-+              h_dentry = dget(au_h_dptr(dentry, bindex));
++              h_path.dentry = dget(au_h_dptr(dentry, bindex));
 +      else if (au_opt_test(mnt_flags, PLINK) && au_plink_test(inode)) {
-+              h_dentry = au_plink_lkup(inode, bindex);
-+              if (IS_ERR(h_dentry))
++              h_path.dentry = au_plink_lkup(inode, bindex);
++              if (IS_ERR(h_path.dentry))
 +                      goto out_fill; /* pretending success */
 +      }
 +      /* illegally overlapped or something */
-+      if (unlikely(!h_dentry))
++      if (unlikely(!h_path.dentry))
 +              goto out_fill; /* pretending success */
 +
-+      positive = !!h_dentry->d_inode;
++      positive = !!h_path.dentry->d_inode;
 +      if (positive)
-+              err = vfs_getattr(h_mnt, h_dentry, st);
-+      dput(h_dentry);
++              err = vfs_getattr(&h_path, st);
++      dput(h_path.dentry);
 +      if (!err) {
 +              if (positive)
-+                      au_refresh_iattr(inode, st, h_dentry->d_inode->i_nlink);
++                      au_refresh_iattr(inode, st,
++                                       h_path.dentry->d_inode->i_nlink);
 +              goto out_fill; /* success */
 +      }
 +      AuTraceErr(err);
@@ -16709,7 +17443,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      } buf;
 +
 +      err = -ENOMEM;
-+      buf.k = __getname_gfp(GFP_NOFS);
++      buf.k = (void *)__get_free_page(GFP_NOFS);
 +      if (unlikely(!buf.k))
 +              goto out;
 +
@@ -16734,9 +17468,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      }
 +
 +out_name:
-+      __putname(buf.k);
++      free_page((unsigned long)buf.k);
 +out:
-+      path_put(&nd->path);
 +      AuTraceErr(err);
 +      return ERR_PTR(err);
 +}
@@ -16744,16 +17477,34 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +static void aufs_put_link(struct dentry *dentry __maybe_unused,
 +                        struct nameidata *nd, void *cookie __maybe_unused)
 +{
-+      __putname(nd_get_link(nd));
++      char *p;
++
++      p = nd_get_link(nd);
++      if (!IS_ERR_OR_NULL(p))
++              free_page((unsigned long)p);
 +}
 +
 +/* ---------------------------------------------------------------------- */
 +
-+static void aufs_truncate_range(struct inode *inode __maybe_unused,
-+                              loff_t start __maybe_unused,
-+                              loff_t end __maybe_unused)
++static int aufs_update_time(struct inode *inode, struct timespec *ts, int flags)
 +{
-+      AuUnsupport();
++      int err;
++      struct super_block *sb;
++      struct inode *h_inode;
++
++      sb = inode->i_sb;
++      /* mmap_sem might be acquired already, cf. aufs_mmap() */
++      lockdep_off();
++      si_read_lock(sb, AuLock_FLUSH);
++      ii_write_lock_child(inode);
++      lockdep_on();
++      h_inode = au_h_iptr(inode, au_ibstart(inode));
++      err = vfsub_update_time(h_inode, ts, flags);
++      lockdep_off();
++      ii_write_unlock(inode);
++      si_read_unlock(sb);
++      lockdep_on();
++      return err;
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -16762,9 +17513,12 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      .permission     = aufs_permission,
 +      .setattr        = aufs_setattr,
 +      .getattr        = aufs_getattr,
++
 +      .readlink       = aufs_readlink,
 +      .follow_link    = aufs_follow_link,
-+      .put_link       = aufs_put_link
++      .put_link       = aufs_put_link,
++
++      /* .update_time = aufs_update_time */
 +};
 +
 +struct inode_operations aufs_dir_iop = {
@@ -16780,21 +17534,25 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +      .permission     = aufs_permission,
 +      .setattr        = aufs_setattr,
-+      .getattr        = aufs_getattr
++      .getattr        = aufs_getattr,
++
++      .update_time    = aufs_update_time
++      /* no support for atomic_open() */
 +};
 +
 +struct inode_operations aufs_iop = {
 +      .permission     = aufs_permission,
 +      .setattr        = aufs_setattr,
 +      .getattr        = aufs_getattr,
-+      .truncate_range = aufs_truncate_range
++
++      .update_time    = aufs_update_time
 +};
 diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 --- /usr/share/empty/fs/aufs/i_op_del.c        1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/i_op_del.c   2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,478 @@
++++ linux/fs/aufs/i_op_del.c   2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,502 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -16863,8 +17621,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +                      au_di_cp(tmp, dinfo);
 +                      au_di_swap(tmp, dinfo);
 +                      /* returns the number of positive dentries */
-+                      need_wh = au_lkup_dentry(dentry, bstart + 1, /*type*/0,
-+                                               /*nd*/NULL);
++                      need_wh = au_lkup_dentry(dentry, bstart + 1, /*type*/0);
 +                      au_di_swap(tmp, dinfo);
 +                      au_rw_write_unlock(&tmp->di_rwsem);
 +                      au_di_free(tmp);
@@ -17095,17 +17852,25 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +{
 +      int err;
 +      aufs_bindex_t bwh, bindex, bstart;
-+      struct au_dtime dt;
-+      struct au_pin pin;
-+      struct path h_path;
 +      struct inode *inode, *h_dir;
 +      struct dentry *parent, *wh_dentry;
++      /* to reuduce stack size */
++      struct {
++              struct au_dtime dt;
++              struct au_pin pin;
++              struct path h_path;
++      } *a;
 +
 +      IMustLock(dir);
 +
++      err = -ENOMEM;
++      a = kmalloc(sizeof(*a), GFP_NOFS);
++      if (unlikely(!a))
++              goto out;
++
 +      err = aufs_read_lock(dentry, AuLock_DW | AuLock_GEN);
 +      if (unlikely(err))
-+              goto out;
++              goto out_free;
 +      err = au_d_hashed_positive(dentry);
 +      if (unlikely(err))
 +              goto out_unlock;
@@ -17120,17 +17885,18 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      bindex = -1;
 +      parent = dentry->d_parent; /* dir inode is locked */
 +      di_write_lock_parent(parent);
-+      wh_dentry = lock_hdir_create_wh(dentry, /*isdir*/0, &bindex, &dt, &pin);
++      wh_dentry = lock_hdir_create_wh(dentry, /*isdir*/0, &bindex, &a->dt,
++                                      &a->pin);
 +      err = PTR_ERR(wh_dentry);
 +      if (IS_ERR(wh_dentry))
 +              goto out_parent;
 +
-+      h_path.mnt = au_sbr_mnt(dentry->d_sb, bstart);
-+      h_path.dentry = au_h_dptr(dentry, bstart);
-+      dget(h_path.dentry);
++      a->h_path.mnt = au_sbr_mnt(dentry->d_sb, bstart);
++      a->h_path.dentry = au_h_dptr(dentry, bstart);
++      dget(a->h_path.dentry);
 +      if (bindex == bstart) {
-+              h_dir = au_pinned_h_dir(&pin);
-+              err = vfsub_unlink(h_dir, &h_path, /*force*/0);
++              h_dir = au_pinned_h_dir(&a->pin);
++              err = vfsub_unlink(h_dir, &a->h_path, /*force*/0);
 +      } else {
 +              /* dir inode is locked */
 +              h_dir = wh_dentry->d_parent->d_inode;
@@ -17144,8 +17910,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +
 +              /* update target timestamps */
 +              if (bindex == bstart) {
-+                      vfsub_update_h_iattr(&h_path, /*did*/NULL); /*ignore*/
-+                      inode->i_ctime = h_path.dentry->d_inode->i_ctime;
++                      vfsub_update_h_iattr(&a->h_path, /*did*/NULL);
++                      /*ignore*/
++                      inode->i_ctime = a->h_path.dentry->d_inode->i_ctime;
 +              } else
 +                      /* todo: this timestamp may be reverted later */
 +                      inode->i_ctime = h_dir->i_ctime;
@@ -17156,19 +17923,22 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      if (wh_dentry) {
 +              int rerr;
 +
-+              rerr = do_revert(err, dir, bindex, bwh, wh_dentry, dentry, &dt);
++              rerr = do_revert(err, dir, bindex, bwh, wh_dentry, dentry,
++                               &a->dt);
 +              if (rerr)
 +                      err = rerr;
 +      }
 +
 +out_unpin:
-+      au_unpin(&pin);
++      au_unpin(&a->pin);
 +      dput(wh_dentry);
-+      dput(h_path.dentry);
++      dput(a->h_path.dentry);
 +out_parent:
 +      di_write_unlock(parent);
 +out_unlock:
 +      aufs_read_unlock(dentry, AuLock_DW);
++out_free:
++      kfree(a);
 +out:
 +      return err;
 +}
@@ -17177,17 +17947,25 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +{
 +      int err, rmdir_later;
 +      aufs_bindex_t bwh, bindex, bstart;
-+      struct au_dtime dt;
-+      struct au_pin pin;
 +      struct inode *inode;
 +      struct dentry *parent, *wh_dentry, *h_dentry;
 +      struct au_whtmp_rmdir *args;
++      /* to reuduce stack size */
++      struct {
++              struct au_dtime dt;
++              struct au_pin pin;
++      } *a;
 +
 +      IMustLock(dir);
 +
++      err = -ENOMEM;
++      a = kmalloc(sizeof(*a), GFP_NOFS);
++      if (unlikely(!a))
++              goto out;
++
 +      err = aufs_read_lock(dentry, AuLock_DW | AuLock_FLUSH | AuLock_GEN);
 +      if (unlikely(err))
-+              goto out;
++              goto out_free;
 +      err = au_alive_dir(dentry);
 +      if (unlikely(err))
 +              goto out_unlock;
@@ -17211,7 +17989,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      bstart = au_dbstart(dentry);
 +      bwh = au_dbwh(dentry);
 +      bindex = -1;
-+      wh_dentry = lock_hdir_create_wh(dentry, /*isdir*/1, &bindex, &dt, &pin);
++      wh_dentry = lock_hdir_create_wh(dentry, /*isdir*/1, &bindex, &a->dt,
++                                      &a->pin);
 +      err = PTR_ERR(wh_dentry);
 +      if (IS_ERR(wh_dentry))
 +              goto out_parent;
@@ -17252,13 +18031,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      if (wh_dentry) {
 +              int rerr;
 +
-+              rerr = do_revert(err, dir, bindex, bwh, wh_dentry, dentry, &dt);
++              rerr = do_revert(err, dir, bindex, bwh, wh_dentry, dentry,
++                               &a->dt);
 +              if (rerr)
 +                      err = rerr;
 +      }
 +
 +out_unpin:
-+      au_unpin(&pin);
++      au_unpin(&a->pin);
 +      dput(wh_dentry);
 +      dput(h_dentry);
 +out_parent:
@@ -17267,16 +18047,18 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +              au_whtmp_rmdir_free(args);
 +out_unlock:
 +      aufs_read_unlock(dentry, AuLock_DW);
++out_free:
++      kfree(a);
 +out:
 +      AuTraceErr(err);
 +      return err;
 +}
 diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 --- /usr/share/empty/fs/aufs/i_op_ren.c        1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/i_op_ren.c   2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,1017 @@
++++ linux/fs/aufs/i_op_ren.c   2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,1009 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -17396,11 +18178,11 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +{
 +      int rerr;
 +
-+      a->h_path.dentry = au_lkup_one(&a->src_dentry->d_name, a->src_h_parent,
-+                                     a->br, /*nd*/NULL);
++      a->h_path.dentry = vfsub_lkup_one(&a->src_dentry->d_name,
++                                        a->src_h_parent);
 +      rerr = PTR_ERR(a->h_path.dentry);
 +      if (IS_ERR(a->h_path.dentry)) {
-+              RevertFailure("au_lkup_one %.*s", AuDLNPair(a->src_dentry));
++              RevertFailure("lkup one %.*s", AuDLNPair(a->src_dentry));
 +              return;
 +      }
 +
@@ -17430,11 +18212,11 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +{
 +      int rerr;
 +
-+      a->h_path.dentry = au_lkup_one(&a->dst_dentry->d_name, a->dst_h_parent,
-+                                     a->br, /*nd*/NULL);
++      a->h_path.dentry = vfsub_lkup_one(&a->dst_dentry->d_name,
++                                        a->dst_h_parent);
 +      rerr = PTR_ERR(a->h_path.dentry);
 +      if (IS_ERR(a->h_path.dentry)) {
-+              RevertFailure("lookup %.*s", AuDLNPair(a->dst_dentry));
++              RevertFailure("lkup one %.*s", AuDLNPair(a->dst_dentry));
 +              return;
 +      }
 +      if (a->h_path.dentry->d_inode) {
@@ -17485,32 +18267,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              AuDebugOn(au_dbstart(d) != a->btgt);
 +              err = vfsub_rename(a->src_h_dir, au_h_dptr(d, a->btgt),
 +                                 a->dst_h_dir, &a->h_path);
-+      } else {
-+              struct mutex *h_mtx = &a->src_h_dentry->d_inode->i_mutex;
-+              struct file *h_file;
++      } else
++              BUG();
 +
-+              au_fset_ren(a->flags, CPUP);
-+              mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
-+              au_set_dbstart(d, a->btgt);
-+              au_set_h_dptr(d, a->btgt, dget(a->dst_h_dentry));
-+              h_file = au_h_open_pre(d, a->src_bstart);
-+              if (IS_ERR(h_file)) {
-+                      err = PTR_ERR(h_file);
-+                      h_file = NULL;
-+              } else
-+                      err = au_sio_cpup_single(d, a->btgt, a->src_bstart, -1,
-+                                               !AuCpup_DTIME, a->dst_parent);
-+              mutex_unlock(h_mtx);
-+              au_h_open_post(d, a->src_bstart, h_file);
-+              if (!err) {
-+                      d = a->dst_dentry;
-+                      au_set_h_dptr(d, a->btgt, NULL);
-+                      au_update_dbstart(d);
-+              } else {
-+                      au_set_h_dptr(d, a->btgt, NULL);
-+                      au_set_dbstart(d, a->src_bstart);
-+              }
-+      }
 +      if (!err && a->h_dst)
 +              /* it will be set to dinfo later */
 +              dget(a->h_dst);
@@ -17531,8 +18290,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +          || au_test_fs_remote(a->h_dst->d_sb)) {
 +              err = au_whtmp_rmdir(dir, a->btgt, a->h_dst, &a->whlist);
 +              if (unlikely(err))
-+                      pr_warning("failed removing whtmp dir %.*s (%d), "
-+                                 "ignored.\n", AuDLNPair(a->h_dst), err);
++                      pr_warn("failed removing whtmp dir %.*s (%d), "
++                              "ignored.\n", AuDLNPair(a->h_dst), err);
 +      } else {
 +              au_nhash_wh_free(&a->thargs->whlist);
 +              a->thargs->whlist = a->whlist;
@@ -17611,31 +18370,13 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +
 +              d = a->dst_dentry;
 +              au_set_h_dptr(d, a->btgt, NULL);
-+              err = au_lkup_neg(d, a->btgt);
++              err = au_lkup_neg(d, a->btgt, /*wh*/0);
 +              if (unlikely(err))
 +                      goto out_whtmp;
 +              a->dst_h_dentry = au_h_dptr(d, a->btgt);
 +      }
 +
-+      /* cpup src */
-+      if (a->dst_h_dentry->d_inode && a->src_bstart != a->btgt) {
-+              struct mutex *h_mtx = &a->src_h_dentry->d_inode->i_mutex;
-+              struct file *h_file;
-+
-+              mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
-+              AuDebugOn(au_dbstart(a->src_dentry) != a->src_bstart);
-+              h_file = au_h_open_pre(a->src_dentry, a->src_bstart);
-+              if (IS_ERR(h_file)) {
-+                      err = PTR_ERR(h_file);
-+                      h_file = NULL;
-+              } else
-+                      err = au_sio_cpup_simple(a->src_dentry, a->btgt, -1,
-+                                               !AuCpup_DTIME);
-+              mutex_unlock(h_mtx);
-+              au_h_open_post(a->src_dentry, a->src_bstart, h_file);
-+              if (unlikely(err))
-+                      goto out_whtmp;
-+      }
++      BUG_ON(a->dst_h_dentry->d_inode && a->src_bstart != a->btgt);
 +
 +      /* rename by vfs_rename or cpup */
 +      d = a->dst_dentry;
@@ -17887,13 +18628,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 + */
 +static void au_ren_unlock(struct au_ren_args *a)
 +{
-+      struct super_block *sb;
-+
-+      sb = a->dst_dentry->d_sb;
-+      if (au_ftest_ren(a->flags, MNT_WRITE))
-+              mnt_drop_write(a->br->br_mnt);
 +      vfsub_unlock_rename(a->src_h_parent, a->src_hdir,
 +                          a->dst_h_parent, a->dst_hdir);
++      if (au_ftest_ren(a->flags, MNT_WRITE))
++              vfsub_mnt_drop_write(au_br_mnt(a->br));
 +}
 +
 +static int au_ren_lock(struct au_ren_args *a)
@@ -17906,6 +18644,11 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      a->src_hdir = au_hi(a->src_dir, a->btgt);
 +      a->dst_h_parent = au_h_dptr(a->dst_parent, a->btgt);
 +      a->dst_hdir = au_hi(a->dst_dir, a->btgt);
++
++      err = vfsub_mnt_want_write(au_br_mnt(a->br));
++      if (unlikely(err))
++              goto out;
++      au_fset_ren(a->flags, MNT_WRITE);
 +      a->h_trap = vfsub_lock_rename(a->src_h_parent, a->src_hdir,
 +                                    a->dst_h_parent, a->dst_hdir);
 +      udba = au_opt_udba(a->src_dentry->d_sb);
@@ -17920,18 +18663,12 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              err = au_h_verify(a->dst_h_dentry, udba,
 +                                a->dst_h_parent->d_inode, a->dst_h_parent,
 +                                a->br);
-+      if (!err) {
-+              err = mnt_want_write(a->br->br_mnt);
-+              if (unlikely(err))
-+                      goto out_unlock;
-+              au_fset_ren(a->flags, MNT_WRITE);
++      if (!err)
 +              goto out; /* success */
-+      }
 +
 +      err = au_busy_or_stale();
-+
-+out_unlock:
 +      au_ren_unlock(a);
++
 +out:
 +      return err;
 +}
@@ -18184,6 +18921,15 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      } else if (unlikely(d_unhashed(a->dst_dentry)))
 +              goto out_unlock;
 +
++      /*
++       * is it possible?
++       * yes, it happend (in linux-3.3-rcN) but I don't know why.
++       * there may exist a problem somewhere else.
++       */
++      err = -EINVAL;
++      if (unlikely(a->dst_parent->d_inode == a->src_dentry->d_inode))
++              goto out_unlock;
++
 +      au_fset_ren(a->flags, ISSAMEDIR); /* temporary */
 +      di_write_lock_parent(a->dst_parent);
 +
@@ -18192,7 +18938,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      if (unlikely(err < 0))
 +              goto out_parent;
 +      a->br = au_sbr(a->dst_dentry->d_sb, a->btgt);
-+      a->h_path.mnt = a->br->br_mnt;
++      a->h_path.mnt = au_br_mnt(a->br);
 +
 +      /* are they available to be renamed */
 +      err = au_ren_may_dir(a);
@@ -18230,9 +18976,37 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      if (err)
 +              au_fset_ren(a->flags, WHSRC);
 +
++      /* cpup src */
++      if (a->src_bstart != a->btgt) {
++              struct au_pin pin;
++
++              err = au_pin(&pin, a->src_dentry, a->btgt,
++                           au_opt_udba(a->src_dentry->d_sb),
++                           AuPin_DI_LOCKED | AuPin_MNT_WRITE);
++              if (!err) {
++                      struct au_cp_generic cpg = {
++                              .dentry = a->src_dentry,
++                              .bdst   = a->btgt,
++                              .bsrc   = a->src_bstart,
++                              .len    = -1,
++                              .pin    = &pin,
++                              .flags  = AuCpup_DTIME | AuCpup_HOPEN
++                      };
++                      AuDebugOn(au_dbstart(a->src_dentry) != a->src_bstart);
++                      err = au_sio_cpup_simple(&cpg);
++                      au_unpin(&pin);
++              }
++              if (unlikely(err))
++                      goto out_children;
++              a->src_bstart = a->btgt;
++              a->src_h_dentry = au_h_dptr(a->src_dentry, a->btgt);
++              au_fset_ren(a->flags, WHSRC);
++      }
++
 +      /* lock them all */
 +      err = au_ren_lock(a);
 +      if (unlikely(err))
++              /* leave the copied-up one */
 +              goto out_children;
 +
 +      if (!au_opt_test(au_mntflags(a->dst_dir->i_sb), UDBA_NONE))
@@ -18294,11 +19068,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +}
 diff -urN /usr/share/empty/fs/aufs/Kconfig linux/fs/aufs/Kconfig
 --- /usr/share/empty/fs/aufs/Kconfig   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/Kconfig      2012-02-13 21:54:56.966438287 +0100
-@@ -0,0 +1,203 @@
++++ linux/fs/aufs/Kconfig      2013-07-06 13:20:47.736864659 +0200
+@@ -0,0 +1,202 @@
 +config AUFS_FS
 +      tristate "Aufs (Advanced multi layered unification filesystem) support"
-+      depends on EXPERIMENTAL
 +      help
 +      Aufs is a stackable unification filesystem such as Unionfs,
 +      which unifies several directories and provides a merged single
@@ -18501,10 +19274,10 @@ diff -urN /usr/share/empty/fs/aufs/Kconfig linux/fs/aufs/Kconfig
 +endif
 diff -urN /usr/share/empty/fs/aufs/loop.c linux/fs/aufs/loop.c
 --- /usr/share/empty/fs/aufs/loop.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/loop.c       2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,133 @@
++++ linux/fs/aufs/loop.c       2013-07-30 22:42:55.842946719 +0200
+@@ -0,0 +1,135 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -18556,12 +19329,14 @@ diff -urN /usr/share/empty/fs/aufs/loop.c linux/fs/aufs/loop.c
 +{
 +      int ret;
 +      struct task_struct *tsk = current;
++      char c, comm[sizeof(tsk->comm)];
 +
 +      ret = 0;
 +      if (tsk->flags & PF_KTHREAD) {
-+              const char c = tsk->comm[4];
++              get_task_comm(comm, tsk);
++              c = comm[4];
 +              ret = ('0' <= c && c <= '9'
-+                     && !strncmp(tsk->comm, "loop", 4));
++                     && !strncmp(comm, "loop", 4));
 +      }
 +
 +      return ret;
@@ -18612,8 +19387,8 @@ diff -urN /usr/share/empty/fs/aufs/loop.c linux/fs/aufs/loop.c
 +
 +pr:
 +      spin_unlock(&spin);
-+      pr_warning("you may want to try another patch for loopback file "
-+                 "on %s(0x%lx) branch\n", au_sbtype(h_sb), magic);
++      pr_warn("you may want to try another patch for loopback file "
++              "on %s(0x%lx) branch\n", au_sbtype(h_sb), magic);
 +}
 +
 +int au_loopback_init(void)
@@ -18638,10 +19413,10 @@ diff -urN /usr/share/empty/fs/aufs/loop.c linux/fs/aufs/loop.c
 +}
 diff -urN /usr/share/empty/fs/aufs/loop.h linux/fs/aufs/loop.h
 --- /usr/share/empty/fs/aufs/loop.h    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/loop.h       2012-02-13 21:54:56.969771692 +0100
++++ linux/fs/aufs/loop.h       2013-07-30 22:42:55.842946719 +0200
 @@ -0,0 +1,50 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -18692,7 +19467,7 @@ diff -urN /usr/share/empty/fs/aufs/loop.h linux/fs/aufs/loop.h
 +#endif /* __AUFS_LOOP_H__ */
 diff -urN /usr/share/empty/fs/aufs/magic.mk linux/fs/aufs/magic.mk
 --- /usr/share/empty/fs/aufs/magic.mk  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/magic.mk     2012-02-13 21:54:56.969771692 +0100
++++ linux/fs/aufs/magic.mk     2013-07-06 13:20:47.750198454 +0200
 @@ -0,0 +1,54 @@
 +
 +# defined in ${srctree}/fs/fuse/inode.c
@@ -18750,7 +19525,7 @@ diff -urN /usr/share/empty/fs/aufs/magic.mk linux/fs/aufs/magic.mk
 +endif
 diff -urN /usr/share/empty/fs/aufs/Makefile linux/fs/aufs/Makefile
 --- /usr/share/empty/fs/aufs/Makefile  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/Makefile     2012-02-13 21:54:56.966438287 +0100
++++ linux/fs/aufs/Makefile     2013-08-23 23:59:39.631583456 +0200
 @@ -0,0 +1,42 @@
 +
 +include ${src}/magic.mk
@@ -18778,7 +19553,7 @@ diff -urN /usr/share/empty/fs/aufs/Makefile linux/fs/aufs/Makefile
 +      finfo.o file.o f_op.o \
 +      dir.o vdir.o \
 +      iinfo.o inode.o i_op.o i_op_add.o i_op_del.o i_op_ren.o \
-+      ioctl.o
++      mvdown.o ioctl.o
 +
 +# all are boolean
 +aufs-$(CONFIG_PROC_FS) += procfs.o plink.o
@@ -18796,10 +19571,10 @@ diff -urN /usr/share/empty/fs/aufs/Makefile linux/fs/aufs/Makefile
 +aufs-$(CONFIG_AUFS_MAGIC_SYSRQ) += sysrq.o
 diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 --- /usr/share/empty/fs/aufs/module.c  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/module.c     2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,195 @@
++++ linux/fs/aufs/module.c     2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,203 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -18865,8 +19640,15 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +{
 +      int i;
 +
-+      /* including AuCache_HNOTIFY */
-+      for (i = 0; i < AuCache_Last; i++)
++      /*
++       * Make sure all delayed rcu free inodes are flushed before we
++       * destroy cache.
++       */
++      rcu_barrier();
++
++      /* excluding AuCache_HNOTIFY */
++      BUILD_BUG_ON(AuCache_HNOTIFY + 1 != AuCache_Last);
++      for (i = 0; i < AuCache_HNOTIFY; i++)
 +              if (au_cachep[i]) {
 +                      kmem_cache_destroy(au_cachep[i]);
 +                      au_cachep[i] = NULL;
@@ -18896,6 +19678,7 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +MODULE_DESCRIPTION(AUFS_NAME
 +      " -- Advanced multi layered unification filesystem");
 +MODULE_VERSION(AUFS_VERSION);
++MODULE_ALIAS_FS(AUFS_NAME);
 +
 +/* this module parameter has no meaning when SYSFS is disabled */
 +int sysaufs_brs = 1;
@@ -18995,10 +19778,119 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +module_exit(aufs_exit);
 diff -urN /usr/share/empty/fs/aufs/module.h linux/fs/aufs/module.h
 --- /usr/share/empty/fs/aufs/module.h  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/module.h     2012-02-13 21:54:56.969771692 +0100
-@@ -0,0 +1,107 @@
++++ linux/fs/aufs/module.h     2013-07-06 13:20:47.750198454 +0200
+@@ -0,0 +1,105 @@
++/*
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
++ *
++ * This program, aufs is free software; you can redistribute it and/or modify
++ * it under the terms of the GNU General Public License as published by
++ * the Free Software Foundation; either version 2 of the License, or
++ * (at your option) any later version.
++ *
++ * This program is distributed in the hope that it will be useful,
++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ * GNU General Public License for more details.
++ *
++ * You should have received a copy of the GNU General Public License
++ * along with this program; if not, write to the Free Software
++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
++ */
++
++/*
++ * module initialization and module-global
++ */
++
++#ifndef __AUFS_MODULE_H__
++#define __AUFS_MODULE_H__
++
++#ifdef __KERNEL__
++
++#include <linux/slab.h>
++
++struct path;
++struct seq_file;
++
++/* module parameters */
++extern int sysaufs_brs;
++
++/* ---------------------------------------------------------------------- */
++
++extern int au_dir_roflags;
++
++enum {
++      AuLcNonDir_FIINFO,
++      AuLcNonDir_DIINFO,
++      AuLcNonDir_IIINFO,
++
++      AuLcDir_FIINFO,
++      AuLcDir_DIINFO,
++      AuLcDir_IIINFO,
++
++      AuLcSymlink_DIINFO,
++      AuLcSymlink_IIINFO,
++
++      AuLcKey_Last
++};
++extern struct lock_class_key au_lc_key[AuLcKey_Last];
++
++void *au_kzrealloc(void *p, unsigned int nused, unsigned int new_sz, gfp_t gfp);
++int au_seq_path(struct seq_file *seq, struct path *path);
++
++#ifdef CONFIG_PROC_FS
++/* procfs.c */
++int __init au_procfs_init(void);
++void au_procfs_fin(void);
++#else
++AuStubInt0(au_procfs_init, void);
++AuStubVoid(au_procfs_fin, void);
++#endif
++
++/* ---------------------------------------------------------------------- */
++
++/* kmem cache */
++enum {
++      AuCache_DINFO,
++      AuCache_ICNTNR,
++      AuCache_FINFO,
++      AuCache_VDIR,
++      AuCache_DEHSTR,
++      AuCache_HNOTIFY, /* must be last */
++      AuCache_Last
++};
++
++#define AuCacheFlags          (SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD)
++#define AuCache(type)         KMEM_CACHE(type, AuCacheFlags)
++#define AuCacheCtor(type, ctor)       \
++      kmem_cache_create(#type, sizeof(struct type), \
++                        __alignof__(struct type), AuCacheFlags, ctor)
++
++extern struct kmem_cache *au_cachep[];
++
++#define AuCacheFuncs(name, index) \
++static inline struct au_##name *au_cache_alloc_##name(void) \
++{ return kmem_cache_alloc(au_cachep[AuCache_##index], GFP_NOFS); } \
++static inline void au_cache_free_##name(struct au_##name *p) \
++{ kmem_cache_free(au_cachep[AuCache_##index], p); }
++
++AuCacheFuncs(dinfo, DINFO);
++AuCacheFuncs(icntnr, ICNTNR);
++AuCacheFuncs(finfo, FINFO);
++AuCacheFuncs(vdir, VDIR);
++AuCacheFuncs(vdir_dehstr, DEHSTR);
++#ifdef CONFIG_AUFS_HNOTIFY
++AuCacheFuncs(hnotify, HNOTIFY);
++#endif
++
++#endif /* __KERNEL__ */
++#endif /* __AUFS_MODULE_H__ */
+diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
+--- /usr/share/empty/fs/aufs/mvdown.c  1970-01-01 01:00:00.000000000 +0100
++++ linux/fs/aufs/mvdown.c     2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,533 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2011-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -19015,101 +19907,527 @@ diff -urN /usr/share/empty/fs/aufs/module.h linux/fs/aufs/module.h
 + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 + */
 +
-+/*
-+ * module initialization and module-global
-+ */
++#include "aufs.h"
++
++enum {
++      AUFS_MVDOWN_SRC,
++      AUFS_MVDOWN_DST,
++      AUFS_MVDOWN_NARRAY
++};
++
++struct au_mvd_args {
++      struct {
++              aufs_bindex_t bindex;
++              struct super_block *h_sb;
++              struct dentry *h_parent;
++              struct au_hinode *hdir;
++              struct inode *h_dir;
++      } info[AUFS_MVDOWN_NARRAY];
++
++      struct aufs_mvdown mvdown;
++      struct dentry *dentry, *parent;
++      struct inode *inode, *dir;
++      struct super_block *sb;
++      aufs_bindex_t bopq, bwh, bfound;
++      unsigned char rename_lock;
++      struct au_pin pin;
++};
++
++#define mvd_bsrc              info[AUFS_MVDOWN_SRC].bindex
++#define mvd_h_src_sb          info[AUFS_MVDOWN_SRC].h_sb
++#define mvd_h_src_parent      info[AUFS_MVDOWN_SRC].h_parent
++#define mvd_hdir_src          info[AUFS_MVDOWN_SRC].hdir
++#define mvd_h_src_dir         info[AUFS_MVDOWN_SRC].h_dir
++
++#define mvd_bdst              info[AUFS_MVDOWN_DST].bindex
++#define mvd_h_dst_sb          info[AUFS_MVDOWN_DST].h_sb
++#define mvd_h_dst_parent      info[AUFS_MVDOWN_DST].h_parent
++#define mvd_hdir_dst          info[AUFS_MVDOWN_DST].hdir
++#define mvd_h_dst_dir         info[AUFS_MVDOWN_DST].h_dir
++
++#define AU_MVD_PR(flag, ...) do {                     \
++              if (flag)                               \
++                      pr_err(__VA_ARGS__);            \
++      } while (0)
++
++/* make the parent dir on bdst */
++static int au_do_mkdir(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
++
++      err = 0;
++      a->mvd_hdir_src = au_hi(a->dir, a->mvd_bsrc);
++      a->mvd_hdir_dst = au_hi(a->dir, a->mvd_bdst);
++      a->mvd_h_src_parent = au_h_dptr(a->parent, a->mvd_bsrc);
++      a->mvd_h_dst_parent = NULL;
++      if (au_dbend(a->parent) >= a->mvd_bdst)
++              a->mvd_h_dst_parent = au_h_dptr(a->parent, a->mvd_bdst);
++      if (!a->mvd_h_dst_parent) {
++              err = au_cpdown_dirs(a->dentry, a->mvd_bdst);
++              if (unlikely(err)) {
++                      AU_MVD_PR(verbose, "cpdown_dirs failed\n");
++                      goto out;
++              }
++              a->mvd_h_dst_parent = au_h_dptr(a->parent, a->mvd_bdst);
++      }
++
++out:
++      AuTraceErr(err);
++      return err;
++}
++
++/* lock them all */
++static int au_do_lock(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
++      struct dentry *h_trap;
++
++      a->mvd_h_src_sb = au_sbr_sb(a->sb, a->mvd_bsrc);
++      a->mvd_h_dst_sb = au_sbr_sb(a->sb, a->mvd_bdst);
++      if (a->mvd_h_src_sb != a->mvd_h_dst_sb) {
++              a->rename_lock = 0;
++              err = au_pin(&a->pin, a->dentry, a->mvd_bdst, au_opt_udba(a->sb),
++                           AuPin_MNT_WRITE | AuPin_DI_LOCKED);
++              if (!err) {
++                      a->mvd_h_src_dir = a->mvd_h_src_parent->d_inode;
++                      mutex_lock_nested(&a->mvd_h_src_dir->i_mutex,
++                                        AuLsc_I_PARENT3);
++              } else
++                      AU_MVD_PR(verbose, "pin failed\n");
++              goto out;
++      }
++
++      err = 0;
++      a->rename_lock = 1;
++      h_trap = vfsub_lock_rename(a->mvd_h_src_parent, a->mvd_hdir_src,
++                                 a->mvd_h_dst_parent, a->mvd_hdir_dst);
++      if (h_trap) {
++              err = (h_trap != a->mvd_h_src_parent);
++              if (err)
++                      err = (h_trap != a->mvd_h_dst_parent);
++      }
++      BUG_ON(err); /* it should never happen */
++
++out:
++      AuTraceErr(err);
++      return err;
++}
++
++static void au_do_unlock(const unsigned char verbose, struct au_mvd_args *a)
++{
++      if (!a->rename_lock) {
++              mutex_unlock(&a->mvd_h_src_dir->i_mutex);
++              au_unpin(&a->pin);
++      } else
++              vfsub_unlock_rename(a->mvd_h_src_parent, a->mvd_hdir_src,
++                                  a->mvd_h_dst_parent, a->mvd_hdir_dst);
++}
++
++/* copy-down the file */
++static int au_do_cpdown(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
++      struct au_cp_generic cpg = {
++              .dentry = a->dentry,
++              .bdst   = a->mvd_bdst,
++              .bsrc   = a->mvd_bsrc,
++              .len    = -1,
++              .pin    = &a->pin,
++              .flags  = AuCpup_DTIME | AuCpup_HOPEN
++      };
++
++      AuDbg("b%d, b%d\n", cpg.bsrc, cpg.bdst);
++      err = au_sio_cpdown_simple(&cpg);
++      if (unlikely(err))
++              AU_MVD_PR(verbose, "cpdown failed\n");
++
++      AuTraceErr(err);
++      return err;
++}
++
++/*
++ * unlink the whiteout on bdst if exist which may be created by UDBA while we
++ * were sleeping
++ */
++static int au_do_unlink_wh(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
++      struct path h_path;
++      struct au_branch *br;
++
++      br = au_sbr(a->sb, a->mvd_bdst);
++      h_path.dentry = au_wh_lkup(a->mvd_h_dst_parent, &a->dentry->d_name, br);
++      err = PTR_ERR(h_path.dentry);
++      if (IS_ERR(h_path.dentry)) {
++              AU_MVD_PR(verbose, "wh_lkup failed\n");
++              goto out;
++      }
++
++      err = 0;
++      if (h_path.dentry->d_inode) {
++              h_path.mnt = au_br_mnt(br);
++              err = vfsub_unlink(a->mvd_h_dst_parent->d_inode, &h_path,
++                                 /*force*/0);
++              if (unlikely(err))
++                      AU_MVD_PR(verbose, "wh_unlink failed\n");
++      }
++      dput(h_path.dentry);
++
++out:
++      AuTraceErr(err);
++      return err;
++}
++
++/*
++ * unlink the topmost h_dentry
++ * Note: the target file MAY be modified by UDBA between this mutex_unlock() and
++ *    mutex_lock() in vfs_unlink(). in this case, such changes may be lost.
++ */
++static int au_do_unlink(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
++      struct path h_path;
++
++      h_path.mnt = au_sbr_mnt(a->sb, a->mvd_bsrc);
++      h_path.dentry = au_h_dptr(a->dentry, a->mvd_bsrc);
++      err = vfsub_unlink(a->mvd_h_src_dir, &h_path, /*force*/0);
++      if (unlikely(err))
++              AU_MVD_PR(verbose, "unlink failed\n");
++
++      AuTraceErr(err);
++      return err;
++}
++
++/*
++ * copy-down the file and unlink the bsrc file.
++ * - unlink the bdst whout if exist
++ * - copy-down the file (with whtmp name and rename)
++ * - unlink the bsrc file
++ */
++static int au_do_mvdown(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
++
++      err = au_do_mkdir(verbose, a);
++      if (!err)
++              err = au_do_lock(verbose, a);
++      if (unlikely(err))
++              goto out;
++
++      /*
++       * do not revert the activities we made on bdst since they should be
++       * harmless in aufs.
++       */
++
++      err = au_do_cpdown(verbose, a);
++      if (!err)
++              err = au_do_unlink_wh(verbose, a);
++      if (!err)
++              err = au_do_unlink(verbose, a);
++      if (unlikely(err))
++              goto out_unlock;
++
++      /* maintain internal array */
++      au_set_h_dptr(a->dentry, a->mvd_bsrc, NULL);
++      au_set_dbstart(a->dentry, a->mvd_bdst);
++      if (au_dbend(a->dentry) < a->mvd_bdst)
++              au_set_dbend(a->dentry, a->mvd_bdst);
++      au_set_h_iptr(a->inode, a->mvd_bsrc, NULL, /*flags*/0);
++      au_set_ibstart(a->inode, a->mvd_bdst);
++      if (au_ibend(a->inode) < a->mvd_bdst)
++              au_set_ibend(a->inode, a->mvd_bdst);
++
++out_unlock:
++      au_do_unlock(verbose, a);
++out:
++      AuTraceErr(err);
++      return err;
++}
++
++/* ---------------------------------------------------------------------- */
++
++static int find_lower_writable(struct super_block *sb, aufs_bindex_t bindex)
++{
++      aufs_bindex_t bend;
++      struct au_branch *br;
++
++      bend = au_sbend(sb);
++      for (bindex++; bindex <= bend; bindex++) {
++              br = au_sbr(sb, bindex);
++              if (!au_br_rdonly(br))
++                      return bindex;
++      }
++
++      return -1;
++}
++
++/* make sure the file is idle */
++static int au_mvd_args_busy(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err, plinked;
++      struct inode *h_src_inode;
++
++      err = 0;
++      h_src_inode = au_h_iptr(a->inode, a->mvd_bsrc);
++      plinked = !!au_opt_test(au_mntflags(a->sb), PLINK);
++      if (au_dbstart(a->dentry) == a->mvd_bsrc
++          && a->dentry->d_count == 1
++          && atomic_read(&a->inode->i_count) == 1
++          /* && h_src_inode->i_nlink == 1 */
++          && (!plinked || !au_plink_test(a->inode))
++          && a->inode->i_nlink == 1)
++              goto out;
++
++      err = -EBUSY;
++      AU_MVD_PR(verbose,
++                "b%d, d{b%d, c%u?}, i{c%d?, l%u}, hi{l%u}, p{%d, %d}\n",
++                a->mvd_bsrc, au_dbstart(a->dentry), a->dentry->d_count,
++                atomic_read(&a->inode->i_count), a->inode->i_nlink,
++                h_src_inode->i_nlink,
++                plinked, plinked ? au_plink_test(a->inode) : 0);
++
++out:
++      AuTraceErr(err);
++      return err;
++}
++
++/* make sure the parent dir is fine */
++static int au_mvd_args_parent(const unsigned char verbose,
++                            struct au_mvd_args *a)
++{
++      int err;
++      aufs_bindex_t bindex;
++
++      err = 0;
++      if (unlikely(au_alive_dir(a->parent))) {
++              err = -ENOENT;
++              AU_MVD_PR(verbose, "parent dir is dead\n");
++              goto out;
++      }
++
++      a->bopq = au_dbdiropq(a->parent);
++      bindex = au_wbr_nonopq(a->dentry, a->mvd_bdst);
++      AuDbg("b%d\n", bindex);
++      if (unlikely((bindex >= 0 && bindex < a->mvd_bdst)
++                   || (a->bopq != -1 && a->bopq < a->mvd_bdst))) {
++              err = -EINVAL;
++              AU_MVD_PR(verbose, "parent dir is opaque b%d, b%d\n",
++                        a->bopq, a->mvd_bdst);
++      }
++
++out:
++      AuTraceErr(err);
++      return err;
++}
++
++static int au_mvd_args_intermediate(const unsigned char verbose,
++                                  struct au_mvd_args *a)
++{
++      int err;
++      struct au_dinfo *dinfo, *tmp;
++
++      /* lookup the next lower positive entry */
++      err = -ENOMEM;
++      tmp = au_di_alloc(a->sb, AuLsc_DI_TMP);
++      if (unlikely(!tmp))
++              goto out;
 +
-+#ifndef __AUFS_MODULE_H__
-+#define __AUFS_MODULE_H__
++      a->bfound = -1;
++      a->bwh = -1;
++      dinfo = au_di(a->dentry);
++      au_di_cp(tmp, dinfo);
++      au_di_swap(tmp, dinfo);
 +
-+#ifdef __KERNEL__
++      /* returns the number of positive dentries */
++      err = au_lkup_dentry(a->dentry, a->mvd_bsrc + 1, /*type*/0);
++      if (!err)
++              a->bwh = au_dbwh(a->dentry);
++      else if (err > 0)
++              a->bfound = au_dbstart(a->dentry);
 +
-+#include <linux/slab.h>
++      au_di_swap(tmp, dinfo);
++      au_rw_write_unlock(&tmp->di_rwsem);
++      au_di_free(tmp);
++      if (unlikely(err < 0))
++              AU_MVD_PR(verbose, "failed look-up lower\n");
 +
-+struct path;
-+struct seq_file;
++      /*
++       * here, we have these cases.
++       * bfound == -1
++       *      no positive dentry under bsrc. there are more sub-cases.
++       *      bwh < 0
++       *              there no whiteout, we can safely move-down.
++       *      bwh <= bsrc
++       *              impossible
++       *      bsrc < bwh && bwh < bdst
++       *              there is a whiteout on RO branch. cannot proceed.
++       *      bwh == bdst
++       *              there is a whiteout on the RW target branch. it should
++       *              be removed.
++       *      bdst < bwh
++       *              there is a whiteout somewhere unrelated branch.
++       * -1 < bfound && bfound <= bsrc
++       *      impossible.
++       * bfound < bdst
++       *      found, but it is on RO branch between bsrc and bdst. cannot
++       *      proceed.
++       * bfound == bdst
++       *      found, replace it if AUFS_MVDOWN_FORCE is set. otherwise return
++       *      error.
++       * bdst < bfound
++       *      found, after we create the file on bdst, it will be hidden.
++       */
 +
-+/* module parameters */
-+extern int sysaufs_brs;
++      AuDebugOn(a->bfound == -1
++                && a->bwh != -1
++                && a->bwh <= a->mvd_bsrc);
++      AuDebugOn(-1 < a->bfound
++                && a->bfound <= a->mvd_bsrc);
 +
-+/* ---------------------------------------------------------------------- */
++      err = -EINVAL;
++      if (a->bfound == -1
++          && a->mvd_bsrc < a->bwh
++          && a->bwh != -1
++          && a->bwh < a->mvd_bdst) {
++              AU_MVD_PR(verbose, "bsrc %d, bdst %d, bfound %d, bwh %d\n",
++                        a->mvd_bsrc, a->mvd_bdst, a->bfound, a->bwh);
++              goto out;
++      } else if (a->bfound != -1 && a->bfound < a->mvd_bdst) {
++              AU_MVD_PR(verbose, "bdst %d, bfound %d\n",
++                        a->mvd_bdst, a->bfound);
++              goto out;
++      }
 +
-+extern int au_dir_roflags;
++      err = 0; /* success */
 +
-+enum {
-+      AuLcNonDir_FIINFO,
-+      AuLcNonDir_DIINFO,
-+      AuLcNonDir_IIINFO,
++out:
++      AuTraceErr(err);
++      return err;
++}
 +
-+      AuLcDir_FIINFO,
-+      AuLcDir_DIINFO,
-+      AuLcDir_IIINFO,
++static int au_mvd_args_exist(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
 +
-+      AuLcSymlink_DIINFO,
-+      AuLcSymlink_IIINFO,
++      err = (a->bfound != a->mvd_bdst) ? 0 : -EEXIST;
++      AuTraceErr(err);
++      return err;
++}
 +
-+      AuLcKey_Last
-+};
-+extern struct lock_class_key au_lc_key[AuLcKey_Last];
++static int au_mvd_args(const unsigned char verbose, struct au_mvd_args *a)
++{
++      int err;
++      struct au_branch *br;
 +
-+void *au_kzrealloc(void *p, unsigned int nused, unsigned int new_sz, gfp_t gfp);
-+int au_seq_path(struct seq_file *seq, struct path *path);
++      err = -EISDIR;
++      if (unlikely(S_ISDIR(a->inode->i_mode)))
++              goto out;
 +
-+#ifdef CONFIG_PROC_FS
-+/* procfs.c */
-+int __init au_procfs_init(void);
-+void au_procfs_fin(void);
-+#else
-+AuStubInt0(au_procfs_init, void);
-+AuStubVoid(au_procfs_fin, void);
-+#endif
++      err = -EINVAL;
++      a->mvd_bsrc = au_ibstart(a->inode);
++      if (unlikely(a->mvd_bsrc == au_sbend(a->sb))) {
++              AU_MVD_PR(verbose, "on the bottom\n");
++              goto out;
++      }
++      br = au_sbr(a->sb, a->mvd_bsrc);
++      err = au_br_rdonly(br);
++      if (unlikely(err))
++              goto out;
 +
-+/* ---------------------------------------------------------------------- */
++      err = -EINVAL;
++      a->mvd_bdst = find_lower_writable(a->sb, a->mvd_bsrc);
++      if (unlikely(a->mvd_bdst < 0)) {
++              AU_MVD_PR(verbose, "no writable lower branch\n");
++              goto out;
++      }
 +
-+/* kmem cache */
-+enum {
-+      AuCache_DINFO,
-+      AuCache_ICNTNR,
-+      AuCache_FINFO,
-+      AuCache_VDIR,
-+      AuCache_DEHSTR,
-+#ifdef CONFIG_AUFS_HNOTIFY
-+      AuCache_HNOTIFY,
-+#endif
-+      AuCache_Last
-+};
++      err = au_mvd_args_busy(verbose, a);
++      if (!err)
++              err = au_mvd_args_parent(verbose, a);
++      if (!err)
++              err = au_mvd_args_intermediate(verbose, a);
++      if (!err)
++              err = au_mvd_args_exist(verbose, a);
++      if (!err)
++              AuDbg("b%d, b%d\n", a->mvd_bsrc, a->mvd_bdst);
 +
-+#define AuCacheFlags          (SLAB_RECLAIM_ACCOUNT | SLAB_MEM_SPREAD)
-+#define AuCache(type)         KMEM_CACHE(type, AuCacheFlags)
-+#define AuCacheCtor(type, ctor)       \
-+      kmem_cache_create(#type, sizeof(struct type), \
-+                        __alignof__(struct type), AuCacheFlags, ctor)
++out:
++      AuTraceErr(err);
++      return err;
++}
 +
-+extern struct kmem_cache *au_cachep[];
++int au_mvdown(struct dentry *dentry, struct aufs_mvdown __user *uarg)
++{
++      int err;
++      unsigned char verbose;
++      struct au_mvd_args args = {
++              .dentry = dentry,
++              .inode  = dentry->d_inode,
++              .sb     = dentry->d_sb
++      };
 +
-+#define AuCacheFuncs(name, index) \
-+static inline struct au_##name *au_cache_alloc_##name(void) \
-+{ return kmem_cache_alloc(au_cachep[AuCache_##index], GFP_NOFS); } \
-+static inline void au_cache_free_##name(struct au_##name *p) \
-+{ kmem_cache_free(au_cachep[AuCache_##index], p); }
++      err = -EPERM;
++      if (unlikely(!capable(CAP_SYS_ADMIN)))
++              goto out;
 +
-+AuCacheFuncs(dinfo, DINFO);
-+AuCacheFuncs(icntnr, ICNTNR);
-+AuCacheFuncs(finfo, FINFO);
-+AuCacheFuncs(vdir, VDIR);
-+AuCacheFuncs(vdir_dehstr, DEHSTR);
-+#ifdef CONFIG_AUFS_HNOTIFY
-+AuCacheFuncs(hnotify, HNOTIFY);
-+#endif
++      err = copy_from_user(&args.mvdown, uarg, sizeof(args.mvdown));
++      if (unlikely(err)) {
++              err = -EFAULT;
++              goto out;
++      }
++      AuDbg("flags 0x%x\n", args.mvdown.flags);
 +
-+#endif /* __KERNEL__ */
-+#endif /* __AUFS_MODULE_H__ */
++      err = -EBUSY;
++      verbose = !!(args.mvdown.flags & AUFS_MVDOWN_VERBOSE);
++      args.parent = dget_parent(dentry);
++      args.dir = args.parent->d_inode;
++      mutex_lock_nested(&args.dir->i_mutex, I_MUTEX_PARENT);
++      dput(args.parent);
++      if (unlikely(args.parent != dentry->d_parent)) {
++              AU_MVD_PR(verbose, "parent dir is moved\n");
++              goto out_dir;
++      }
++
++      mutex_lock_nested(&args.inode->i_mutex, I_MUTEX_CHILD);
++      err = aufs_read_lock(dentry, AuLock_DW | AuLock_FLUSH);
++      if (unlikely(err))
++              goto out_inode;
++
++      di_write_lock_parent(args.parent);
++      err = au_mvd_args(verbose, &args);
++      if (unlikely(err))
++              goto out_parent;
++
++      AuDbgDentry(dentry);
++      AuDbgInode(args.inode);
++      err = au_do_mvdown(verbose, &args);
++      if (unlikely(err))
++              goto out_parent;
++      AuDbgDentry(dentry);
++      AuDbgInode(args.inode);
++
++      au_cpup_attr_timesizes(args.dir);
++      au_cpup_attr_timesizes(args.inode);
++      au_cpup_igen(args.inode, au_h_iptr(args.inode, args.mvd_bdst));
++      /* au_digen_dec(dentry); */
++
++out_parent:
++      di_write_unlock(args.parent);
++      aufs_read_unlock(dentry, AuLock_DW);
++out_inode:
++      mutex_unlock(&args.inode->i_mutex);
++out_dir:
++      mutex_unlock(&args.dir->i_mutex);
++out:
++      AuTraceErr(err);
++      return err;
++}
 diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 --- /usr/share/empty/fs/aufs/opts.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/opts.c       2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,1677 @@
++++ linux/fs/aufs/opts.c       2013-07-06 13:20:47.753531903 +0200
+@@ -0,0 +1,1697 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -19296,17 +20614,16 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      {0, NULL}
 +};
 +
-+static match_table_t brrattr = {
++static match_table_t brattr = {
++      {AuBrAttr_UNPIN, AUFS_BRATTR_UNPIN},
 +      {AuBrRAttr_WH, AUFS_BRRATTR_WH},
-+      {0, NULL}
-+};
-+
-+static match_table_t brwattr = {
 +      {AuBrWAttr_NoLinkWH, AUFS_BRWATTR_NLWH},
 +      {0, NULL}
 +};
 +
-+#define AuBrStr_LONGEST       AUFS_BRPERM_RW "+" AUFS_BRWATTR_NLWH
++#define AuBrStr_LONGEST       AUFS_BRPERM_RW \
++      "+" AUFS_BRATTR_UNPIN \
++      "+" AUFS_BRWATTR_NLWH
 +
 +static int br_attr_val(char *str, match_table_t table, substring_t args[])
 +{
@@ -19324,7 +20641,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +              else {
 +                      if (p)
 +                              *p = '+';
-+                      pr_warning("ignored branch attribute %s\n", str);
++                      pr_warn("ignored branch attribute %s\n", str);
 +                      break;
 +              }
 +              if (p)
@@ -19337,7 +20654,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +static int noinline_for_stack br_perm_val(char *perm)
 +{
 +      int val;
-+      char *p;
++      char *p, *q;
 +      substring_t args[MAX_OPT_ARGS];
 +
 +      p = strchr(perm, '+');
@@ -19347,20 +20664,40 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      if (!val) {
 +              if (p)
 +                      *p = '+';
-+              pr_warning("ignored branch permission %s\n", perm);
++              pr_warn("ignored branch permission %s\n", perm);
 +              val = AuBrPerm_RO;
 +              goto out;
 +      }
 +      if (!p)
 +              goto out;
 +
-+      switch (val) {
++      p++;
++      while (1) {
++              q = strchr(p, '+');
++              if (q)
++                      *q = 0;
++              val |= br_attr_val(p, brattr, args);
++              if (q) {
++                      *q = '+';
++                      p = q + 1;
++              } else
++                      break;
++      }
++      switch (val & AuBrPerm_Mask) {
 +      case AuBrPerm_RO:
 +      case AuBrPerm_RR:
-+              val |= br_attr_val(p + 1, brrattr, args);
++              if (unlikely(val & AuBrWAttr_NoLinkWH)) {
++                      pr_warn("ignored branch attribute %s\n",
++                              AUFS_BRWATTR_NLWH);
++                      val &= ~AuBrWAttr_NoLinkWH;
++              }
 +              break;
 +      case AuBrPerm_RW:
-+              val |= br_attr_val(p + 1, brwattr, args);
++              if (unlikely(val & AuBrRAttr_WH)) {
++                      pr_warn("ignored branch attribute %s\n",
++                              AUFS_BRRATTR_WH);
++                      val &= ~AuBrRAttr_WH;
++              }
 +              break;
 +      }
 +
@@ -19403,6 +20740,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +              AuDebugOn(1);
 +      }
 +
++      AppendAttr(AuBrAttr_UNPIN, AUFS_BRATTR_UNPIN);
 +      AppendAttr(AuBrRAttr_WH, AUFS_BRRATTR_WH);
 +      AppendAttr(AuBrWAttr_NoLinkWH, AUFS_BRWATTR_NLWH);
 +
@@ -20233,7 +21571,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                      break;
 +
 +              case Opt_ignore:
-+                      pr_warning("ignored %s\n", opt_str);
++                      pr_warn("ignored %s\n", opt_str);
 +                      /*FALLTHROUGH*/
 +              case Opt_ignore_silent:
 +                      skipped = 1;
@@ -20569,14 +21907,14 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +
 +      if (!(sb_flags & MS_RDONLY)) {
 +              if (unlikely(!au_br_writable(au_sbr_perm(sb, 0))))
-+                      pr_warning("first branch should be rw\n");
++                      pr_warn("first branch should be rw\n");
 +              if (unlikely(au_opt_test(sbinfo->si_mntflags, SHWH)))
-+                      pr_warning("shwh should be used with ro\n");
++                      pr_warn("shwh should be used with ro\n");
 +      }
 +
 +      if (au_opt_test((sbinfo->si_mntflags | pending), UDBA_HNOTIFY)
 +          && !au_opt_test(sbinfo->si_mntflags, XINO))
-+              pr_warning("udba=*notify requires xino\n");
++              pr_warn("udba=*notify requires xino\n");
 +
 +      err = 0;
 +      root = sb->s_root;
@@ -20628,7 +21966,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +              au_hn_imtx_lock_nested(hdir, AuLsc_I_PARENT);
 +              if (wbr)
 +                      wbr_wh_write_lock(wbr);
-+              err = au_wh_init(au_h_dptr(root, bindex), br, sb);
++              err = au_wh_init(br, sb);
 +              if (wbr)
 +                      wbr_wh_write_unlock(wbr);
 +              au_hn_imtx_unlock(hdir);
@@ -20787,10 +22125,10 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +}
 diff -urN /usr/share/empty/fs/aufs/opts.h linux/fs/aufs/opts.h
 --- /usr/share/empty/fs/aufs/opts.h    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/opts.h       2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/opts.h       2013-07-06 13:20:47.753531903 +0200
 @@ -0,0 +1,209 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -21000,10 +22338,10 @@ diff -urN /usr/share/empty/fs/aufs/opts.h linux/fs/aufs/opts.h
 +#endif /* __AUFS_OPTS_H__ */
 diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 --- /usr/share/empty/fs/aufs/plink.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/plink.c      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,515 @@
++++ linux/fs/aufs/plink.c      2013-07-06 13:20:47.753531903 +0200
+@@ -0,0 +1,520 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -21123,19 +22461,12 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +
 +/* ---------------------------------------------------------------------- */
 +
-+struct pseudo_link {
-+      union {
-+              struct list_head list;
-+              struct rcu_head rcu;
-+      };
-+      struct inode *inode;
-+};
-+
 +#ifdef CONFIG_AUFS_DEBUG
 +void au_plink_list(struct super_block *sb)
 +{
++      int i;
 +      struct au_sbinfo *sbinfo;
-+      struct list_head *plink_list;
++      struct hlist_head *plink_hlist;
 +      struct pseudo_link *plink;
 +
 +      SiMustAnyLock(sb);
@@ -21144,20 +22475,22 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK));
 +      AuDebugOn(au_plink_maint(sb, AuLock_NOPLM));
 +
-+      plink_list = &sbinfo->si_plink.head;
-+      rcu_read_lock();
-+      list_for_each_entry_rcu(plink, plink_list, list)
-+              AuDbg("%lu\n", plink->inode->i_ino);
-+      rcu_read_unlock();
++      for (i = 0; i < AuPlink_NHASH; i++) {
++              plink_hlist = &sbinfo->si_plink[i].head;
++              rcu_read_lock();
++              hlist_for_each_entry_rcu(plink, plink_hlist, hlist)
++                      AuDbg("%lu\n", plink->inode->i_ino);
++              rcu_read_unlock();
++      }
 +}
 +#endif
 +
 +/* is the inode pseudo-linked? */
 +int au_plink_test(struct inode *inode)
 +{
-+      int found;
++      int found, i;
 +      struct au_sbinfo *sbinfo;
-+      struct list_head *plink_list;
++      struct hlist_head *plink_hlist;
 +      struct pseudo_link *plink;
 +
 +      sbinfo = au_sbi(inode->i_sb);
@@ -21166,9 +22499,10 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      AuDebugOn(au_plink_maint(inode->i_sb, AuLock_NOPLM));
 +
 +      found = 0;
-+      plink_list = &sbinfo->si_plink.head;
++      i = au_plink_hash(inode->i_ino);
++      plink_hlist = &sbinfo->si_plink[i].head;
 +      rcu_read_lock();
-+      list_for_each_entry_rcu(plink, plink_list, list)
++      hlist_for_each_entry_rcu(plink, plink_hlist, hlist)
 +              if (plink->inode == inode) {
 +                      found = 1;
 +                      break;
@@ -21213,7 +22547,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +
 +      h_mtx = &h_parent->d_inode->i_mutex;
 +      mutex_lock_nested(h_mtx, AuLsc_I_CHILD2);
-+      h_dentry = au_lkup_one(tgtname, h_parent, br, /*nd*/NULL);
++      h_dentry = vfsub_lkup_one(tgtname, h_parent);
 +      mutex_unlock(h_mtx);
 +      return h_dentry;
 +}
@@ -21232,9 +22566,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      struct inode *h_dir;
 +      int wkq_err;
 +      char a[PLINK_NAME_LEN];
-+      struct qstr tgtname = {
-+              .name   = a
-+      };
++      struct qstr tgtname = QSTR_INIT(a, 0);
 +
 +      AuDebugOn(au_plink_maint(inode->i_sb, AuLock_NOPLM));
 +
@@ -21243,7 +22575,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      h_dir = h_parent->d_inode;
 +      tgtname.len = plink_name(a, sizeof(a), inode, bindex);
 +
-+      if (current_fsuid()) {
++      if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID)) {
 +              struct au_do_plink_lkup_args args = {
 +                      .errp           = &h_dentry,
 +                      .tgtname        = &tgtname,
@@ -21266,14 +22598,14 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +{
 +      int err;
 +      struct path h_path = {
-+              .mnt = br->br_mnt
++              .mnt = au_br_mnt(br)
 +      };
 +      struct inode *h_dir;
 +
 +      h_dir = h_parent->d_inode;
 +      mutex_lock_nested(&h_dir->i_mutex, AuLsc_I_CHILD2);
 +again:
-+      h_path.dentry = au_lkup_one(tgt, h_parent, br, /*nd*/NULL);
++      h_path.dentry = vfsub_lkup_one(tgt, h_parent);
 +      err = PTR_ERR(h_path.dentry);
 +      if (IS_ERR(h_path.dentry))
 +              goto out;
@@ -21320,9 +22652,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      struct dentry *h_parent;
 +      struct inode *h_dir;
 +      char a[PLINK_NAME_LEN];
-+      struct qstr tgtname = {
-+              .name = a
-+      };
++      struct qstr tgtname = QSTR_INIT(a, 0);
 +
 +      wbr = au_sbr(inode->i_sb, bindex)->br_wbr;
 +      h_parent = wbr->wbr_plink;
@@ -21330,7 +22660,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      tgtname.len = plink_name(a, sizeof(a), inode, bindex);
 +
 +      /* always superio. */
-+      if (current_fsuid()) {
++      if (!uid_eq(current_fsuid(), GLOBAL_ROOT_UID)) {
 +              struct do_whplink_args args = {
 +                      .errp           = &err,
 +                      .tgt            = &tgtname,
@@ -21351,7 +22681,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +static void do_put_plink(struct pseudo_link *plink, int do_del)
 +{
 +      if (do_del)
-+              list_del(&plink->list);
++              hlist_del(&plink->hlist);
 +      iput(plink->inode);
 +      kfree(plink);
 +}
@@ -21374,30 +22704,23 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +{
 +      struct super_block *sb;
 +      struct au_sbinfo *sbinfo;
-+      struct list_head *plink_list;
++      struct hlist_head *plink_hlist;
 +      struct pseudo_link *plink, *tmp;
-+      int found, err, cnt;
++      struct au_sphlhead *sphl;
++      int found, err, cnt, i;
 +
 +      sb = inode->i_sb;
 +      sbinfo = au_sbi(sb);
 +      AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK));
 +      AuDebugOn(au_plink_maint(sb, AuLock_NOPLM));
 +
-+      cnt = 0;
-+      found = 0;
-+      plink_list = &sbinfo->si_plink.head;
-+      rcu_read_lock();
-+      list_for_each_entry_rcu(plink, plink_list, list) {
-+              cnt++;
-+              if (plink->inode == inode) {
-+                      found = 1;
-+                      break;
-+              }
-+      }
-+      rcu_read_unlock();
++      found = au_plink_test(inode);
 +      if (found)
 +              return;
 +
++      i = au_plink_hash(inode->i_ino);
++      sphl = sbinfo->si_plink + i;
++      plink_hlist = &sphl->head;
 +      tmp = kmalloc(sizeof(*plink), GFP_NOFS);
 +      if (tmp)
 +              tmp->inode = au_igrab(inode);
@@ -21406,20 +22729,22 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +              goto out;
 +      }
 +
-+      spin_lock(&sbinfo->si_plink.spin);
-+      list_for_each_entry(plink, plink_list, list) {
++      spin_lock(&sphl->spin);
++      hlist_for_each_entry(plink, plink_hlist, hlist) {
 +              if (plink->inode == inode) {
 +                      found = 1;
 +                      break;
 +              }
 +      }
 +      if (!found)
-+              list_add_rcu(&tmp->list, plink_list);
-+      spin_unlock(&sbinfo->si_plink.spin);
++              hlist_add_head_rcu(&tmp->hlist, plink_hlist);
++      spin_unlock(&sphl->spin);
 +      if (!found) {
-+              cnt++;
-+              WARN_ONCE(cnt > AUFS_PLINK_WARN,
-+                        "unexpectedly many pseudo links, %d\n", cnt);
++              cnt = au_sphl_count(sphl);
++#define msg "unexpectedly unblanced or too many pseudo-links"
++              if (cnt > AUFS_PLINK_WARN)
++                      AuWarn1(msg ", %d\n", cnt);
++#undef msg
 +              err = whplink(h_dentry, inode, bindex, au_sbr(sb, bindex));
 +      } else {
 +              do_put_plink(tmp, 0);
@@ -21428,9 +22753,9 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +
 +out:
 +      if (unlikely(err)) {
-+              pr_warning("err %d, damaged pseudo link.\n", err);
++              pr_warn("err %d, damaged pseudo link.\n", err);
 +              if (tmp) {
-+                      au_spl_del_rcu(&tmp->list, &sbinfo->si_plink);
++                      au_sphl_del_rcu(&tmp->hlist, sphl);
 +                      call_rcu(&tmp->rcu, do_put_plink_rcu);
 +              }
 +      }
@@ -21439,9 +22764,11 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +/* free all plinks */
 +void au_plink_put(struct super_block *sb, int verbose)
 +{
++      int i, warned;
 +      struct au_sbinfo *sbinfo;
-+      struct list_head *plink_list;
-+      struct pseudo_link *plink, *tmp;
++      struct hlist_head *plink_hlist;
++      struct hlist_node *tmp;
++      struct pseudo_link *plink;
 +
 +      SiMustWriteLock(sb);
 +
@@ -21449,12 +22776,18 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK));
 +      AuDebugOn(au_plink_maint(sb, AuLock_NOPLM));
 +
-+      plink_list = &sbinfo->si_plink.head;
 +      /* no spin_lock since sbinfo is write-locked */
-+      WARN(verbose && !list_empty(plink_list), "pseudo-link is not flushed");
-+      list_for_each_entry_safe(plink, tmp, plink_list, list)
-+              do_put_plink(plink, 0);
-+      INIT_LIST_HEAD(plink_list);
++      warned = 0;
++      for (i = 0; i < AuPlink_NHASH; i++) {
++              plink_hlist = &sbinfo->si_plink[i].head;
++              if (!warned && verbose && !hlist_empty(plink_hlist)) {
++                      pr_warn("pseudo-link is not flushed");
++                      warned = 1;
++              }
++              hlist_for_each_entry_safe(plink, tmp, plink_hlist, hlist)
++                      do_put_plink(plink, 0);
++              INIT_HLIST_HEAD(plink_hlist);
++      }
 +}
 +
 +void au_plink_clean(struct super_block *sb, int verbose)
@@ -21468,15 +22801,44 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      aufs_write_unlock(root);
 +}
 +
++static int au_plink_do_half_refresh(struct inode *inode, aufs_bindex_t br_id)
++{
++      int do_put;
++      aufs_bindex_t bstart, bend, bindex;
++
++      do_put = 0;
++      bstart = au_ibstart(inode);
++      bend = au_ibend(inode);
++      if (bstart >= 0) {
++              for (bindex = bstart; bindex <= bend; bindex++) {
++                      if (!au_h_iptr(inode, bindex)
++                          || au_ii_br_id(inode, bindex) != br_id)
++                              continue;
++                      au_set_h_iptr(inode, bindex, NULL, 0);
++                      do_put = 1;
++                      break;
++              }
++              if (do_put)
++                      for (bindex = bstart; bindex <= bend; bindex++)
++                              if (au_h_iptr(inode, bindex)) {
++                                      do_put = 0;
++                                      break;
++                              }
++      } else
++              do_put = 1;
++
++      return do_put;
++}
++
 +/* free the plinks on a branch specified by @br_id */
 +void au_plink_half_refresh(struct super_block *sb, aufs_bindex_t br_id)
 +{
 +      struct au_sbinfo *sbinfo;
-+      struct list_head *plink_list;
-+      struct pseudo_link *plink, *tmp;
++      struct hlist_head *plink_hlist;
++      struct hlist_node *tmp;
++      struct pseudo_link *plink;
 +      struct inode *inode;
-+      aufs_bindex_t bstart, bend, bindex;
-+      unsigned char do_put;
++      int i, do_put;
 +
 +      SiMustWriteLock(sb);
 +
@@ -21484,45 +22846,26 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      AuDebugOn(!au_opt_test(au_mntflags(sb), PLINK));
 +      AuDebugOn(au_plink_maint(sb, AuLock_NOPLM));
 +
-+      plink_list = &sbinfo->si_plink.head;
 +      /* no spin_lock since sbinfo is write-locked */
-+      list_for_each_entry_safe(plink, tmp, plink_list, list) {
-+              do_put = 0;
-+              inode = au_igrab(plink->inode);
-+              ii_write_lock_child(inode);
-+              bstart = au_ibstart(inode);
-+              bend = au_ibend(inode);
-+              if (bstart >= 0) {
-+                      for (bindex = bstart; bindex <= bend; bindex++) {
-+                              if (!au_h_iptr(inode, bindex)
-+                                  || au_ii_br_id(inode, bindex) != br_id)
-+                                      continue;
-+                              au_set_h_iptr(inode, bindex, NULL, 0);
-+                              do_put = 1;
-+                              break;
-+                      }
-+              } else
-+                      do_put_plink(plink, 1);
-+
-+              if (do_put) {
-+                      for (bindex = bstart; bindex <= bend; bindex++)
-+                              if (au_h_iptr(inode, bindex)) {
-+                                      do_put = 0;
-+                                      break;
-+                              }
++      for (i = 0; i < AuPlink_NHASH; i++) {
++              plink_hlist = &sbinfo->si_plink[i].head;
++              hlist_for_each_entry_safe(plink, tmp, plink_hlist, hlist) {
++                      inode = au_igrab(plink->inode);
++                      ii_write_lock_child(inode);
++                      do_put = au_plink_do_half_refresh(inode, br_id);
 +                      if (do_put)
 +                              do_put_plink(plink, 1);
++                      ii_write_unlock(inode);
++                      iput(inode);
 +              }
-+              ii_write_unlock(inode);
-+              iput(inode);
 +      }
 +}
 diff -urN /usr/share/empty/fs/aufs/poll.c linux/fs/aufs/poll.c
 --- /usr/share/empty/fs/aufs/poll.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/poll.c       2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/poll.c       2013-07-06 13:20:47.753531903 +0200
 @@ -0,0 +1,56 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -21579,10 +22922,10 @@ diff -urN /usr/share/empty/fs/aufs/poll.c linux/fs/aufs/poll.c
 +}
 diff -urN /usr/share/empty/fs/aufs/procfs.c linux/fs/aufs/procfs.c
 --- /usr/share/empty/fs/aufs/procfs.c  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/procfs.c     2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/procfs.c     2013-07-06 13:20:47.753531903 +0200
 @@ -0,0 +1,170 @@
 +/*
-+ * Copyright (C) 2010-2012 Junjiro R. Okajima
++ * Copyright (C) 2010-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -21753,10 +23096,10 @@ diff -urN /usr/share/empty/fs/aufs/procfs.c linux/fs/aufs/procfs.c
 +}
 diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 --- /usr/share/empty/fs/aufs/rdu.c     1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/rdu.c        2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,383 @@
++++ linux/fs/aufs/rdu.c        2013-07-30 22:42:55.842946719 +0200
+@@ -0,0 +1,384 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -21852,6 +23195,7 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +      loff_t offset;
 +      struct au_rdu_cookie *cookie = &arg->rdu->cookie;
 +
++      /* we don't have to care (FMODE_32BITHASH | FMODE_64BITHASH) for ext4 */
 +      offset = vfsub_llseek(h_file, cookie->h_pos, SEEK_SET);
 +      err = offset;
 +      if (unlikely(offset != cookie->h_pos))
@@ -22140,10 +23484,10 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +#endif
 diff -urN /usr/share/empty/fs/aufs/rwsem.h linux/fs/aufs/rwsem.h
 --- /usr/share/empty/fs/aufs/rwsem.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/rwsem.h      2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/rwsem.h      2013-07-06 13:20:47.753531903 +0200
 @@ -0,0 +1,188 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -22332,10 +23676,10 @@ diff -urN /usr/share/empty/fs/aufs/rwsem.h linux/fs/aufs/rwsem.h
 +#endif /* __AUFS_RWSEM_H__ */
 diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 --- /usr/share/empty/fs/aufs/sbinfo.c  1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/sbinfo.c     2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,343 @@
++++ linux/fs/aufs/sbinfo.c     2013-07-06 13:20:47.753531903 +0200
+@@ -0,0 +1,348 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -22363,11 +23707,13 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 + */
 +void au_si_free(struct kobject *kobj)
 +{
++      int i;
 +      struct au_sbinfo *sbinfo;
 +      char *locked __maybe_unused; /* debug only */
 +
 +      sbinfo = container_of(kobj, struct au_sbinfo, si_kobj);
-+      AuDebugOn(!list_empty(&sbinfo->si_plink.head));
++      for (i = 0; i < AuPlink_NHASH; i++)
++              AuDebugOn(!hlist_empty(&sbinfo->si_plink[i].head));
 +      AuDebugOn(atomic_read(&sbinfo->si_nowait.nw_len));
 +
 +      au_rw_write_lock(&sbinfo->si_rwsem);
@@ -22389,7 +23735,7 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +
 +int au_si_alloc(struct super_block *sb)
 +{
-+      int err;
++      int err, i;
 +      struct au_sbinfo *sbinfo;
 +      static struct lock_class_key aufs_si;
 +
@@ -22442,10 +23788,13 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +      sbinfo->si_rdhash = AUFS_RDHASH_DEF;
 +      sbinfo->si_dirwh = AUFS_DIRWH_DEF;
 +
-+      au_spl_init(&sbinfo->si_plink);
++      for (i = 0; i < AuPlink_NHASH; i++)
++              au_sphl_init(sbinfo->si_plink + i);
 +      init_waitqueue_head(&sbinfo->si_plink_wq);
 +      spin_lock_init(&sbinfo->si_plink_maint_lock);
 +
++      au_sphl_init(&sbinfo->si_files);
++
 +      /* leave other members for sysaufs and si_mnt. */
 +      sbinfo->si_sb = sb;
 +      sb->s_fs_info = sbinfo;
@@ -22493,7 +23842,7 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +
 +      gen = ++au_sbi(sb)->si_generation;
 +      au_update_digen(sb->s_root);
-+      au_update_iigen(sb->s_root->d_inode);
++      au_update_iigen(sb->s_root->d_inode, /*half*/0);
 +      sb->s_root->d_inode->i_version++;
 +      return gen;
 +}
@@ -22679,10 +24028,10 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +}
 diff -urN /usr/share/empty/fs/aufs/spl.h linux/fs/aufs/spl.h
 --- /usr/share/empty/fs/aufs/spl.h     1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/spl.h        2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,62 @@
++++ linux/fs/aufs/spl.h        2013-07-06 13:20:47.753531903 +0200
+@@ -0,0 +1,112 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -22733,22 +24082,72 @@ diff -urN /usr/share/empty/fs/aufs/spl.h linux/fs/aufs/spl.h
 +      spin_unlock(&spl->spin);
 +}
 +
-+static inline void au_spl_del_rcu(struct list_head *list,
-+                                struct au_splhead *spl)
++static inline void au_spl_del_rcu(struct list_head *list,
++                                struct au_splhead *spl)
++{
++      spin_lock(&spl->spin);
++      list_del_rcu(list);
++      spin_unlock(&spl->spin);
++}
++
++/* ---------------------------------------------------------------------- */
++
++struct au_sphlhead {
++      spinlock_t              spin;
++      struct hlist_head       head;
++};
++
++static inline void au_sphl_init(struct au_sphlhead *sphl)
++{
++      spin_lock_init(&sphl->spin);
++      INIT_HLIST_HEAD(&sphl->head);
++}
++
++static inline void au_sphl_add(struct hlist_node *hlist,
++                             struct au_sphlhead *sphl)
++{
++      spin_lock(&sphl->spin);
++      hlist_add_head(hlist, &sphl->head);
++      spin_unlock(&sphl->spin);
++}
++
++static inline void au_sphl_del(struct hlist_node *hlist,
++                             struct au_sphlhead *sphl)
++{
++      spin_lock(&sphl->spin);
++      hlist_del(hlist);
++      spin_unlock(&sphl->spin);
++}
++
++static inline void au_sphl_del_rcu(struct hlist_node *hlist,
++                                 struct au_sphlhead *sphl)
++{
++      spin_lock(&sphl->spin);
++      hlist_del_rcu(hlist);
++      spin_unlock(&sphl->spin);
++}
++
++static inline unsigned long au_sphl_count(struct au_sphlhead *sphl)
 +{
-+      spin_lock(&spl->spin);
-+      list_del_rcu(list);
-+      spin_unlock(&spl->spin);
++      unsigned long cnt;
++      struct hlist_node *pos;
++
++      cnt = 0;
++      spin_lock(&sphl->spin);
++      hlist_for_each(pos, &sphl->head)
++              cnt++;
++      spin_unlock(&sphl->spin);
++      return cnt;
 +}
 +
 +#endif /* __KERNEL__ */
 +#endif /* __AUFS_SPL_H__ */
 diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 --- /usr/share/empty/fs/aufs/super.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/super.c      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,938 @@
++++ linux/fs/aufs/super.c      2013-08-23 23:59:39.634916914 +0200
+@@ -0,0 +1,992 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -22798,7 +24197,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +{
 +      struct inode *inode = container_of(head, struct inode, i_rcu);
 +
-+      INIT_LIST_HEAD(&inode->i_dentry);
++      INIT_HLIST_HEAD(&inode->i_dentry);
 +      au_cache_free_icntnr(container_of(inode, struct au_icntnr, vfs_inode));
 +}
 +
@@ -22853,7 +24252,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      hdp = au_di(sb->s_root)->di_hdentry;
 +      for (bindex = 0; !err && bindex <= bend; bindex++) {
 +              br = au_sbr(sb, bindex);
-+              path.mnt = br->br_mnt;
++              path.mnt = au_br_mnt(br);
 +              path.dentry = hdp[bindex].hd_dentry;
 +              err = au_seq_path(seq, &path);
 +              if (err > 0) {
@@ -22880,14 +24279,14 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +      AuRwMustAnyLock(&sbinfo->si_rwsem);
 +
-+      seq_printf(m, ",create=");
++      seq_puts(m, ",create=");
 +      pat = au_optstr_wbr_create(v);
 +      switch (v) {
 +      case AuWbrCreate_TDP:
 +      case AuWbrCreate_RR:
 +      case AuWbrCreate_MFS:
 +      case AuWbrCreate_PMFS:
-+              seq_printf(m, pat);
++              seq_puts(m, pat);
 +              break;
 +      case AuWbrCreate_MFSV:
 +              seq_printf(m, /*pat*/"mfs:%lu",
@@ -22912,7 +24311,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      }
 +}
 +
-+static int au_show_xino(struct seq_file *seq, struct vfsmount *mnt)
++static int au_show_xino(struct seq_file *seq, struct super_block *sb)
 +{
 +#ifdef CONFIG_SYSFS
 +      return 0;
@@ -22920,7 +24319,6 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      int err;
 +      const int len = sizeof(AUFS_XINO_FNAME) - 1;
 +      aufs_bindex_t bindex, brid;
-+      struct super_block *sb;
 +      struct qstr *name;
 +      struct file *f;
 +      struct dentry *d, *h_root;
@@ -22929,7 +24327,6 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      AuRwMustAnyLock(&sbinfo->si_rwsem);
 +
 +      err = 0;
-+      sb = mnt->mnt_sb;
 +      f = au_sbi(sb)->si_xib;
 +      if (!f)
 +              goto out;
@@ -22959,7 +24356,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +}
 +
 +/* seq_file will re-call me in case of too long string */
-+static int aufs_show_options(struct seq_file *m, struct vfsmount *mnt)
++static int aufs_show_options(struct seq_file *m, struct dentry *dentry)
 +{
 +      int err;
 +      unsigned int mnt_flags, v;
@@ -22984,14 +24381,14 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +} while (0)
 +
 +      /* lock free root dinfo */
-+      sb = mnt->mnt_sb;
++      sb = dentry->d_sb;
 +      si_noflush_read_lock(sb);
 +      sbinfo = au_sbi(sb);
 +      seq_printf(m, ",si=%lx", sysaufs_si_id(sbinfo));
 +
 +      mnt_flags = au_mntflags(sb);
 +      if (au_opt_test(mnt_flags, XINO)) {
-+              err = au_show_xino(m, mnt);
++              err = au_show_xino(m, sb);
 +              if (unlikely(err))
 +                      goto out;
 +      } else
@@ -23054,7 +24451,18 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +      old = a;
 +      a += b;
-+      if (old < a)
++      if (old <= a)
++              return a;
++      return ULLONG_MAX;
++}
++
++static u64 au_mul_till_max(u64 a, long mul)
++{
++      u64 old;
++
++      old = a;
++      a *= mul;
++      if (old <= a)
 +              return a;
 +      return ULLONG_MAX;
 +}
@@ -23062,25 +24470,26 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +static int au_statfs_sum(struct super_block *sb, struct kstatfs *buf)
 +{
 +      int err;
++      long bsize, factor;
 +      u64 blocks, bfree, bavail, files, ffree;
 +      aufs_bindex_t bend, bindex, i;
 +      unsigned char shared;
 +      struct path h_path;
 +      struct super_block *h_sb;
 +
++      err = 0;
++      bsize = LONG_MAX;
++      files = 0;
++      ffree = 0;
 +      blocks = 0;
 +      bfree = 0;
 +      bavail = 0;
-+      files = 0;
-+      ffree = 0;
-+
-+      err = 0;
 +      bend = au_sbend(sb);
-+      for (bindex = bend; bindex >= 0; bindex--) {
++      for (bindex = 0; bindex <= bend; bindex++) {
 +              h_path.mnt = au_sbr_mnt(sb, bindex);
 +              h_sb = h_path.mnt->mnt_sb;
 +              shared = 0;
-+              for (i = bindex + 1; !shared && i <= bend; i++)
++              for (i = 0; !shared && i < bindex; i++)
 +                      shared = (au_sbr_sb(sb, i) == h_sb);
 +              if (shared)
 +                      continue;
@@ -23091,18 +24500,36 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +              if (unlikely(err))
 +                      goto out;
 +
-+              blocks = au_add_till_max(blocks, buf->f_blocks);
-+              bfree = au_add_till_max(bfree, buf->f_bfree);
-+              bavail = au_add_till_max(bavail, buf->f_bavail);
++              if (bsize > buf->f_bsize) {
++                      /*
++                       * we will reduce bsize, so we have to expand blocks
++                       * etc. to match them again
++                       */
++                      factor = (bsize / buf->f_bsize);
++                      blocks = au_mul_till_max(blocks, factor);
++                      bfree = au_mul_till_max(bfree, factor);
++                      bavail = au_mul_till_max(bavail, factor);
++                      bsize = buf->f_bsize;
++              }
++
++              factor = (buf->f_bsize / bsize);
++              blocks = au_add_till_max(blocks,
++                              au_mul_till_max(buf->f_blocks, factor));
++              bfree = au_add_till_max(bfree,
++                              au_mul_till_max(buf->f_bfree, factor));
++              bavail = au_add_till_max(bavail,
++                              au_mul_till_max(buf->f_bavail, factor));
 +              files = au_add_till_max(files, buf->f_files);
 +              ffree = au_add_till_max(ffree, buf->f_ffree);
 +      }
 +
++      buf->f_bsize = bsize;
 +      buf->f_blocks = blocks;
 +      buf->f_bfree = bfree;
 +      buf->f_bavail = bavail;
 +      buf->f_files = files;
 +      buf->f_ffree = ffree;
++      buf->f_frsize = 0;
 +
 +out:
 +      return err;
@@ -23138,6 +24565,36 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +/* ---------------------------------------------------------------------- */
 +
++static int aufs_sync_fs(struct super_block *sb, int wait)
++{
++      int err, e;
++      aufs_bindex_t bend, bindex;
++      struct au_branch *br;
++      struct super_block *h_sb;
++
++      err = 0;
++      si_noflush_read_lock(sb);
++      bend = au_sbend(sb);
++      for (bindex = 0; bindex <= bend; bindex++) {
++              br = au_sbr(sb, bindex);
++              if (!au_br_writable(br->br_perm))
++                      continue;
++
++              h_sb = au_sbr_sb(sb, bindex);
++              if (h_sb->s_op->sync_fs) {
++                      e = h_sb->s_op->sync_fs(h_sb, wait);
++                      if (unlikely(e && !err))
++                              err = e;
++                      /* go on even if an error happens */
++              }
++      }
++      si_read_unlock(sb);
++
++      return err;
++}
++
++/* ---------------------------------------------------------------------- */
++
 +/* final actions when unmounting a file system */
 +static void aufs_put_super(struct super_block *sb)
 +{
@@ -23348,7 +24805,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      sigen = au_sigen(sb);
 +      for (ull = 0; ull < max; ull++) {
 +              inode = array[ull];
-+              if (au_iigen(inode) != sigen) {
++              if (au_iigen(inode, NULL) != sigen) {
 +                      ii_write_lock_child(inode);
 +                      e = au_refresh_hinode_self(inode);
 +                      ii_write_unlock(inode);
@@ -23501,6 +24958,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      .show_options   = aufs_show_options,
 +      .statfs         = aufs_statfs,
 +      .put_super      = aufs_put_super,
++      .sync_fs        = aufs_sync_fs,
 +      .remount_fs     = aufs_remount_fs
 +};
 +
@@ -23524,12 +24982,12 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      set_nlink(inode, 2);
 +      unlock_new_inode(inode);
 +
-+      root = d_alloc_root(inode);
++      root = d_make_root(inode);
 +      if (unlikely(!root))
-+              goto out_iput;
++              goto out;
 +      err = PTR_ERR(root);
 +      if (IS_ERR(root))
-+              goto out_iput;
++              goto out;
 +
 +      err = au_di_init(root);
 +      if (!err) {
@@ -23537,13 +24995,9 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +              return 0; /* success */
 +      }
 +      dput(root);
-+      goto out; /* do not iput */
 +
-+out_iput:
-+      iget_failed(inode);
 +out:
 +      return err;
-+
 +}
 +
 +static int aufs_fill_super(struct super_block *sb, void *raw_data,
@@ -23677,9 +25131,8 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +struct file_system_type aufs_fs_type = {
 +      .name           = AUFS_FSTYPE,
-+      .fs_flags       =
-+              FS_RENAME_DOES_D_MOVE   /* a race between rename and others */
-+              | FS_REVAL_DOT,         /* for NFS branch and udba */
++      /* a race between rename and others */
++      .fs_flags       = FS_RENAME_DOES_D_MOVE,
 +      .mount          = aufs_mount,
 +      .kill_sb        = aufs_kill_sb,
 +      /* no need to __module_get() and module_put(). */
@@ -23687,10 +25140,10 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +};
 diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 --- /usr/share/empty/fs/aufs/super.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/super.h      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,546 @@
++++ linux/fs/aufs/super.h      2013-08-23 23:59:39.638250372 +0200
+@@ -0,0 +1,563 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -23746,6 +25199,20 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      unsigned long long      mfsrr_watermark;
 +};
 +
++struct pseudo_link {
++      union {
++              struct hlist_node hlist;
++              struct rcu_head rcu;
++      };
++      struct inode *inode;
++};
++
++#define AuPlink_NHASH 100
++static inline int au_plink_hash(ino_t ino)
++{
++      return ino % AuPlink_NHASH;
++}
++
 +struct au_branch;
 +struct au_sbinfo {
 +      /* nowait tasks in the system-wide workqueue */
@@ -23765,7 +25232,8 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      } au_si_pid;
 +
 +      /*
-+       * dirty approach to protect sb->sb_inodes and ->s_files from remount.
++       * dirty approach to protect sb->sb_inodes and ->s_files (gone) from
++       * remount.
 +       */
 +      atomic_long_t           si_ninodes, si_nfiles;
 +
@@ -23836,11 +25304,14 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      /* int                  si_rendir; */
 +
 +      /* pseudo_link list */
-+      struct au_splhead       si_plink;
++      struct au_sphlhead      si_plink[AuPlink_NHASH];
 +      wait_queue_head_t       si_plink_wq;
 +      spinlock_t              si_plink_maint_lock;
 +      pid_t                   si_plink_maint_pid;
 +
++      /* file list */
++      struct au_sphlhead      si_files;
++
 +      /*
 +       * sysfs and lifetime management.
 +       * this is not a small structure and it may be a waste of memory in case
@@ -23849,7 +25320,9 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +       */
 +      struct kobject          si_kobj;
 +#ifdef CONFIG_DEBUG_FS
-+      struct dentry            *si_dbgaufs, *si_dbgaufs_xib;
++      struct dentry            *si_dbgaufs;
++      struct dentry            *si_dbgaufs_plink;
++      struct dentry            *si_dbgaufs_xib;
 +#ifdef CONFIG_AUFS_EXPORT
 +      struct dentry            *si_dbgaufs_xigen;
 +#endif
@@ -23946,6 +25419,10 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +extern struct au_wbr_copyup_operations au_wbr_copyup_ops[];
 +extern struct au_wbr_create_operations au_wbr_create_ops[];
 +int au_cpdown_dirs(struct dentry *dentry, aufs_bindex_t bdst);
++int au_wbr_nonopq(struct dentry *dentry, aufs_bindex_t bindex);
++
++/* mvdown.c */
++int au_mvdown(struct dentry *dentry, struct aufs_mvdown __user *arg);
 +
 +/* ---------------------------------------------------------------------- */
 +
@@ -23957,16 +25434,8 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +/* ---------------------------------------------------------------------- */
 +
 +#ifdef CONFIG_AUFS_EXPORT
++int au_test_nfsd(void);
 +void au_export_init(struct super_block *sb);
-+
-+static inline int au_test_nfsd(void)
-+{
-+      struct task_struct *tsk = current;
-+
-+      return (tsk->flags & PF_KTHREAD)
-+              && !strcmp(tsk->comm, "nfsd");
-+}
-+
 +void au_xigen_inc(struct inode *inode);
 +int au_xigen_new(struct inode *inode);
 +int au_xigen_set(struct super_block *sb, struct file *base);
@@ -23979,8 +25448,8 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      return -ESTALE;
 +}
 +#else
-+AuStubVoid(au_export_init, struct super_block *sb)
 +AuStubInt0(au_test_nfsd, void)
++AuStubVoid(au_export_init, struct super_block *sb)
 +AuStubVoid(au_xigen_inc, struct inode *inode)
 +AuStubInt0(au_xigen_new, struct inode *inode)
 +AuStubInt0(au_xigen_set, struct super_block *sb, struct file *base)
@@ -24048,6 +25517,7 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      /* AuRwMustWriteLock(&sbinfo->si_rwsem); */
 +#ifdef CONFIG_DEBUG_FS
 +      sbinfo->si_dbgaufs = NULL;
++      sbinfo->si_dbgaufs_plink = NULL;
 +      sbinfo->si_dbgaufs_xib = NULL;
 +#ifdef CONFIG_AUFS_EXPORT
 +      sbinfo->si_dbgaufs_xigen = NULL;
@@ -24237,10 +25707,10 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +#endif /* __AUFS_SUPER_H__ */
 diff -urN /usr/share/empty/fs/aufs/sysaufs.c linux/fs/aufs/sysaufs.c
 --- /usr/share/empty/fs/aufs/sysaufs.c 1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/sysaufs.c    2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/sysaufs.c    2013-07-06 13:20:47.753531903 +0200
 @@ -0,0 +1,105 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -24346,10 +25816,10 @@ diff -urN /usr/share/empty/fs/aufs/sysaufs.c linux/fs/aufs/sysaufs.c
 +}
 diff -urN /usr/share/empty/fs/aufs/sysaufs.h linux/fs/aufs/sysaufs.h
 --- /usr/share/empty/fs/aufs/sysaufs.h 1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/sysaufs.h    2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/sysaufs.h    2013-07-06 13:20:47.753531903 +0200
 @@ -0,0 +1,104 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -24454,10 +25924,10 @@ diff -urN /usr/share/empty/fs/aufs/sysaufs.h linux/fs/aufs/sysaufs.h
 +#endif /* __SYSAUFS_H__ */
 diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 --- /usr/share/empty/fs/aufs/sysfs.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/sysfs.c      2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/sysfs.c      2013-07-06 13:20:47.753531903 +0200
 @@ -0,0 +1,257 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -24550,7 +26020,7 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +      root = sb->s_root;
 +      di_read_lock_parent(root, !AuLock_IR);
 +      br = au_sbr(sb, bindex);
-+      path.mnt = br->br_mnt;
++      path.mnt = au_br_mnt(br);
 +      path.dentry = au_h_dptr(root, bindex);
 +      au_seq_path(seq, &path);
 +      di_read_unlock(root, !AuLock_IR);
@@ -24709,16 +26179,16 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +                       "%d", bindex);
 +              err = sysfs_create_file(kobj, &br->br_attr);
 +              if (unlikely(err))
-+                      pr_warning("failed %s under sysfs(%d)\n",
-+                                 br->br_name, err);
++                      pr_warn("failed %s under sysfs(%d)\n",
++                              br->br_name, err);
 +      }
 +}
 diff -urN /usr/share/empty/fs/aufs/sysrq.c linux/fs/aufs/sysrq.c
 --- /usr/share/empty/fs/aufs/sysrq.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/sysrq.c      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,148 @@
++++ linux/fs/aufs/sysrq.c      2013-07-06 13:20:47.753531903 +0200
+@@ -0,0 +1,155 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -24750,20 +26220,24 @@ diff -urN /usr/share/empty/fs/aufs/sysrq.c linux/fs/aufs/sysrq.c
 +      char *plevel;
 +      struct au_sbinfo *sbinfo;
 +      struct file *file;
++      struct au_sphlhead *files;
++      struct au_finfo *finfo;
 +
 +      plevel = au_plevel;
 +      au_plevel = KERN_WARNING;
 +
-+      sbinfo = au_sbi(sb);
 +      /* since we define pr_fmt, call printk directly */
++#define pr(str) printk(KERN_WARNING AUFS_NAME ": " str)
++
++      sbinfo = au_sbi(sb);
 +      printk(KERN_WARNING "si=%lx\n", sysaufs_si_id(sbinfo));
-+      printk(KERN_WARNING AUFS_NAME ": superblock\n");
++      pr("superblock\n");
 +      au_dpri_sb(sb);
 +
 +#if 0
-+      printk(KERN_WARNING AUFS_NAME ": root dentry\n");
++      pr("root dentry\n");
 +      au_dpri_dentry(sb->s_root);
-+      printk(KERN_WARNING AUFS_NAME ": root inode\n");
++      pr("root inode\n");
 +      au_dpri_inode(sb->s_root->d_inode);
 +#endif
 +
@@ -24791,28 +26265,31 @@ diff -urN /usr/share/empty/fs/aufs/sysrq.c linux/fs/aufs/sysrq.c
 +#if 1
 +      {
 +              struct inode *i;
-+              printk(KERN_WARNING AUFS_NAME ": isolated inode\n");
++              pr("isolated inode\n");
 +              spin_lock(&inode_sb_list_lock);
 +              list_for_each_entry(i, &sb->s_inodes, i_sb_list) {
 +                      spin_lock(&i->i_lock);
-+                      if (1 || list_empty(&i->i_dentry))
++                      if (1 || hlist_empty(&i->i_dentry))
 +                              au_dpri_inode(i);
 +                      spin_unlock(&i->i_lock);
 +              }
 +              spin_unlock(&inode_sb_list_lock);
 +      }
 +#endif
-+      printk(KERN_WARNING AUFS_NAME ": files\n");
-+      lg_global_lock(files_lglock);
-+      do_file_list_for_each_entry(sb, file) {
++      pr("files\n");
++      files = &au_sbi(sb)->si_files;
++      spin_lock(&files->spin);
++      hlist_for_each_entry(finfo, &files->head, fi_hlist) {
 +              umode_t mode;
-+              mode = file->f_dentry->d_inode->i_mode;
++              file = finfo->fi_file;
++              mode = file_inode(file)->i_mode;
 +              if (!special_file(mode) || au_special_file(mode))
 +                      au_dpri_file(file);
-+      } while_file_list_for_each_entry;
-+      lg_global_unlock(files_lglock);
-+      printk(KERN_WARNING AUFS_NAME ": done\n");
++      }
++      spin_unlock(&files->spin);
++      pr("done\n");
 +
++#undef pr
 +      au_plevel = plevel;
 +}
 +
@@ -24867,10 +26344,10 @@ diff -urN /usr/share/empty/fs/aufs/sysrq.c linux/fs/aufs/sysrq.c
 +}
 diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 --- /usr/share/empty/fs/aufs/vdir.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/vdir.c       2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,885 @@
++++ linux/fs/aufs/vdir.c       2013-07-30 22:42:55.842946719 +0200
+@@ -0,0 +1,878 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -24976,24 +26453,20 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +
 +static void au_nhash_wh_do_free(struct hlist_head *head)
 +{
-+      struct au_vdir_wh *tpos;
-+      struct hlist_node *pos, *node;
++      struct au_vdir_wh *pos;
++      struct hlist_node *node;
 +
-+      hlist_for_each_entry_safe(tpos, pos, node, head, wh_hash) {
-+              /* hlist_del(pos); */
-+              kfree(tpos);
-+      }
++      hlist_for_each_entry_safe(pos, node, head, wh_hash)
++              kfree(pos);
 +}
 +
 +static void au_nhash_de_do_free(struct hlist_head *head)
 +{
-+      struct au_vdir_dehstr *tpos;
-+      struct hlist_node *pos, *node;
++      struct au_vdir_dehstr *pos;
++      struct hlist_node *node;
 +
-+      hlist_for_each_entry_safe(tpos, pos, node, head, hash) {
-+              /* hlist_del(pos); */
-+              au_cache_free_vdir_dehstr(tpos);
-+      }
++      hlist_for_each_entry_safe(pos, node, head, hash)
++              au_cache_free_vdir_dehstr(pos);
 +}
 +
 +static void au_nhash_do_free(struct au_nhash *nhash,
@@ -25032,15 +26505,14 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      int num;
 +      unsigned int u, n;
 +      struct hlist_head *head;
-+      struct au_vdir_wh *tpos;
-+      struct hlist_node *pos;
++      struct au_vdir_wh *pos;
 +
 +      num = 0;
 +      n = whlist->nh_num;
 +      head = whlist->nh_head;
 +      for (u = 0; u < n; u++, head++)
-+              hlist_for_each_entry(tpos, pos, head, wh_hash)
-+                      if (tpos->wh_bindex == btgt && ++num > limit)
++              hlist_for_each_entry(pos, head, wh_hash)
++                      if (pos->wh_bindex == btgt && ++num > limit)
 +                              return 1;
 +      return 0;
 +}
@@ -25072,13 +26544,12 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +int au_nhash_test_known_wh(struct au_nhash *whlist, char *name, int nlen)
 +{
 +      struct hlist_head *head;
-+      struct au_vdir_wh *tpos;
-+      struct hlist_node *pos;
++      struct au_vdir_wh *pos;
 +      struct au_vdir_destr *str;
 +
 +      head = au_name_hash(whlist, name, nlen);
-+      hlist_for_each_entry(tpos, pos, head, wh_hash) {
-+              str = &tpos->wh_str;
++      hlist_for_each_entry(pos, head, wh_hash) {
++              str = &pos->wh_str;
 +              AuDbg("%.*s\n", str->len, str->name);
 +              if (au_nhash_test_name(str, name, nlen))
 +                      return 1;
@@ -25090,13 +26561,12 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +static int test_known(struct au_nhash *delist, char *name, int nlen)
 +{
 +      struct hlist_head *head;
-+      struct au_vdir_dehstr *tpos;
-+      struct hlist_node *pos;
++      struct au_vdir_dehstr *pos;
 +      struct au_vdir_destr *str;
 +
 +      head = au_name_hash(delist, name, nlen);
-+      hlist_for_each_entry(tpos, pos, head, hash) {
-+              str = tpos->str;
++      hlist_for_each_entry(pos, head, hash) {
++              str = pos->str;
 +              AuDbg("%.*s\n", str->len, str->name);
 +              if (au_nhash_test_name(str, name, nlen))
 +                      return 1;
@@ -25385,15 +26855,15 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      int err;
 +      unsigned int nh, u;
 +      struct hlist_head *head;
-+      struct au_vdir_wh *tpos;
-+      struct hlist_node *pos, *n;
++      struct au_vdir_wh *pos;
++      struct hlist_node *n;
 +      char *p, *o;
 +      struct au_vdir_destr *destr;
 +
 +      AuDebugOn(!au_opt_test(au_mntflags(sb), SHWH));
 +
 +      err = -ENOMEM;
-+      o = p = __getname_gfp(GFP_NOFS);
++      o = p = (void *)__get_free_page(GFP_NOFS);
 +      if (unlikely(!p))
 +              goto out;
 +
@@ -25403,17 +26873,17 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      p += AUFS_WH_PFX_LEN;
 +      for (u = 0; u < nh; u++) {
 +              head = whlist->nh_head + u;
-+              hlist_for_each_entry_safe(tpos, pos, n, head, wh_hash) {
-+                      destr = &tpos->wh_str;
++              hlist_for_each_entry_safe(pos, n, head, wh_hash) {
++                      destr = &pos->wh_str;
 +                      memcpy(p, destr->name, destr->len);
 +                      err = append_de(vdir, o, destr->len + AUFS_WH_PFX_LEN,
-+                                      tpos->wh_ino, tpos->wh_type, delist);
++                                      pos->wh_ino, pos->wh_type, delist);
 +                      if (unlikely(err))
 +                              break;
 +              }
 +      }
 +
-+      __putname(o);
++      free_page((unsigned long)o);
 +
 +out:
 +      AuTraceErr(err);
@@ -25503,7 +26973,7 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      struct au_vdir *vdir, *allocated;
 +
 +      err = 0;
-+      inode = file->f_dentry->d_inode;
++      inode = file_inode(file);
 +      IMustLock(inode);
 +      SiMustAnyLock(inode->i_sb);
 +
@@ -25627,7 +27097,7 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      } else
 +              return 0; /* success */
 +
-+      inode = file->f_dentry->d_inode;
++      inode = file_inode(file);
 +      err = copy_vdir(vdir_cache, au_ivdir(inode));
 +      if (!err) {
 +              file->f_version = inode->i_version;
@@ -25756,10 +27226,10 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +}
 diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 --- /usr/share/empty/fs/aufs/vfsub.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/vfsub.c      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,835 @@
++++ linux/fs/aufs/vfsub.c      2013-07-30 22:42:55.842946719 +0200
+@@ -0,0 +1,769 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -25801,7 +27271,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +      h_sb = h_path->dentry->d_sb;
 +      *did = (!au_test_fs_remote(h_sb) && au_test_fs_refresh_iattr(h_sb));
 +      if (*did)
-+              err = vfs_getattr(h_path->mnt, h_path->dentry, &st);
++              err = vfs_getattr(h_path, &st);
 +
 +      return err;
 +}
@@ -25812,9 +27282,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +{
 +      struct file *file;
 +
-+      path_get(path);
-+      file = dentry_open(path->dentry, path->mnt,
-+                         flags /* | __FMODE_NONOTIFY */,
++      file = dentry_open(path, flags /* | __FMODE_NONOTIFY */,
 +                         current_cred());
 +      if (!IS_ERR_OR_NULL(file)
 +          && (file->f_mode & (FMODE_READ | FMODE_WRITE)) == FMODE_READ)
@@ -25871,51 +27339,10 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +      return path.dentry;
 +}
 +
-+struct dentry *vfsub_lookup_hash(struct nameidata *nd)
++void vfsub_call_lkup_one(void *args)
 +{
-+      struct path path = {
-+              .mnt = nd->path.mnt
-+      };
-+
-+      IMustLock(nd->path.dentry->d_inode);
-+
-+      path.dentry = lookup_hash(nd);
-+      if (IS_ERR(path.dentry))
-+              goto out;
-+      if (path.dentry->d_inode)
-+              vfsub_update_h_iattr(&path, /*did*/NULL); /*ignore*/
-+
-+out:
-+      AuTraceErrPtr(path.dentry);
-+      return path.dentry;
-+}
-+
-+/*
-+ * this is "VFS:__lookup_one_len()" which was removed and merged into
-+ * VFS:lookup_one_len() by the commit.
-+ *    6a96ba5 2011-03-14 kill __lookup_one_len()
-+ * this function should always be equivalent to the corresponding part in
-+ * VFS:lookup_one_len().
-+ */
-+int vfsub_name_hash(const char *name, struct qstr *this, int len)
-+{
-+      unsigned long hash;
-+      unsigned int c;
-+
-+      this->name = name;
-+      this->len = len;
-+      if (!len)
-+              return -EACCES;
-+
-+      hash = init_name_hash();
-+      while (len--) {
-+              c = *(const unsigned char *)name++;
-+              if (c == '/' || c == '\0')
-+                      return -EACCES;
-+              hash = partial_name_hash(c, hash);
-+      }
-+      this->hash = end_name_hash(hash);
-+      return 0;
++      struct vfsub_lkup_one_args *a = args;
++      *a->errp = vfsub_lkup_one(a->name, a->parent);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -25948,7 +27375,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +
 +/* ---------------------------------------------------------------------- */
 +
-+int vfsub_create(struct inode *dir, struct path *path, int mode)
++int vfsub_create(struct inode *dir, struct path *path, int mode, bool want_excl)
 +{
 +      int err;
 +      struct dentry *d;
@@ -25962,23 +27389,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +      if (unlikely(err))
 +              goto out;
 +
-+      if (au_test_fs_null_nd(dir->i_sb))
-+              err = vfs_create(dir, path->dentry, mode, NULL);
-+      else {
-+              struct nameidata h_nd;
-+
-+              memset(&h_nd, 0, sizeof(h_nd));
-+              h_nd.flags = LOOKUP_CREATE;
-+              h_nd.intent.open.flags = O_CREAT
-+                      | vfsub_fmode_to_uint(FMODE_READ);
-+              h_nd.intent.open.create_mode = mode;
-+              h_nd.path.dentry = path->dentry->d_parent;
-+              h_nd.path.mnt = path->mnt;
-+              path_get(&h_nd.path);
-+              err = vfs_create(dir, path->dentry, mode, &h_nd);
-+              path_put(&h_nd.path);
-+      }
-+
++      err = vfs_create(dir, path->dentry, mode, want_excl);
 +      if (!err) {
 +              struct path tmp = *path;
 +              int did;
@@ -26078,6 +27489,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +      if (unlikely(err))
 +              return err;
 +
++      /* we don't call may_linkat() */
 +      d = path->dentry;
 +      path->dentry = d->d_parent;
 +      err = security_path_link(src_dentry, path, d);
@@ -26358,23 +27770,18 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +{
 +      int err;
 +      struct inode *h_inode;
++      struct super_block *h_sb;
 +
-+      h_inode = h_path->dentry->d_inode;
 +      if (!h_file) {
-+              err = mnt_want_write(h_path->mnt);
-+              if (err)
-+                      goto out;
-+              err = inode_permission(h_inode, MAY_WRITE);
-+              if (err)
-+                      goto out_mnt;
-+              err = get_write_access(h_inode);
-+              if (err)
-+                      goto out_mnt;
-+              err = break_lease(h_inode, O_WRONLY);
-+              if (err)
-+                      goto out_inode;
++              err = vfsub_truncate(h_path, length);
++              goto out;
 +      }
 +
++      h_inode = h_path->dentry->d_inode;
++      h_sb = h_inode->i_sb;
++      lockdep_off();
++      sb_start_write(h_sb);
++      lockdep_on();
 +      err = locks_verify_truncate(h_inode, h_file, length);
 +      if (!err)
 +              err = security_path_truncate(h_path);
@@ -26383,13 +27790,10 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +              err = do_truncate(h_path->dentry, length, attr, h_file);
 +              lockdep_on();
 +      }
++      lockdep_off();
++      sb_end_write(h_sb);
++      lockdep_on();
 +
-+out_inode:
-+      if (!h_file)
-+              put_write_access(h_inode);
-+out_mnt:
-+      if (!h_file)
-+              mnt_drop_write(h_path->mnt);
 +out:
 +      return err;
 +}
@@ -26595,10 +27999,10 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +}
 diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 --- /usr/share/empty/fs/aufs/vfsub.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/vfsub.h      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,232 @@
++++ linux/fs/aufs/vfsub.h      2013-07-30 22:42:55.842946719 +0200
+@@ -0,0 +1,259 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -26625,48 +28029,14 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +#ifdef __KERNEL__
 +
 +#include <linux/fs.h>
-+#include <linux/lglock.h>
++#include <linux/mount.h>
 +#include "debug.h"
 +
 +/* copied from linux/fs/internal.h */
 +/* todo: BAD approach!! */
-+DECLARE_BRLOCK(vfsmount_lock);
-+extern void file_sb_list_del(struct file *f);
++extern void __mnt_drop_write(struct vfsmount *);
 +extern spinlock_t inode_sb_list_lock;
 +
-+/* copied from linux/fs/file_table.c */
-+DECLARE_LGLOCK(files_lglock);
-+#ifdef CONFIG_SMP
-+/*
-+ * These macros iterate all files on all CPUs for a given superblock.
-+ * files_lglock must be held globally.
-+ */
-+#define do_file_list_for_each_entry(__sb, __file)             \
-+{                                                             \
-+      int i;                                                  \
-+      for_each_possible_cpu(i) {                              \
-+              struct list_head *list;                         \
-+              list = per_cpu_ptr((__sb)->s_files, i);         \
-+              list_for_each_entry((__file), list, f_u.fu_list)
-+
-+#define while_file_list_for_each_entry                                \
-+      }                                                       \
-+}
-+
-+#else
-+
-+#define do_file_list_for_each_entry(__sb, __file)             \
-+{                                                             \
-+      struct list_head *list;                                 \
-+      list = &(sb)->s_files;                                  \
-+      list_for_each_entry((__file), list, f_u.fu_list)
-+
-+#define while_file_list_for_each_entry                                \
-+}
-+#endif
-+
-+/* ---------------------------------------------------------------------- */
-+
 +/* lock subclass for lower inode */
 +/* default MAX_LOCKDEP_SUBCLASSES(8) is not enough */
 +/* reduce? gave up. */
@@ -26705,10 +28075,48 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +struct file *vfsub_dentry_open(struct path *path, int flags);
 +struct file *vfsub_filp_open(const char *path, int oflags, int mode);
 +int vfsub_kern_path(const char *name, unsigned int flags, struct path *path);
++
 +struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent,
 +                                  int len);
-+struct dentry *vfsub_lookup_hash(struct nameidata *nd);
-+int vfsub_name_hash(const char *name, struct qstr *this, int len);
++
++struct vfsub_lkup_one_args {
++      struct dentry **errp;
++      struct qstr *name;
++      struct dentry *parent;
++};
++
++static inline struct dentry *vfsub_lkup_one(struct qstr *name,
++                                          struct dentry *parent)
++{
++      return vfsub_lookup_one_len(name->name, parent, name->len);
++}
++
++void vfsub_call_lkup_one(void *args);
++
++/* ---------------------------------------------------------------------- */
++
++static inline int vfsub_mnt_want_write(struct vfsmount *mnt)
++{
++      int err;
++      lockdep_off();
++      err = mnt_want_write(mnt);
++      lockdep_on();
++      return err;
++}
++
++static inline void vfsub_mnt_drop_write(struct vfsmount *mnt)
++{
++      lockdep_off();
++      mnt_drop_write(mnt);
++      lockdep_on();
++}
++
++static inline void vfsub_mnt_drop_write_file(struct file *file)
++{
++      lockdep_off();
++      mnt_drop_write_file(file);
++      lockdep_on();
++}
 +
 +/* ---------------------------------------------------------------------- */
 +
@@ -26718,7 +28126,8 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +void vfsub_unlock_rename(struct dentry *d1, struct au_hinode *hdir1,
 +                       struct dentry *d2, struct au_hinode *hdir2);
 +
-+int vfsub_create(struct inode *dir, struct path *path, int mode);
++int vfsub_create(struct inode *dir, struct path *path, int mode,
++               bool want_excl);
 +int vfsub_symlink(struct inode *dir, struct path *path,
 +                const char *symname);
 +int vfsub_mknod(struct inode *dir, struct path *path, int mode, dev_t dev);
@@ -26742,6 +28151,11 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +int vfsub_flush(struct file *file, fl_owner_t id);
 +int vfsub_readdir(struct file *file, filldir_t filldir, void *arg);
 +
++static inline loff_t vfsub_f_size_read(struct file *file)
++{
++      return i_size_read(file_inode(file));
++}
++
 +static inline unsigned int vfsub_file_flags(struct file *file)
 +{
 +      unsigned int flags;
@@ -26766,15 +28180,32 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +              .dentry = h_dentry,
 +              .mnt    = h_mnt
 +      };
-+      touch_atime(h_mnt, h_dentry);
++      touch_atime(&h_path);
 +      vfsub_update_h_iattr(&h_path, /*did*/NULL); /*ignore*/
 +}
 +
++static inline int vfsub_update_time(struct inode *h_inode, struct timespec *ts,
++                                  int flags)
++{
++      return update_time(h_inode, ts, flags);
++      /* no vfsub_update_h_iattr() since we don't have struct path */
++}
++
 +long vfsub_splice_to(struct file *in, loff_t *ppos,
 +                   struct pipe_inode_info *pipe, size_t len,
 +                   unsigned int flags);
 +long vfsub_splice_from(struct pipe_inode_info *pipe, struct file *out,
 +                     loff_t *ppos, size_t len, unsigned int flags);
++
++static inline long vfsub_truncate(struct path *path, loff_t length)
++{
++      long err;
++      lockdep_off();
++      err = vfs_truncate(path, length);
++      lockdep_on();
++      return err;
++}
++
 +int vfsub_trunc(struct path *h_path, loff_t length, unsigned int attr,
 +              struct file *h_file);
 +int vfsub_fsync(struct file *file, struct path *path, int datasync);
@@ -26831,10 +28262,10 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +#endif /* __AUFS_VFSUB_H__ */
 diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 --- /usr/share/empty/fs/aufs/wbr_policy.c      1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/wbr_policy.c 2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,700 @@
++++ linux/fs/aufs/wbr_policy.c 2013-08-23 23:59:39.638250372 +0200
+@@ -0,0 +1,693 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -26872,7 +28303,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      ia.ia_uid = h_isrc->i_uid;
 +      ia.ia_gid = h_isrc->i_gid;
 +      sbits = !!(ia.ia_mode & (S_ISUID | S_ISGID));
-+      au_cpup_attr_flags(h_path->dentry->d_inode, h_isrc);
++      au_cpup_attr_flags(h_path->dentry->d_inode, h_isrc->i_flags);
 +      err = vfsub_sio_notify_change(h_path, &ia);
 +
 +      /* is this nfs only? */
@@ -26895,13 +28326,8 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +#define au_fclr_cpdown(flags, name) \
 +      do { (flags) &= ~AuCpdown_##name; } while (0)
 +
-+struct au_cpdown_dir_args {
-+      struct dentry *parent;
-+      unsigned int flags;
-+};
-+
 +static int au_cpdown_dir_opq(struct dentry *dentry, aufs_bindex_t bdst,
-+                           struct au_cpdown_dir_args *a)
++                           unsigned int *flags)
 +{
 +      int err;
 +      struct dentry *opq_dentry;
@@ -26911,7 +28337,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      if (IS_ERR(opq_dentry))
 +              goto out;
 +      dput(opq_dentry);
-+      au_fset_cpdown(a->flags, DIROPQ);
++      au_fset_cpdown(*flags, DIROPQ);
 +
 +out:
 +      return err;
@@ -26932,7 +28358,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +
 +      err = 0;
 +      if (h_path.dentry->d_inode) {
-+              h_path.mnt = br->br_mnt;
++              h_path.mnt = au_br_mnt(br);
 +              err = au_wh_unlink_dentry(au_h_iptr(dir, bdst), &h_path,
 +                                        dentry);
 +      }
@@ -26943,6 +28369,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +}
 +
 +static int au_cpdown_dir(struct dentry *dentry, aufs_bindex_t bdst,
++                       struct au_pin *pin,
 +                       struct dentry *h_parent, void *arg)
 +{
 +      int err, rerr;
@@ -26950,7 +28377,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      struct path h_path;
 +      struct dentry *parent;
 +      struct inode *h_dir, *h_inode, *inode, *dir;
-+      struct au_cpdown_dir_args *args = arg;
++      unsigned int *flags = arg;
 +
 +      bstart = au_dbstart(dentry);
 +      /* dentry is di-locked */
@@ -26960,7 +28387,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      AuDebugOn(h_dir != au_h_iptr(dir, bdst));
 +      IMustLock(h_dir);
 +
-+      err = au_lkup_neg(dentry, bdst);
++      err = au_lkup_neg(dentry, bdst, /*wh*/0);
 +      if (unlikely(err < 0))
 +              goto out;
 +      h_path.dentry = au_h_dptr(dentry, bdst);
@@ -26969,19 +28396,19 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +                            S_IRWXU | S_IRUGO | S_IXUGO);
 +      if (unlikely(err))
 +              goto out_put;
-+      au_fset_cpdown(args->flags, MADE_DIR);
++      au_fset_cpdown(*flags, MADE_DIR);
 +
 +      bopq = au_dbdiropq(dentry);
-+      au_fclr_cpdown(args->flags, WHED);
-+      au_fclr_cpdown(args->flags, DIROPQ);
++      au_fclr_cpdown(*flags, WHED);
++      au_fclr_cpdown(*flags, DIROPQ);
 +      if (au_dbwh(dentry) == bdst)
-+              au_fset_cpdown(args->flags, WHED);
-+      if (!au_ftest_cpdown(args->flags, PARENT_OPQ) && bopq <= bdst)
-+              au_fset_cpdown(args->flags, PARENT_OPQ);
++              au_fset_cpdown(*flags, WHED);
++      if (!au_ftest_cpdown(*flags, PARENT_OPQ) && bopq <= bdst)
++              au_fset_cpdown(*flags, PARENT_OPQ);
 +      h_inode = h_path.dentry->d_inode;
 +      mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
-+      if (au_ftest_cpdown(args->flags, WHED)) {
-+              err = au_cpdown_dir_opq(dentry, bdst, args);
++      if (au_ftest_cpdown(*flags, WHED)) {
++              err = au_cpdown_dir_opq(dentry, bdst, flags);
 +              if (unlikely(err)) {
 +                      mutex_unlock(&h_inode->i_mutex);
 +                      goto out_dir;
@@ -26993,7 +28420,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      if (unlikely(err))
 +              goto out_opq;
 +
-+      if (au_ftest_cpdown(args->flags, WHED)) {
++      if (au_ftest_cpdown(*flags, WHED)) {
 +              err = au_cpdown_dir_wh(dentry, h_parent, dir, bdst);
 +              if (unlikely(err))
 +                      goto out_opq;
@@ -27008,7 +28435,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +
 +      /* revert */
 +out_opq:
-+      if (au_ftest_cpdown(args->flags, DIROPQ)) {
++      if (au_ftest_cpdown(*flags, DIROPQ)) {
 +              mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
 +              rerr = au_diropq_remove(dentry, bdst);
 +              mutex_unlock(&h_inode->i_mutex);
@@ -27020,7 +28447,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +              }
 +      }
 +out_dir:
-+      if (au_ftest_cpdown(args->flags, MADE_DIR)) {
++      if (au_ftest_cpdown(*flags, MADE_DIR)) {
 +              rerr = vfsub_sio_rmdir(au_h_iptr(dir, bdst), &h_path);
 +              if (unlikely(rerr)) {
 +                      AuIOErr("failed removing %.*s b%d (%d)\n",
@@ -27040,13 +28467,10 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +int au_cpdown_dirs(struct dentry *dentry, aufs_bindex_t bdst)
 +{
 +      int err;
-+      struct au_cpdown_dir_args args = {
-+              .parent = dget_parent(dentry),
-+              .flags  = 0
-+      };
++      unsigned int flags;
 +
-+      err = au_cp_dirs(dentry, bdst, au_cpdown_dir, &args);
-+      dput(args.parent);
++      flags = 0;
++      err = au_cp_dirs(dentry, bdst, au_cpdown_dir, &flags);
 +
 +      return err;
 +}
@@ -27055,7 +28479,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +
 +/* policies for create */
 +
-+static int au_wbr_nonopq(struct dentry *dentry, aufs_bindex_t bindex)
++int au_wbr_nonopq(struct dentry *dentry, aufs_bindex_t bindex)
 +{
 +      int err, i, j, ndentry;
 +      aufs_bindex_t bopq;
@@ -27266,7 +28690,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +                      continue;
 +
 +              /* sb->s_root for NFS is unreliable */
-+              h_path.mnt = br->br_mnt;
++              h_path.mnt = au_br_mnt(br);
 +              h_path.dentry = h_path.mnt->mnt_root;
 +              err = vfs_statfs(&h_path, st);
 +              if (unlikely(err)) {
@@ -27535,10 +28959,10 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +};
 diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 --- /usr/share/empty/fs/aufs/whout.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/whout.c      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,1049 @@
++++ linux/fs/aufs/whout.c      2013-07-06 13:20:47.760198800 +0200
+@@ -0,0 +1,1022 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -27567,10 +28991,8 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 + * If a directory contains this file, then it is opaque.  We start with the
 + * .wh. flag so that it is blocked by lookup.
 + */
-+static struct qstr diropq_name = {
-+      .name = AUFS_WH_DIROPQ,
-+      .len = sizeof(AUFS_WH_DIROPQ) - 1
-+};
++static struct qstr diropq_name = QSTR_INIT(AUFS_WH_DIROPQ,
++                                         sizeof(AUFS_WH_DIROPQ) - 1);
 +
 +/*
 + * generate whiteout name, which is NOT terminated by NULL.
@@ -27612,7 +29034,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      struct dentry *wh_dentry;
 +
 +      if (!try_sio)
-+              wh_dentry = au_lkup_one(wh_name, h_parent, br, /*nd*/NULL);
++              wh_dentry = vfsub_lkup_one(wh_name, h_parent);
 +      else
 +              wh_dentry = au_sio_lkup_one(wh_name, h_parent, br);
 +      err = PTR_ERR(wh_dentry);
@@ -27695,7 +29117,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +                      goto out_name;
 +              dput(dentry);
 +      }
-+      /* pr_warning("could not get random name\n"); */
++      /* pr_warn("could not get random name\n"); */
 +      dentry = ERR_PTR(-EEXIST);
 +      AuDbg("%.*s\n", AuLNPair(&qs));
 +      BUG();
@@ -27715,7 +29137,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +{
 +      int err;
 +      struct path h_path = {
-+              .mnt = br->br_mnt
++              .mnt = au_br_mnt(br)
 +      };
 +      struct inode *h_dir;
 +      struct dentry *h_parent;
@@ -27753,7 +29175,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +       * this may be a violation of unix fs semantics.
 +       */
 +      force = (h_dir->i_mode & S_ISVTX)
-+              && h_path->dentry->d_inode->i_uid != current_fsuid();
++              && !uid_eq(current_fsuid(), h_path->dentry->d_inode->i_uid);
 +      return vfsub_unlink(h_dir, h_path, force);
 +}
 +
@@ -27774,11 +29196,11 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +{
 +      int err;
 +      struct path h_path = {
-+              .mnt = br->br_mnt
++              .mnt = au_br_mnt(br)
 +      };
 +
 +      err = 0;
-+      h_path.dentry = au_lkup_one(wh, h_parent, br, /*nd*/NULL);
++      h_path.dentry = vfsub_lkup_one(wh, h_parent);
 +      if (IS_ERR(h_path.dentry))
 +              err = PTR_ERR(h_path.dentry);
 +      else {
@@ -27804,17 +29226,13 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      if (!whpath->dentry->d_inode)
 +              return;
 +
-+      err = mnt_want_write(whpath->mnt);
-+      if (!err) {
-+              if (isdir)
-+                      err = vfsub_rmdir(h_dir, whpath);
-+              else
-+                      err = vfsub_unlink(h_dir, whpath, /*force*/0);
-+              mnt_drop_write(whpath->mnt);
-+      }
++      if (isdir)
++              err = vfsub_rmdir(h_dir, whpath);
++      else
++              err = vfsub_unlink(h_dir, whpath, /*force*/0);
 +      if (unlikely(err))
-+              pr_warning("failed removing %.*s (%d), ignored.\n",
-+                         AuDLNPair(whpath->dentry), err);
++              pr_warn("failed removing %.*s (%d), ignored.\n",
++                      AuDLNPair(whpath->dentry), err);
 +}
 +
 +static int test_linkable(struct dentry *h_root)
@@ -27840,11 +29258,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +
 +              if (au_test_nfs(path->dentry->d_sb))
 +                      mode |= S_IXUGO;
-+              err = mnt_want_write(path->mnt);
-+              if (!err) {
-+                      err = vfsub_mkdir(h_dir, path, mode);
-+                      mnt_drop_write(path->mnt);
-+              }
++              err = vfsub_mkdir(h_dir, path, mode);
 +      } else if (S_ISDIR(path->dentry->d_inode->i_mode))
 +              err = 0;
 +      else
@@ -27938,12 +29352,8 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      err = -EEXIST;
 +      h_dir = h_root->d_inode;
 +      if (!base[AuBrWh_BASE].dentry->d_inode) {
-+              err = mnt_want_write(h_path->mnt);
-+              if (!err) {
-+                      h_path->dentry = base[AuBrWh_BASE].dentry;
-+                      err = vfsub_create(h_dir, h_path, WH_MASK);
-+                      mnt_drop_write(h_path->mnt);
-+              }
++              h_path->dentry = base[AuBrWh_BASE].dentry;
++              err = vfsub_create(h_dir, h_path, WH_MASK, /*want_excl*/true);
 +      } else if (S_ISREG(base[AuBrWh_BASE].dentry->d_inode->i_mode))
 +              err = 0;
 +      else
@@ -27975,30 +29385,22 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +/*
 + * initialize the whiteout base file/dir for @br.
 + */
-+int au_wh_init(struct dentry *h_root, struct au_branch *br,
-+             struct super_block *sb)
++int au_wh_init(struct au_branch *br, struct super_block *sb)
 +{
 +      int err, i;
 +      const unsigned char do_plink
 +              = !!au_opt_test(au_mntflags(sb), PLINK);
-+      struct path path = {
-+              .mnt = br->br_mnt
-+      };
 +      struct inode *h_dir;
++      struct path path = br->br_path;
++      struct dentry *h_root = path.dentry;
 +      struct au_wbr *wbr = br->br_wbr;
 +      static const struct qstr base_name[] = {
-+              [AuBrWh_BASE] = {
-+                      .name   = AUFS_BASE_NAME,
-+                      .len    = sizeof(AUFS_BASE_NAME) - 1
-+              },
-+              [AuBrWh_PLINK] = {
-+                      .name   = AUFS_PLINKDIR_NAME,
-+                      .len    = sizeof(AUFS_PLINKDIR_NAME) - 1
-+              },
-+              [AuBrWh_ORPH] = {
-+                      .name   = AUFS_ORPHDIR_NAME,
-+                      .len    = sizeof(AUFS_ORPHDIR_NAME) - 1
-+              }
++              [AuBrWh_BASE] = QSTR_INIT(AUFS_BASE_NAME,
++                                        sizeof(AUFS_BASE_NAME) - 1),
++              [AuBrWh_PLINK] = QSTR_INIT(AUFS_PLINKDIR_NAME,
++                                         sizeof(AUFS_PLINKDIR_NAME) - 1),
++              [AuBrWh_ORPH] = QSTR_INIT(AUFS_ORPHDIR_NAME,
++                                        sizeof(AUFS_ORPHDIR_NAME) - 1)
 +      };
 +      struct au_wh_base base[] = {
 +              [AuBrWh_BASE] = {
@@ -28104,28 +29506,25 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      dir = a->sb->s_root->d_inode;
 +      hdir = au_hi(dir, bindex);
 +      h_root = au_h_dptr(a->sb->s_root, bindex);
++      AuDebugOn(h_root != au_br_dentry(a->br));
 +
 +      au_hn_imtx_lock_nested(hdir, AuLsc_I_PARENT);
 +      wbr_wh_write_lock(wbr);
 +      err = au_h_verify(wbr->wbr_whbase, au_opt_udba(a->sb), hdir->hi_inode,
 +                        h_root, a->br);
 +      if (!err) {
-+              err = mnt_want_write(a->br->br_mnt);
-+              if (!err) {
-+                      h_path.dentry = wbr->wbr_whbase;
-+                      h_path.mnt = a->br->br_mnt;
-+                      err = vfsub_unlink(hdir->hi_inode, &h_path, /*force*/0);
-+                      mnt_drop_write(a->br->br_mnt);
-+              }
++              h_path.dentry = wbr->wbr_whbase;
++              h_path.mnt = au_br_mnt(a->br);
++              err = vfsub_unlink(hdir->hi_inode, &h_path, /*force*/0);
 +      } else {
-+              pr_warning("%.*s is moved, ignored\n",
-+                         AuDLNPair(wbr->wbr_whbase));
++              pr_warn("%.*s is moved, ignored\n",
++                      AuDLNPair(wbr->wbr_whbase));
 +              err = 0;
 +      }
 +      dput(wbr->wbr_whbase);
 +      wbr->wbr_whbase = NULL;
 +      if (!err)
-+              err = au_wh_init(h_root, a->br, a->sb);
++              err = au_wh_init(a->br, a->sb);
 +      wbr_wh_write_unlock(wbr);
 +      au_hn_imtx_unlock(hdir);
 +      di_read_unlock(a->sb->s_root, AuLock_IR);
@@ -28196,7 +29595,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      IMustLock(h_dir);
 +
 +      br = au_sbr(sb, bindex);
-+      h_path.mnt = br->br_mnt;
++      h_path.mnt = au_br_mnt(br);
 +      wbr = br->br_wbr;
 +      wbr_wh_read_lock(wbr);
 +      if (wbr->wbr_whbase) {
@@ -28209,7 +29608,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      }
 +
 +      /* return this error in this context */
-+      err = vfsub_create(h_dir, &h_path, WH_MASK);
++      err = vfsub_create(h_dir, &h_path, WH_MASK, /*want_excl*/true);
 +
 +out:
 +      wbr_wh_read_unlock(wbr);
@@ -28232,7 +29631,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      sb = dentry->d_sb;
 +      br = au_sbr(sb, bindex);
 +      h_dentry = au_h_dptr(dentry, bindex);
-+      opq_dentry = au_lkup_one(&diropq_name, h_dentry, br, /*nd*/NULL);
++      opq_dentry = vfsub_lkup_one(&diropq_name, h_dentry);
 +      if (IS_ERR(opq_dentry))
 +              goto out;
 +
@@ -28245,7 +29644,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      } else {
 +              struct path tmp = {
 +                      .dentry = opq_dentry,
-+                      .mnt    = br->br_mnt
++                      .mnt    = au_br_mnt(br)
 +              };
 +              err = do_unlink_wh(au_h_iptr(dentry->d_inode, bindex), &tmp);
 +              if (!err)
@@ -28314,7 +29713,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      err = au_wh_name_alloc(&wh_name, base_name);
 +      wh_dentry = ERR_PTR(err);
 +      if (!err) {
-+              wh_dentry = au_lkup_one(&wh_name, h_parent, br, /*nd*/NULL);
++              wh_dentry = vfsub_lkup_one(&wh_name, h_parent);
 +              kfree(wh_name.name);
 +      }
 +      return wh_dentry;
@@ -28356,12 +29755,11 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      struct qstr wh_name;
 +      char *p;
 +      struct hlist_head *head;
-+      struct au_vdir_wh *tpos;
-+      struct hlist_node *pos;
++      struct au_vdir_wh *pos;
 +      struct au_vdir_destr *str;
 +
 +      err = -ENOMEM;
-+      p = __getname_gfp(GFP_NOFS);
++      p = (void *)__get_free_page(GFP_NOFS);
 +      wh_name.name = p;
 +      if (unlikely(!wh_name.name))
 +              goto out;
@@ -28372,11 +29770,11 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      n = whlist->nh_num;
 +      head = whlist->nh_head;
 +      for (ul = 0; !err && ul < n; ul++, head++) {
-+              hlist_for_each_entry(tpos, pos, head, wh_hash) {
-+                      if (tpos->wh_bindex != bindex)
++              hlist_for_each_entry(pos, head, wh_hash) {
++                      if (pos->wh_bindex != bindex)
 +                              continue;
 +
-+                      str = &tpos->wh_str;
++                      str = &pos->wh_str;
 +                      if (str->len + AUFS_WH_PFX_LEN <= PATH_MAX) {
 +                              memcpy(p, str->name, str->len);
 +                              wh_name.len = AUFS_WH_PFX_LEN + str->len;
@@ -28391,7 +29789,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +                      break;
 +              }
 +      }
-+      __putname(wh_name.name);
++      free_page((unsigned long)wh_name.name);
 +
 +out:
 +      return err;
@@ -28497,7 +29895,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +
 +      if (!err) {
 +              h_tmp.dentry = wh_dentry;
-+              h_tmp.mnt = br->br_mnt;
++              h_tmp.mnt = au_br_mnt(br);
 +              err = vfsub_rmdir(h_dir, &h_tmp);
 +      }
 +
@@ -28510,8 +29908,8 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +              return 0; /* success */
 +      }
 +
-+      pr_warning("failed removing %.*s(%d), ignored\n",
-+                 AuDLNPair(wh_dentry), err);
++      pr_warn("failed removing %.*s(%d), ignored\n",
++              AuDLNPair(wh_dentry), err);
 +      return err;
 +}
 +
@@ -28541,21 +29939,20 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      h_parent = dget_parent(a->wh_dentry);
 +      h_dir = h_parent->d_inode;
 +      hdir = au_hi(a->dir, bindex);
++      err = vfsub_mnt_want_write(au_br_mnt(a->br));
++      if (unlikely(err))
++              goto out_mnt;
 +      au_hn_imtx_lock_nested(hdir, AuLsc_I_PARENT);
 +      err = au_h_verify(a->wh_dentry, au_opt_udba(sb), h_dir, h_parent,
 +                        a->br);
-+      if (!err) {
-+              err = mnt_want_write(a->br->br_mnt);
-+              if (!err) {
-+                      err = au_whtmp_rmdir(a->dir, bindex, a->wh_dentry,
-+                                           &a->whlist);
-+                      mnt_drop_write(a->br->br_mnt);
-+              }
-+      }
++      if (!err)
++              err = au_whtmp_rmdir(a->dir, bindex, a->wh_dentry, &a->whlist);
 +      au_hn_imtx_unlock(hdir);
++      vfsub_mnt_drop_write(au_br_mnt(a->br));
++
++out_mnt:
 +      dput(h_parent);
 +      ii_write_unlock(a->dir);
-+
 +out:
 +      /* mutex_unlock(&a->dir->i_mutex); */
 +      au_whtmp_rmdir_free(a);
@@ -28581,17 +29978,17 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      args->wh_dentry = dget(wh_dentry);
 +      wkq_err = au_wkq_nowait(call_rmdir_whtmp, args, sb, /*flags*/0);
 +      if (unlikely(wkq_err)) {
-+              pr_warning("rmdir error %.*s (%d), ignored\n",
-+                         AuDLNPair(wh_dentry), wkq_err);
++              pr_warn("rmdir error %.*s (%d), ignored\n",
++                      AuDLNPair(wh_dentry), wkq_err);
 +              au_whtmp_rmdir_free(args);
 +      }
 +}
 diff -urN /usr/share/empty/fs/aufs/whout.h linux/fs/aufs/whout.h
 --- /usr/share/empty/fs/aufs/whout.h   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/whout.h      2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,88 @@
++++ linux/fs/aufs/whout.h      2013-07-06 13:20:47.760198800 +0200
+@@ -0,0 +1,87 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -28630,8 +30027,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.h linux/fs/aufs/whout.h
 +int au_whtmp_ren(struct dentry *h_dentry, struct au_branch *br);
 +int au_wh_unlink_dentry(struct inode *h_dir, struct path *h_path,
 +                      struct dentry *dentry);
-+int au_wh_init(struct dentry *h_parent, struct au_branch *br,
-+             struct super_block *sb);
++int au_wh_init(struct au_branch *br, struct super_block *sb);
 +
 +/* diropq flags */
 +#define AuDiropq_CREATE       1
@@ -28680,10 +30076,10 @@ diff -urN /usr/share/empty/fs/aufs/whout.h linux/fs/aufs/whout.h
 +#endif /* __AUFS_WHOUT_H__ */
 diff -urN /usr/share/empty/fs/aufs/wkq.c linux/fs/aufs/wkq.c
 --- /usr/share/empty/fs/aufs/wkq.c     1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/wkq.c        2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,214 @@
++++ linux/fs/aufs/wkq.c        2013-08-23 23:59:39.638250372 +0200
+@@ -0,0 +1,213 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -28730,7 +30126,7 @@ diff -urN /usr/share/empty/fs/aufs/wkq.c linux/fs/aufs/wkq.c
 +{
 +      struct au_wkinfo *wkinfo = container_of(wk, struct au_wkinfo, wk);
 +
-+      AuDebugOn(current_fsuid());
++      AuDebugOn(!uid_eq(current_fsuid(), GLOBAL_ROOT_UID));
 +      AuDebugOn(rlimit(RLIMIT_FSIZE) != RLIM_INFINITY);
 +
 +      wkinfo->func(wkinfo->args);
@@ -28746,7 +30142,7 @@ diff -urN /usr/share/empty/fs/aufs/wkq.c linux/fs/aufs/wkq.c
 +/*
 + * Since struct completion is large, try allocating it dynamically.
 + */
-+#if defined(CONFIG_4KSTACKS) || defined(AuTest4KSTACKS)
++#if 1 /* defined(CONFIG_4KSTACKS) || defined(AuTest4KSTACKS) */
 +#define AuWkqCompDeclare(name)        struct completion *comp = NULL
 +
 +static int au_wkq_comp_alloc(struct au_wkinfo *wkinfo, struct completion **comp)
@@ -28887,8 +30283,7 @@ diff -urN /usr/share/empty/fs/aufs/wkq.c linux/fs/aufs/wkq.c
 +      int err;
 +
 +      err = 0;
-+      BUILD_BUG_ON(!WQ_RESCUER);
-+      au_wkq = alloc_workqueue(AUFS_WKQ_NAME, !WQ_RESCUER, WQ_DFL_ACTIVE);
++      au_wkq = alloc_workqueue(AUFS_WKQ_NAME, 0, WQ_DFL_ACTIVE);
 +      if (IS_ERR(au_wkq))
 +              err = PTR_ERR(au_wkq);
 +      else if (!au_wkq)
@@ -28898,10 +30293,10 @@ diff -urN /usr/share/empty/fs/aufs/wkq.c linux/fs/aufs/wkq.c
 +}
 diff -urN /usr/share/empty/fs/aufs/wkq.h linux/fs/aufs/wkq.h
 --- /usr/share/empty/fs/aufs/wkq.h     1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/wkq.h        2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/wkq.h        2013-07-06 13:20:47.760198800 +0200
 @@ -0,0 +1,92 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -28994,10 +30389,10 @@ diff -urN /usr/share/empty/fs/aufs/wkq.h linux/fs/aufs/wkq.h
 +#endif /* __AUFS_WKQ_H__ */
 diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 --- /usr/share/empty/fs/aufs/xino.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/xino.c       2012-02-13 21:54:56.973105100 +0100
++++ linux/fs/aufs/xino.c       2013-07-06 13:20:47.760198800 +0200
 @@ -0,0 +1,1264 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -29163,7 +30558,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +              goto out_dput;
 +      }
 +
-+      path.mnt = base_file->f_vfsmnt;
++      path.mnt = base_file->f_path.mnt;
 +      file = vfsub_dentry_open(&path,
 +                               O_RDWR | O_CREAT | O_EXCL | O_LARGEFILE
 +                               /* | __FMODE_NONOTIFY */);
@@ -29180,8 +30575,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +      if (copy_src) {
 +              /* no one can touch copy_src xino */
-+              err = au_copy_file(file, copy_src,
-+                                 i_size_read(copy_src->f_dentry->d_inode));
++              err = au_copy_file(file, copy_src, vfsub_f_size_read(copy_src));
 +              if (unlikely(err)) {
 +                      pr_err("%.*s copy err %d\n", AuLNPair(name), err);
 +                      goto out_fput;
@@ -29267,12 +30661,12 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      fput(file);
 +      br->br_xino.xi_file = new_xino;
 +
-+      h_sb = br->br_mnt->mnt_sb;
++      h_sb = au_br_sb(br);
 +      for (bi = 0; bi <= bend; bi++) {
 +              if (unlikely(bi == bindex))
 +                      continue;
 +              br = au_sbr(sb, bi);
-+              if (br->br_mnt->mnt_sb != h_sb)
++              if (au_br_sb(br) != h_sb)
 +                      continue;
 +
 +              fput(br->br_xino.xi_file);
@@ -29308,13 +30702,14 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      bindex = au_br_index(sb, br->br_id);
 +      err = au_xino_trunc(sb, bindex);
 +      if (!err
-+          && br->br_xino.xi_file->f_dentry->d_inode->i_blocks
++          && file_inode(br->br_xino.xi_file)->i_blocks
 +          >= br->br_xino_upper)
 +              br->br_xino_upper += AUFS_XINO_TRUNC_STEP;
 +
 +      ii_read_unlock(dir);
 +      if (unlikely(err))
-+              pr_warning("err b%d, (%d)\n", bindex, err);
++              pr_warn("err b%d, upper %llu, (%d)\n",
++                      bindex, (unsigned long long)br->br_xino_upper, err);
 +      atomic_dec(&br->br_xino_running);
 +      atomic_dec(&br->br_count);
 +      si_write_unlock(sb);
@@ -29327,7 +30722,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      struct xino_do_trunc_args *args;
 +      int wkq_err;
 +
-+      if (br->br_xino.xi_file->f_dentry->d_inode->i_blocks
++      if (file_inode(br->br_xino.xi_file)->i_blocks
 +          < br->br_xino_upper)
 +              return;
 +
@@ -29406,7 +30801,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +                             h_ino, ino);
 +      if (!err) {
 +              if (au_opt_test(mnt_flags, TRUNC_XINO)
-+                  && au_test_fs_trunc_xino(br->br_mnt->mnt_sb))
++                  && au_test_fs_trunc_xino(au_br_sb(br)))
 +                      xino_try_trunc(sb, br);
 +              return 0; /* success */
 +      }
@@ -29464,7 +30859,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +      pos = pindex;
 +      pos *= PAGE_SIZE;
-+      if (i_size_read(xib->f_dentry->d_inode) >= pos + PAGE_SIZE)
++      if (vfsub_f_size_read(xib) >= pos + PAGE_SIZE)
 +              sz = xino_fread(sbinfo->si_xread, xib, p, PAGE_SIZE, &pos);
 +      else {
 +              memset(p, 0, PAGE_SIZE);
@@ -29559,7 +30954,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +              err = au_xino_do_write(xwrite, br->br_xino.xi_file,
 +                                     h_inode->i_ino, /*ino*/0);
 +              if (!err && try_trunc
-+                  && au_test_fs_trunc_xino(br->br_mnt->mnt_sb))
++                  && au_test_fs_trunc_xino(au_br_sb(br)))
 +                      xino_try_trunc(sb, br);
 +      }
 +}
@@ -29597,7 +30992,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      }
 +
 +      file = sbinfo->si_xib;
-+      pend = i_size_read(file->f_dentry->d_inode) / PAGE_SIZE;
++      pend = vfsub_f_size_read(file) / PAGE_SIZE;
 +      for (ul = pindex + 1; ul <= pend; ul++) {
 +              err = xib_pindex(sb, ul);
 +              if (unlikely(err))
@@ -29650,7 +31045,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      pos *= sizeof(*ino);
 +
 +      file = au_sbr(sb, bindex)->br_xino.xi_file;
-+      if (i_size_read(file->f_dentry->d_inode) < pos + sizeof(*ino))
++      if (vfsub_f_size_read(file) < pos + sizeof(*ino))
 +              return 0; /* no ino */
 +
 +      sz = xino_fread(sbinfo->si_xread, file, ino, sizeof(*ino), &pos);
@@ -29766,10 +31161,10 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      shared_br = NULL;
 +      bend = au_sbend(sb);
 +      if (do_test) {
-+              tgt_sb = br->br_mnt->mnt_sb;
++              tgt_sb = au_br_sb(br);
 +              for (bindex = 0; bindex <= bend; bindex++) {
 +                      b = au_sbr(sb, bindex);
-+                      if (tgt_sb == b->br_mnt->mnt_sb) {
++                      if (tgt_sb == au_br_sb(b)) {
 +                              shared_br = b;
 +                              break;
 +                      }
@@ -29825,7 +31220,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      MtxMustLock(&sbinfo->si_xib_mtx);
 +      p = sbinfo->si_xib_buf;
 +      func = sbinfo->si_xread;
-+      pend = i_size_read(file->f_dentry->d_inode);
++      pend = vfsub_f_size_read(file);
 +      pos = 0;
 +      while (pos < pend) {
 +              sz = xino_fread(func, file, page, PAGE_SIZE, &pos);
@@ -29895,7 +31290,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +              goto out;
 +
 +      file = sbinfo->si_xib;
-+      if (i_size_read(file->f_dentry->d_inode) <= PAGE_SIZE)
++      if (vfsub_f_size_read(file) <= PAGE_SIZE)
 +              goto out;
 +
 +      au_xino_lock_dir(sb, file, &ldir);
@@ -30005,7 +31400,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +      sbinfo->si_xib_last_pindex = 0;
 +      sbinfo->si_xib_next_bit = 0;
-+      if (i_size_read(file->f_dentry->d_inode) < PAGE_SIZE) {
++      if (vfsub_f_size_read(file) < PAGE_SIZE) {
 +              pos = 0;
 +              err = xino_fwrite(sbinfo->si_xwrite, file, sbinfo->si_xib_buf,
 +                                PAGE_SIZE, &pos);
@@ -30198,7 +31593,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      for (bindex = 0; bindex <= bend; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              if (au_br_writable(br->br_perm)
-+                  && !au_test_fs_bad_xino(br->br_mnt->mnt_sb)) {
++                  && !au_test_fs_bad_xino(au_br_sb(br))) {
 +                      bwr = bindex;
 +                      break;
 +              }
@@ -30206,10 +31601,10 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +      if (bwr >= 0) {
 +              file = ERR_PTR(-ENOMEM);
-+              page = __getname_gfp(GFP_NOFS);
++              page = (void *)__get_free_page(GFP_NOFS);
 +              if (unlikely(!page))
 +                      goto out;
-+              path.mnt = br->br_mnt;
++              path.mnt = au_br_mnt(br);
 +              path.dentry = au_h_dptr(sb->s_root, bwr);
 +              p = d_path(&path, page, PATH_MAX - sizeof(AUFS_XINO_FNAME));
 +              file = (void *)p;
@@ -30220,7 +31615,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +                      if (!IS_ERR(file))
 +                              au_xino_brid_set(sb, br->br_id);
 +              }
-+              __putname(page);
++              free_page((unsigned long)page);
 +      } else {
 +              file = au_xino_create(sb, AUFS_XINO_DEFPATH, /*silent*/0);
 +              if (IS_ERR(file))
@@ -30262,10 +31657,33 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +}
 diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_type.h
 --- /usr/share/empty/include/linux/aufs_type.h 1970-01-01 01:00:00.000000000 +0100
-+++ linux/include/linux/aufs_type.h    2012-02-13 21:54:56.973105100 +0100
-@@ -0,0 +1,233 @@
++++ linux/include/linux/aufs_type.h    2013-07-06 13:20:47.760198800 +0200
+@@ -0,0 +1,19 @@
++/*
++ * Copyright (C) 2012-2013 Junjiro R. Okajima
++ *
++ * This program, aufs is free software; you can redistribute it and/or modify
++ * it under the terms of the GNU General Public License as published by
++ * the Free Software Foundation; either version 2 of the License, or
++ * (at your option) any later version.
++ *
++ * This program is distributed in the hope that it will be useful,
++ * but WITHOUT ANY WARRANTY; without even the implied warranty of
++ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
++ * GNU General Public License for more details.
++ *
++ * You should have received a copy of the GNU General Public License
++ * along with this program; if not, write to the Free Software
++ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
++ */
++
++#include <uapi/linux/aufs_type.h>
+diff -urN /usr/share/empty/include/uapi/linux/aufs_type.h linux/include/uapi/linux/aufs_type.h
+--- /usr/share/empty/include/uapi/linux/aufs_type.h    1970-01-01 01:00:00.000000000 +0100
++++ linux/include/uapi/linux/aufs_type.h       2013-08-23 23:59:39.638250372 +0200
+@@ -0,0 +1,251 @@
 +/*
-+ * Copyright (C) 2005-2012 Junjiro R. Okajima
++ * Copyright (C) 2005-2013 Junjiro R. Okajima
 + *
 + * This program, aufs is free software; you can redistribute it and/or modify
 + * it under the terms of the GNU General Public License as published by
@@ -30296,8 +31714,9 @@ diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_ty
 +#define pr_fmt(fmt)   AUFS_NAME " %s:%d: " fmt, __func__, __LINE__
 +#include <linux/sched.h>
 +#undef pr_fmt
-+#define pr_fmt(fmt)   AUFS_NAME " %s:%d:%s[%d]: " fmt, \
-+              __func__, __LINE__, current->comm, current->pid
++#define pr_fmt(fmt) \
++              AUFS_NAME " %s:%d:%.*s[%d]: " fmt, __func__, __LINE__, \
++              (int)sizeof(current->comm), current->comm, current->pid
 +#else
 +#include <stdint.h>
 +#include <sys/types.h>
@@ -30305,7 +31724,7 @@ diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_ty
 +
 +#include <linux/limits.h>
 +
-+#define AUFS_VERSION  "3.2-20120109"
++#define AUFS_VERSION  "3.10-20130819"
 +
 +/* todo? move this to linux-2.6.19/include/magic.h */
 +#define AUFS_SUPER_MAGIC      ('a' << 24 | 'u' << 16 | 'f' << 8 | 's')
@@ -30342,7 +31761,7 @@ diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_ty
 +#define AUFS_WH_PFX           ".wh."
 +#define AUFS_WH_PFX_LEN               ((int)sizeof(AUFS_WH_PFX) - 1)
 +#define AUFS_WH_TMP_LEN               4
-+/* a limit for rmdir/rename a dir */
++/* a limit for rmdir/rename a dir and copyup */
 +#define AUFS_MAX_NAMELEN      (NAME_MAX \
 +                              - AUFS_WH_PFX_LEN * 2   /* doubly whiteouted */\
 +                              - 1                     /* dot */\
@@ -30359,7 +31778,7 @@ diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_ty
 +#define AUFS_WKQ_NAME         AUFS_NAME "d"
 +#define AUFS_MFS_DEF_SEC      30 /* seconds */
 +#define AUFS_MFS_MAX_SEC      3600 /* seconds */
-+#define AUFS_PLINK_WARN               100 /* number of plinks */
++#define AUFS_PLINK_WARN               50 /* number of plinks in a single bucket */
 +
 +/* pseudo-link maintenace under /proc */
 +#define AUFS_PLINK_MAINT_NAME "plink_maint"
@@ -30384,6 +31803,7 @@ diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_ty
 +#define AUFS_BRPERM_RR                "rr"
 +#define AUFS_BRRATTR_WH               "wh"
 +#define AUFS_BRWATTR_NLWH     "nolwh"
++#define AUFS_BRATTR_UNPIN     "unpin"
 +
 +/* ---------------------------------------------------------------------- */
 +
@@ -30397,7 +31817,10 @@ diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_ty
 +      AuCtl_WBR_FD,
 +
 +      /* busy inode */
-+      AuCtl_IBUSY
++      AuCtl_IBUSY,
++
++      /* move-down */
++      AuCtl_MVDOWN
 +};
 +
 +/* borrowed from linux/include/linux/kernel.h */
@@ -30489,12 +31912,24 @@ diff -urN /usr/share/empty/include/linux/aufs_type.h linux/include/linux/aufs_ty
 +
 +/* ---------------------------------------------------------------------- */
 +
++/* flags for move-down */
++#define AUFS_MVDOWN_VERBOSE   1
++/* will be added more */
++
++struct aufs_mvdown {
++      uint8_t         flags;
++      /* will be added more */
++} __aligned(8);
++
++/* ---------------------------------------------------------------------- */
++
 +#define AuCtlType             'A'
 +#define AUFS_CTL_RDU          _IOWR(AuCtlType, AuCtl_RDU, struct aufs_rdu)
 +#define AUFS_CTL_RDU_INO      _IOWR(AuCtlType, AuCtl_RDU_INO, struct aufs_rdu)
 +#define AUFS_CTL_WBR_FD               _IOW(AuCtlType, AuCtl_WBR_FD, \
 +                                   struct aufs_wbr_fd)
 +#define AUFS_CTL_IBUSY                _IOWR(AuCtlType, AuCtl_IBUSY, struct aufs_ibusy)
++#define AUFS_CTL_MVDOWN               _IOR(AuCtlType, AuCtl_MVDOWN, \
++                                   struct aufs_mvdown)
 +
 +#endif /* __AUFS_TYPE_H__ */
-
This page took 0.568111 seconds and 4 git commands to generate.