]> git.pld-linux.org Git - packages/kernel.git/blobdiff - kernel-aufs4.patch
- drop obsolete files
[packages/kernel.git] / kernel-aufs4.patch
index 1c0af207bf18ea2b5f747ea59298350e108bac9b..e0eb9ca1a33fdd2dac5b33f71bf2159b36bb4dca 100644 (file)
@@ -1,10 +1,10 @@
-aufs4.3 kbuild patch
+aufs4.x-rcN kbuild patch
 
 diff --git a/fs/Kconfig b/fs/Kconfig
-index da3f32f..b9879fe 100644
+index 7aee6d6..ec92031 100644
 --- a/fs/Kconfig
 +++ b/fs/Kconfig
-@@ -215,6 +215,7 @@ source "fs/pstore/Kconfig"
+@@ -248,6 +248,7 @@ source "fs/pstore/Kconfig"
  source "fs/sysv/Kconfig"
  source "fs/ufs/Kconfig"
  source "fs/exofs/Kconfig"
@@ -13,33 +13,21 @@ index da3f32f..b9879fe 100644
  endif # MISC_FILESYSTEMS
  
 diff --git a/fs/Makefile b/fs/Makefile
-index f79cf40..7562a4d 100644
+index 7bbaca9..a026491 100644
 --- a/fs/Makefile
 +++ b/fs/Makefile
-@@ -125,3 +125,4 @@ obj-y                              += exofs/ # Multiple modules
+@@ -128,3 +128,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/uapi/linux/Kbuild b/include/uapi/linux/Kbuild
-index f7b2db4..47098aed 100644
---- a/include/uapi/linux/Kbuild
-+++ b/include/uapi/linux/Kbuild
-@@ -59,6 +59,7 @@ header-y += atmsvc.h
- header-y += atm_tcp.h
- header-y += atm_zatm.h
- header-y += audit.h
-+header-y += aufs_type.h
- header-y += auto_fs4.h
- header-y += auto_fs.h
- header-y += auxvec.h
-aufs4.3 base patch
+aufs4.x-rcN base patch
 
 diff --git a/MAINTAINERS b/MAINTAINERS
-index 747c653..53ecc33 100644
+index 1c3feff..1a12137 100644
 --- a/MAINTAINERS
 +++ b/MAINTAINERS
-@@ -1985,6 +1985,19 @@ F:      include/linux/audit.h
+@@ -2392,6 +2392,19 @@ F:      include/linux/audit.h
  F:    include/uapi/linux/audit.h
  F:    kernel/audit*
  
@@ -60,10 +48,10 @@ index 747c653..53ecc33 100644
  M:    Miguel Ojeda Sandonis <miguel.ojeda.sandonis@gmail.com>
  W:    http://miguelojeda.es/auxdisplay.htm
 diff --git a/drivers/block/loop.c b/drivers/block/loop.c
-index 674f800a..291ec9e 100644
+index f321b96..10707c3 100644
 --- a/drivers/block/loop.c
 +++ b/drivers/block/loop.c
-@@ -560,6 +560,24 @@ static inline int is_loop_device(struct file *file)
+@@ -700,6 +700,24 @@ static inline int is_loop_device(struct file *file)
        return i && S_ISBLK(i->i_mode) && MAJOR(i->i_rdev) == LOOP_MAJOR;
  }
  
@@ -83,16 +71,16 @@ index 674f800a..291ec9e 100644
 +      }
 +      return ret;
 +}
-+EXPORT_SYMBOL(loop_backing_file);
++EXPORT_SYMBOL_GPL(loop_backing_file);
 +
  /* loop sysfs attributes */
  
  static ssize_t loop_attr_show(struct device *dev, char *page,
 diff --git a/fs/dcache.c b/fs/dcache.c
-index 5c33aeb..8aa7f26 100644
+index f901413..e3719a5 100644
 --- a/fs/dcache.c
 +++ b/fs/dcache.c
-@@ -1167,7 +1167,7 @@ enum d_walk_ret {
+@@ -1197,7 +1197,7 @@ enum d_walk_ret {
   *
   * The @enter() and @finish() callbacks are called with d_lock held.
   */
@@ -101,11 +89,46 @@ index 5c33aeb..8aa7f26 100644
                   enum d_walk_ret (*enter)(void *, struct dentry *),
                   void (*finish)(void *))
  {
+diff --git a/fs/fcntl.c b/fs/fcntl.c
+index 3b01b64..659760e 100644
+--- a/fs/fcntl.c
++++ b/fs/fcntl.c
+@@ -31,7 +31,7 @@
+ #define SETFL_MASK (O_APPEND | O_NONBLOCK | O_NDELAY | O_DIRECT | O_NOATIME)
+-static int setfl(int fd, struct file * filp, unsigned long arg)
++int setfl(int fd, struct file * filp, unsigned long arg)
+ {
+       struct inode * inode = file_inode(filp);
+       int error = 0;
+@@ -62,6 +62,8 @@ static int setfl(int fd, struct file * filp, unsigned long arg)
+       if (filp->f_op->check_flags)
+               error = filp->f_op->check_flags(arg);
++      if (!error && filp->f_op->setfl)
++              error = filp->f_op->setfl(filp, arg);
+       if (error)
+               return error;
+diff --git a/fs/inode.c b/fs/inode.c
+index 5037059..73820bf 100644
+--- a/fs/inode.c
++++ b/fs/inode.c
+@@ -1641,7 +1641,7 @@ EXPORT_SYMBOL(generic_update_time);
+  * This does the actual work of updating an inodes time or version.  Must have
+  * had called mnt_want_write() before calling this.
+  */
+-static int update_time(struct inode *inode, struct timespec *time, int flags)
++int update_time(struct inode *inode, struct timespec *time, int flags)
+ {
+       int (*update_time)(struct inode *, struct timespec *, int);
 diff --git a/fs/read_write.c b/fs/read_write.c
-index 819ef3f..fd0414e 100644
+index 0cc7033..6e542f0 100644
 --- a/fs/read_write.c
 +++ b/fs/read_write.c
-@@ -494,6 +494,28 @@ ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
+@@ -473,6 +473,28 @@ ssize_t __vfs_write(struct file *file, const char __user *p, size_t count,
  }
  EXPORT_SYMBOL(__vfs_write);
  
@@ -135,10 +158,10 @@ index 819ef3f..fd0414e 100644
  {
        mm_segment_t old_fs;
 diff --git a/fs/splice.c b/fs/splice.c
-index 5fc1e50..5f8385a 100644
+index ae41201..9753304 100644
 --- a/fs/splice.c
 +++ b/fs/splice.c
-@@ -1102,8 +1102,8 @@ EXPORT_SYMBOL(generic_splice_sendpage);
+@@ -853,8 +853,8 @@ EXPORT_SYMBOL(generic_splice_sendpage);
  /*
   * Attempt to initiate a splice from pipe to file.
   */
@@ -149,7 +172,7 @@ index 5fc1e50..5f8385a 100644
  {
        ssize_t (*splice_write)(struct pipe_inode_info *, struct file *,
                                loff_t *, size_t, unsigned int);
-@@ -1119,9 +1119,9 @@ static long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
+@@ -870,9 +870,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.
   */
@@ -162,23 +185,52 @@ index 5fc1e50..5f8385a 100644
  {
        ssize_t (*splice_read)(struct file *, loff_t *,
                               struct pipe_inode_info *, size_t, unsigned int);
+diff --git a/fs/sync.c b/fs/sync.c
+index 2a54c1f..7a5fa3f 100644
+--- a/fs/sync.c
++++ b/fs/sync.c
+@@ -27,7 +27,7 @@
+  * wait == 1 case since in that case write_inode() functions do
+  * sync_dirty_buffer() and thus effectively write one block at a time.
+  */
+-static int __sync_filesystem(struct super_block *sb, int wait)
++int __sync_filesystem(struct super_block *sb, int wait)
+ {
+       if (wait)
+               sync_inodes_sb(sb);
 diff --git a/include/linux/file.h b/include/linux/file.h
-index f87d308..9a290b3 100644
+index 61eb82c..e700888 100644
 --- a/include/linux/file.h
 +++ b/include/linux/file.h
 @@ -19,6 +19,7 @@ struct dentry;
  struct path;
- extern struct file *alloc_file(struct path *, fmode_t mode,
+ extern struct file *alloc_file(const struct path *, fmode_t mode,
        const struct file_operations *fop);
 +extern struct file *get_empty_filp(void);
  
  static inline void fput_light(struct file *file, int fput_needed)
  {
 diff --git a/include/linux/fs.h b/include/linux/fs.h
-index 72d8a84..fabd9d7a 100644
+index cbfe127..9b21bb5 100644
 --- a/include/linux/fs.h
 +++ b/include/linux/fs.h
-@@ -1687,6 +1687,12 @@ ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
+@@ -1262,6 +1262,7 @@ extern void fasync_free(struct fasync_struct *);
+ /* can be called from interrupts */
+ extern void kill_fasync(struct fasync_struct **, int, int);
++extern int setfl(int fd, struct file * filp, unsigned long arg);
+ extern void __f_setown(struct file *filp, struct pid *, enum pid_type, int force);
+ extern int f_setown(struct file *filp, unsigned long arg, int force);
+ extern void f_delown(struct file *filp);
+@@ -1683,6 +1684,7 @@ struct file_operations {
+       ssize_t (*sendpage) (struct file *, struct page *, int, size_t, loff_t *, int);
+       unsigned long (*get_unmapped_area)(struct file *, unsigned long, unsigned long, unsigned long, unsigned long);
+       int (*check_flags)(int);
++      int (*setfl)(struct file *, unsigned long);
+       int (*flock) (struct file *, int, struct file_lock *);
+       ssize_t (*splice_write)(struct pipe_inode_info *, struct file *, loff_t *, size_t, unsigned int);
+       ssize_t (*splice_read)(struct file *, loff_t *, struct pipe_inode_info *, size_t, unsigned int);
+@@ -1753,6 +1755,12 @@ ssize_t rw_copy_check_uvector(int type, const struct iovec __user * uvector,
                              struct iovec *fast_pointer,
                              struct iovec **ret_pointer);
  
@@ -191,14 +243,30 @@ index 72d8a84..fabd9d7a 100644
  extern ssize_t __vfs_read(struct file *, char __user *, size_t, loff_t *);
  extern ssize_t __vfs_write(struct file *, const char __user *, size_t, loff_t *);
  extern ssize_t vfs_read(struct file *, char __user *, size_t, loff_t *);
+@@ -2157,6 +2165,7 @@ extern int current_umask(void);
+ extern void ihold(struct inode * inode);
+ extern void iput(struct inode *);
+ extern int generic_update_time(struct inode *, struct timespec *, int);
++extern int update_time(struct inode *, struct timespec *, int);
+ /* /sys/fs */
+ extern struct kobject *fs_kobj;
+@@ -2437,6 +2446,7 @@ static inline bool sb_is_blkdev_sb(struct super_block *sb)
+       return false;
+ }
+ #endif
++extern int __sync_filesystem(struct super_block *, int);
+ extern int sync_filesystem(struct super_block *);
+ extern const struct file_operations def_blk_fops;
+ extern const struct file_operations def_chr_fops;
 diff --git a/include/linux/splice.h b/include/linux/splice.h
-index da2751d..2e0fca6 100644
+index db42746..12f3a5a 100644
 --- a/include/linux/splice.h
 +++ b/include/linux/splice.h
-@@ -83,4 +83,10 @@ extern void splice_shrink_spd(struct splice_pipe_desc *);
- extern void spd_release_page(struct splice_pipe_desc *, unsigned int);
+@@ -86,4 +86,10 @@ extern void splice_shrink_spd(struct splice_pipe_desc *);
  
  extern const struct pipe_buf_operations page_cache_pipe_buf_ops;
+ extern const struct pipe_buf_operations default_pipe_buf_ops;
 +
 +extern long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
 +                         loff_t *ppos, size_t len, unsigned int flags);
@@ -206,26 +274,13 @@ index da2751d..2e0fca6 100644
 +                       struct pipe_inode_info *pipe, size_t len,
 +                       unsigned int flags);
  #endif
-aufs4.3 mmap patch
+aufs4.x-rcN mmap patch
 
-diff --git a/fs/buffer.c b/fs/buffer.c
-index 82283ab..477e5f3 100644
---- a/fs/buffer.c
-+++ b/fs/buffer.c
-@@ -2473,7 +2473,7 @@ int block_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf,
-        * Update file times before taking page lock. We may end up failing the
-        * fault so this update may be superfluous but who really cares...
-        */
--      file_update_time(vma->vm_file);
-+      vma_file_update_time(vma);
-       ret = __block_page_mkwrite(vma, vmf, get_block);
-       sb_end_pagefault(sb);
 diff --git a/fs/proc/base.c b/fs/proc/base.c
-index b25eee4..c83d588 100644
+index 719c2e9..a1b7968 100644
 --- a/fs/proc/base.c
 +++ b/fs/proc/base.c
-@@ -1914,7 +1914,7 @@ static int proc_map_files_get_link(struct dentry *dentry, struct path *path)
+@@ -1986,7 +1986,7 @@ static int map_files_get_link(struct dentry *dentry, struct path *path)
        down_read(&mm->mmap_sem);
        vma = find_exact_vma(mm, vm_start, vm_end);
        if (vma && vma->vm_file) {
@@ -235,7 +290,7 @@ index b25eee4..c83d588 100644
                rc = 0;
        }
 diff --git a/fs/proc/nommu.c b/fs/proc/nommu.c
-index f8595e8..cb8eda0 100644
+index 7563437..7c0dc0f 100644
 --- a/fs/proc/nommu.c
 +++ b/fs/proc/nommu.c
 @@ -45,7 +45,10 @@ static int nommu_region_show(struct seq_file *m, struct vm_region *region)
@@ -251,10 +306,10 @@ index f8595e8..cb8eda0 100644
                ino = inode->i_ino;
        }
 diff --git a/fs/proc/task_mmu.c b/fs/proc/task_mmu.c
-index e2d46ad..5e7e631 100644
+index fe8f326..b2f7f1a 100644
 --- a/fs/proc/task_mmu.c
 +++ b/fs/proc/task_mmu.c
-@@ -280,7 +280,10 @@ show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
+@@ -293,7 +293,10 @@ show_map_vma(struct seq_file *m, struct vm_area_struct *vma, int is_pid)
        const char *name = NULL;
  
        if (file) {
@@ -266,7 +321,7 @@ index e2d46ad..5e7e631 100644
                dev = inode->i_sb->s_dev;
                ino = inode->i_ino;
                pgoff = ((loff_t)vma->vm_pgoff) << PAGE_SHIFT;
-@@ -1465,7 +1468,7 @@ static int show_numa_map(struct seq_file *m, void *v, int is_pid)
+@@ -1640,7 +1643,7 @@ static int show_numa_map(struct seq_file *m, void *v, int is_pid)
        struct proc_maps_private *proc_priv = &numa_priv->proc_maps;
        struct vm_area_struct *vma = v;
        struct numa_maps *md = &numa_priv->md;
@@ -276,10 +331,10 @@ index e2d46ad..5e7e631 100644
        struct mm_walk walk = {
                .hugetlb_entry = gather_hugetlb_stats,
 diff --git a/fs/proc/task_nommu.c b/fs/proc/task_nommu.c
-index e0d64c9..7aa92db 100644
+index 23266694..58e59b6 100644
 --- a/fs/proc/task_nommu.c
 +++ b/fs/proc/task_nommu.c
-@@ -160,7 +160,10 @@ static int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma,
+@@ -157,7 +157,10 @@ static int nommu_vma_show(struct seq_file *m, struct vm_area_struct *vma,
        file = vma->vm_file;
  
        if (file) {
@@ -292,10 +347,10 @@ index e0d64c9..7aa92db 100644
                ino = inode->i_ino;
                pgoff = (loff_t)vma->vm_pgoff << PAGE_SHIFT;
 diff --git a/include/linux/mm.h b/include/linux/mm.h
-index 80001de..9248b97 100644
+index 46b9ac5..62ba1c3 100644
 --- a/include/linux/mm.h
 +++ b/include/linux/mm.h
-@@ -1211,6 +1211,28 @@ static inline int fixup_user_fault(struct task_struct *tsk,
+@@ -1306,6 +1306,28 @@ static inline int fixup_user_fault(struct task_struct *tsk,
  }
  #endif
  
@@ -321,14 +376,14 @@ index 80001de..9248b97 100644
 +#define vmr_fput(region)              vmr_do_fput(region, __func__, __LINE__)
 +#endif /* !CONFIG_MMU */
 +
- extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len, int write);
+ extern int access_process_vm(struct task_struct *tsk, unsigned long addr, void *buf, int len,
+               unsigned int gup_flags);
  extern int access_remote_vm(struct mm_struct *mm, unsigned long addr,
-               void *buf, int len, int write);
 diff --git a/include/linux/mm_types.h b/include/linux/mm_types.h
-index 3d6baa7..750ca95 100644
+index 3cadee0..d0142c1 100644
 --- a/include/linux/mm_types.h
 +++ b/include/linux/mm_types.h
-@@ -250,6 +250,7 @@ struct vm_region {
+@@ -259,6 +259,7 @@ struct vm_region {
        unsigned long   vm_top;         /* region allocated to here */
        unsigned long   vm_pgoff;       /* the offset in vm_file corresponding to vm_start */
        struct file     *vm_file;       /* the backing file or NULL */
@@ -336,19 +391,19 @@ index 3d6baa7..750ca95 100644
  
        int             vm_usage;       /* region usage count (access under nommu_region_sem) */
        bool            vm_icache_flushed : 1; /* true if the icache has been flushed for
-@@ -324,6 +325,7 @@ struct vm_area_struct {
+@@ -333,6 +334,7 @@ struct vm_area_struct {
        unsigned long vm_pgoff;         /* Offset (within vm_file) in PAGE_SIZE
-                                          units, *not* PAGE_CACHE_SIZE */
+                                          units */
        struct file * vm_file;          /* File we map to (can be NULL). */
 +      struct file *vm_prfile;         /* shadow of vm_file */
        void * vm_private_data;         /* was vm_pte (shared mem) */
  
  #ifndef CONFIG_MMU
 diff --git a/kernel/fork.c b/kernel/fork.c
-index 2845623..71004bd 100644
+index cbbea27..f0fd8a1 100644
 --- a/kernel/fork.c
 +++ b/kernel/fork.c
-@@ -462,7 +462,7 @@ static int dup_mmap(struct mm_struct *mm, struct mm_struct *oldmm)
+@@ -663,7 +663,7 @@ static __latent_entropy int dup_mmap(struct mm_struct *mm,
                        struct inode *inode = file_inode(file);
                        struct address_space *mapping = file->f_mapping;
  
@@ -358,12 +413,12 @@ index 2845623..71004bd 100644
                                atomic_dec(&inode->i_writecount);
                        i_mmap_lock_write(mapping);
 diff --git a/mm/Makefile b/mm/Makefile
-index 2ed4319..e3a53f5 100644
+index 411bd24..e7de927 100644
 --- a/mm/Makefile
 +++ b/mm/Makefile
-@@ -21,7 +21,7 @@ obj-y                        := filemap.o mempool.o oom_kill.o \
+@@ -39,7 +39,7 @@ obj-y                        := filemap.o mempool.o oom_kill.o \
                           mm_init.o mmu_context.o percpu.o slab_common.o \
-                          compaction.o vmacache.o \
+                          compaction.o vmacache.o swap_slots.o \
                           interval_tree.o list_lru.o workingset.o \
 -                         debug.o $(mmu-y)
 +                         prfile.o debug.o $(mmu-y)
@@ -371,36 +426,23 @@ index 2ed4319..e3a53f5 100644
  obj-y += init-mm.o
  
 diff --git a/mm/filemap.c b/mm/filemap.c
-index 327910c..7bbc372 100644
+index 0b41c8c..c5262ff 100644
 --- a/mm/filemap.c
 +++ b/mm/filemap.c
-@@ -2089,7 +2089,7 @@ int filemap_page_mkwrite(struct vm_area_struct *vma, struct vm_fault *vmf)
+@@ -2543,7 +2543,7 @@ int filemap_page_mkwrite(struct vm_fault *vmf)
        int ret = VM_FAULT_LOCKED;
  
        sb_start_pagefault(inode->i_sb);
--      file_update_time(vma->vm_file);
-+      vma_file_update_time(vma);
+-      file_update_time(vmf->vma->vm_file);
++      vma_file_update_time(vmf->vma);
        lock_page(page);
        if (page->mapping != inode->i_mapping) {
                unlock_page(page);
-diff --git a/mm/memory.c b/mm/memory.c
-index deb679c..df2ce3e 100644
---- a/mm/memory.c
-+++ b/mm/memory.c
-@@ -2035,7 +2035,7 @@ static inline int wp_page_reuse(struct mm_struct *mm,
-               }
-               if (!page_mkwrite)
--                      file_update_time(vma->vm_file);
-+                      vma_file_update_time(vma);
-       }
-       return VM_FAULT_WRITE;
 diff --git a/mm/mmap.c b/mm/mmap.c
-index 79bcc9f..da28c8a 100644
+index f19efcf..7fdd59e 100644
 --- a/mm/mmap.c
 +++ b/mm/mmap.c
-@@ -275,7 +275,7 @@ static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
+@@ -170,7 +170,7 @@ static struct vm_area_struct *remove_vma(struct vm_area_struct *vma)
        if (vma->vm_ops && vma->vm_ops->close)
                vma->vm_ops->close(vma);
        if (vma->vm_file)
@@ -409,7 +451,7 @@ index 79bcc9f..da28c8a 100644
        mpol_put(vma_policy(vma));
        kmem_cache_free(vm_area_cachep, vma);
        return next;
-@@ -887,7 +887,7 @@ again:                     remove_next = 1 + (end > next->vm_end);
+@@ -895,7 +895,7 @@ int __vma_adjust(struct vm_area_struct *vma, unsigned long start,
        if (remove_next) {
                if (file) {
                        uprobe_munmap(next, next->vm_start, next->vm_end);
@@ -418,7 +460,7 @@ index 79bcc9f..da28c8a 100644
                }
                if (next->anon_vma)
                        anon_vma_merge(vma, next);
-@@ -1683,8 +1683,8 @@ out:
+@@ -1745,8 +1745,8 @@ unsigned long mmap_region(struct file *file, unsigned long addr,
        return addr;
  
  unmap_and_free_vma:
@@ -428,7 +470,7 @@ index 79bcc9f..da28c8a 100644
  
        /* Undo any partial mapping done by a device driver. */
        unmap_region(mm, vma, prev, vma->vm_start, vma->vm_end);
-@@ -2485,7 +2485,7 @@ static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -2568,7 +2568,7 @@ int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
                goto out_free_mpol;
  
        if (new->vm_file)
@@ -437,7 +479,7 @@ index 79bcc9f..da28c8a 100644
  
        if (new->vm_ops && new->vm_ops->open)
                new->vm_ops->open(new);
-@@ -2504,7 +2504,7 @@ static int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
+@@ -2587,7 +2587,7 @@ int __split_vma(struct mm_struct *mm, struct vm_area_struct *vma,
        if (new->vm_ops && new->vm_ops->close)
                new->vm_ops->close(new);
        if (new->vm_file)
@@ -446,28 +488,45 @@ index 79bcc9f..da28c8a 100644
        unlink_anon_vmas(new);
   out_free_mpol:
        mpol_put(vma_policy(new));
-@@ -2646,7 +2646,6 @@ SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
+@@ -2741,7 +2741,7 @@ SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
        struct vm_area_struct *vma;
        unsigned long populate = 0;
        unsigned long ret = -EINVAL;
 -      struct file *file;
++      struct file *file, *prfile;
  
-       pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. "
-                       "See Documentation/vm/remap_file_pages.txt.\n",
-@@ -2690,10 +2689,10 @@ SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
-               munlock_vma_pages_range(vma, start, start + size);
+       pr_warn_once("%s (%d) uses deprecated remap_file_pages() syscall. See Documentation/vm/remap_file_pages.txt.\n",
+                    current->comm, current->pid);
+@@ -2816,10 +2816,27 @@ SYSCALL_DEFINE5(remap_file_pages, unsigned long, start, unsigned long, size,
+               }
        }
  
 -      file = get_file(vma->vm_file);
 +      vma_get_file(vma);
++      file = vma->vm_file;
++      prfile = vma->vm_prfile;
        ret = do_mmap_pgoff(vma->vm_file, start, size,
-                       prot, flags, pgoff, &populate);
--      fput(file);
-+      vma_fput(vma);
+                       prot, flags, pgoff, &populate, NULL);
++      if (!IS_ERR_VALUE(ret) && file && prfile) {
++              struct vm_area_struct *new_vma;
++
++              new_vma = find_vma(mm, ret);
++              if (!new_vma->vm_prfile)
++                      new_vma->vm_prfile = prfile;
++              if (new_vma != vma)
++                      get_file(prfile);
++      }
++      /*
++       * two fput()s instead of vma_fput(vma),
++       * coz vma may not be available anymore.
++       */
+       fput(file);
++      if (prfile)
++              fput(prfile);
  out:
        up_write(&mm->mmap_sem);
        if (populate)
-@@ -2963,7 +2962,7 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
+@@ -3110,7 +3127,7 @@ struct vm_area_struct *copy_vma(struct vm_area_struct **vmap,
                if (anon_vma_clone(new_vma, vma))
                        goto out_free_mempol;
                if (new_vma->vm_file)
@@ -477,10 +536,10 @@ index 79bcc9f..da28c8a 100644
                        new_vma->vm_ops->open(new_vma);
                vma_link(mm, new_vma, prev, rb_link, rb_parent);
 diff --git a/mm/nommu.c b/mm/nommu.c
-index ab14a20..fffc566 100644
+index fc184f5..637ea81 100644
 --- a/mm/nommu.c
 +++ b/mm/nommu.c
-@@ -671,7 +671,7 @@ static void __put_nommu_region(struct vm_region *region)
+@@ -641,7 +641,7 @@ static void __put_nommu_region(struct vm_region *region)
                up_write(&nommu_region_sem);
  
                if (region->vm_file)
@@ -489,7 +548,7 @@ index ab14a20..fffc566 100644
  
                /* IO memory and memory shared directly out of the pagecache
                 * from ramfs/tmpfs mustn't be released here */
-@@ -829,7 +829,7 @@ static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
+@@ -799,7 +799,7 @@ static void delete_vma(struct mm_struct *mm, struct vm_area_struct *vma)
        if (vma->vm_ops && vma->vm_ops->close)
                vma->vm_ops->close(vma);
        if (vma->vm_file)
@@ -498,7 +557,7 @@ index ab14a20..fffc566 100644
        put_nommu_region(vma->vm_region);
        kmem_cache_free(vm_area_cachep, vma);
  }
-@@ -1355,7 +1355,7 @@ unsigned long do_mmap(struct file *file,
+@@ -1326,7 +1326,7 @@ unsigned long do_mmap(struct file *file,
                                        goto error_just_free;
                                }
                        }
@@ -507,7 +566,7 @@ index ab14a20..fffc566 100644
                        kmem_cache_free(vm_region_jar, region);
                        region = pregion;
                        result = start;
-@@ -1430,10 +1430,10 @@ error_just_free:
+@@ -1401,10 +1401,10 @@ unsigned long do_mmap(struct file *file,
        up_write(&nommu_region_sem);
  error:
        if (region->vm_file)
@@ -522,18 +581,18 @@ index ab14a20..fffc566 100644
  
 diff --git a/mm/prfile.c b/mm/prfile.c
 new file mode 100644
-index 0000000..b323b8a
+index 0000000..1ef053b
 --- /dev/null
 +++ b/mm/prfile.c
-@@ -0,0 +1,86 @@
+@@ -0,0 +1,85 @@
 +/*
-+ * Mainly for aufs which mmap(2) diffrent file and wants to print different path
-+ * in /proc/PID/maps.
++ * Mainly for aufs which mmap(2) different file and wants to print different
++ * path in /proc/PID/maps.
 + * Call these functions via macros defined in linux/mm.h.
 + *
 + * See Documentation/filesystems/aufs/design/06mmap.txt
 + *
-+ * Copyright (c) 2014 Junjro R. Okajima
++ * Copyright (c) 2014-2017 Junjro R. Okajima
 + * Copyright (c) 2014 Ian Campbell
 + */
 +
@@ -547,8 +606,7 @@ index 0000000..b323b8a
 +{
 +#ifdef PRFILE_TRACE
 +      if (pr)
-+              pr_info("%s:%d: %s, %s\n", func, line, func2,
-+                      f ? (char *)f->f_path.dentry->d_name.name : "(null)");
++              pr_info("%s:%d: %s, %pD2\n", func, line, func2, f);
 +#endif
 +}
 +
@@ -612,54 +670,102 @@ index 0000000..b323b8a
 +              fput(pr);
 +}
 +#endif /* !CONFIG_MMU */
-aufs4.3 standalone patch
+aufs4.x-rcN standalone patch
 
 diff --git a/fs/dcache.c b/fs/dcache.c
-index 8aa7f26..f997345 100644
+index e3719a5..3203470 100644
 --- a/fs/dcache.c
 +++ b/fs/dcache.c
-@@ -1272,6 +1272,7 @@ rename_retry:
+@@ -1305,6 +1305,7 @@ void d_walk(struct dentry *parent, void *data,
        seq = 1;
        goto again;
  }
-+EXPORT_SYMBOL(d_walk);
++EXPORT_SYMBOL_GPL(d_walk);
  
- /*
-  * Search for at least 1 mount point in the dentry's subdirs.
+ struct check_mount {
+       struct vfsmount *mnt;
+@@ -2894,6 +2895,7 @@ void d_exchange(struct dentry *dentry1, struct dentry *dentry2)
+       write_sequnlock(&rename_lock);
+ }
++EXPORT_SYMBOL_GPL(d_exchange);
+ /**
+  * d_ancestor - search for an ancestor
 diff --git a/fs/exec.c b/fs/exec.c
-index b06623a..b9206c5 100644
+index 62175cb..f0b6fdd 100644
 --- a/fs/exec.c
 +++ b/fs/exec.c
-@@ -103,6 +103,7 @@ bool path_noexec(const struct path *path)
+@@ -109,6 +109,7 @@ bool path_noexec(const struct path *path)
        return (path->mnt->mnt_flags & MNT_NOEXEC) ||
               (path->mnt->mnt_sb->s_iflags & SB_I_NOEXEC);
  }
-+EXPORT_SYMBOL(path_noexec);
++EXPORT_SYMBOL_GPL(path_noexec);
  
  #ifdef CONFIG_USELIB
  /*
+diff --git a/fs/fcntl.c b/fs/fcntl.c
+index 659760e..5c37087 100644
+--- a/fs/fcntl.c
++++ b/fs/fcntl.c
+@@ -84,6 +84,7 @@ int setfl(int fd, struct file * filp, unsigned long arg)
+  out:
+       return error;
+ }
++EXPORT_SYMBOL_GPL(setfl);
+ static void f_modown(struct file *filp, struct pid *pid, enum pid_type type,
+                      int force)
 diff --git a/fs/file_table.c b/fs/file_table.c
-index ad17e05..df66450 100644
+index 72e861a..01ae52f 100644
 --- a/fs/file_table.c
 +++ b/fs/file_table.c
-@@ -147,6 +147,7 @@ over:
+@@ -148,6 +148,7 @@ struct file *get_empty_filp(void)
        }
        return ERR_PTR(-ENFILE);
  }
-+EXPORT_SYMBOL(get_empty_filp);
++EXPORT_SYMBOL_GPL(get_empty_filp);
  
  /**
   * alloc_file - allocate and initialize a 'struct file'
-@@ -308,6 +309,7 @@ void put_filp(struct file *file)
+@@ -260,6 +261,7 @@ void flush_delayed_fput(void)
+ {
+       delayed_fput(NULL);
+ }
++EXPORT_SYMBOL_GPL(flush_delayed_fput);
+ static DECLARE_DELAYED_WORK(delayed_fput_work, delayed_fput);
+@@ -302,6 +304,7 @@ void __fput_sync(struct file *file)
+ }
+ EXPORT_SYMBOL(fput);
++EXPORT_SYMBOL_GPL(__fput_sync);
+ void put_filp(struct file *file)
+ {
+@@ -310,6 +313,7 @@ void put_filp(struct file *file)
                file_free(file);
        }
  }
-+EXPORT_SYMBOL(put_filp);
++EXPORT_SYMBOL_GPL(put_filp);
  
  void __init files_init(void)
  { 
+diff --git a/fs/inode.c b/fs/inode.c
+index 73820bf..7db829e 100644
+--- a/fs/inode.c
++++ b/fs/inode.c
+@@ -1650,6 +1650,7 @@ int update_time(struct inode *inode, struct timespec *time, int flags)
+       return update_time(inode, time, flags);
+ }
++EXPORT_SYMBOL_GPL(update_time);
+ /**
+  *    touch_atime     -       update the access time
 diff --git a/fs/namespace.c b/fs/namespace.c
-index 0570729..ec560d8 100644
+index f8893dc..c55d949 100644
 --- a/fs/namespace.c
 +++ b/fs/namespace.c
 @@ -463,6 +463,7 @@ void __mnt_drop_write(struct vfsmount *mnt)
@@ -670,16 +776,16 @@ index 0570729..ec560d8 100644
  
  /**
   * mnt_drop_write - give up write access to a mount
-@@ -1803,6 +1804,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
+@@ -1823,6 +1824,7 @@ int iterate_mounts(int (*f)(struct vfsmount *, void *), void *arg,
        }
        return 0;
  }
-+EXPORT_SYMBOL(iterate_mounts);
++EXPORT_SYMBOL_GPL(iterate_mounts);
  
  static void cleanup_group_ids(struct mount *mnt, struct mount *end)
  {
 diff --git a/fs/notify/group.c b/fs/notify/group.c
-index d16b62c..06ca6bc 100644
+index 3235753..14a2d48 100644
 --- a/fs/notify/group.c
 +++ b/fs/notify/group.c
 @@ -22,6 +22,7 @@
@@ -690,159 +796,180 @@ index d16b62c..06ca6bc 100644
  
  #include <linux/fsnotify_backend.h>
  #include "fsnotify.h"
-@@ -72,6 +73,7 @@ void fsnotify_get_group(struct fsnotify_group *group)
+@@ -109,6 +110,7 @@ void fsnotify_get_group(struct fsnotify_group *group)
  {
        atomic_inc(&group->refcnt);
  }
-+EXPORT_SYMBOL(fsnotify_get_group);
++EXPORT_SYMBOL_GPL(fsnotify_get_group);
  
  /*
   * Drop a reference to a group.  Free it if it's through.
-@@ -81,6 +83,7 @@ void fsnotify_put_group(struct fsnotify_group *group)
+@@ -118,6 +120,7 @@ void fsnotify_put_group(struct fsnotify_group *group)
        if (atomic_dec_and_test(&group->refcnt))
                fsnotify_final_destroy_group(group);
  }
-+EXPORT_SYMBOL(fsnotify_put_group);
++EXPORT_SYMBOL_GPL(fsnotify_put_group);
  
  /*
   * Create a new fsnotify_group and hold a reference for the group returned.
-@@ -109,6 +112,7 @@ struct fsnotify_group *fsnotify_alloc_group(const struct fsnotify_ops *ops)
+@@ -147,6 +150,7 @@ struct fsnotify_group *fsnotify_alloc_group(const struct fsnotify_ops *ops)
  
        return group;
  }
-+EXPORT_SYMBOL(fsnotify_alloc_group);
++EXPORT_SYMBOL_GPL(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 fc0df44..325b5c6 100644
+index 9991f88..117042c 100644
 --- a/fs/notify/mark.c
 +++ b/fs/notify/mark.c
-@@ -109,6 +109,7 @@ void fsnotify_put_mark(struct fsnotify_mark *mark)
-               mark->free_mark(mark);
-       }
+@@ -118,6 +118,7 @@ static bool fsnotify_get_mark_safe(struct fsnotify_mark *mark)
+ {
+       return atomic_inc_not_zero(&mark->refcnt);
  }
-+EXPORT_SYMBOL(fsnotify_put_mark);
++EXPORT_SYMBOL_GPL(fsnotify_put_mark);
  
- /* Calculate mask of events for a list of marks */
- u32 fsnotify_recalc_mask(struct hlist_head *head)
-@@ -208,6 +209,7 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark,
+ static void __fsnotify_recalc_mask(struct fsnotify_mark_connector *conn)
+ {
+@@ -395,6 +396,7 @@ void fsnotify_destroy_mark(struct fsnotify_mark *mark,
        mutex_unlock(&group->mark_mutex);
        fsnotify_free_mark(mark);
  }
-+EXPORT_SYMBOL(fsnotify_destroy_mark);
- void fsnotify_destroy_marks(struct hlist_head *head, spinlock_t *lock)
- {
-@@ -392,6 +394,7 @@ err:
++EXPORT_SYMBOL_GPL(fsnotify_destroy_mark);
  
+ /*
+  * Sorting function for lists of fsnotify marks.
+@@ -607,6 +609,7 @@ int fsnotify_add_mark_locked(struct fsnotify_mark *mark, struct inode *inode,
+       fsnotify_put_mark(mark);
        return ret;
  }
-+EXPORT_SYMBOL(fsnotify_add_mark);
++EXPORT_SYMBOL_GPL(fsnotify_add_mark);
  
- int fsnotify_add_mark(struct fsnotify_mark *mark, struct fsnotify_group *group,
-                     struct inode *inode, struct vfsmount *mnt, int allow_dups)
-@@ -492,6 +495,7 @@ void fsnotify_init_mark(struct fsnotify_mark *mark,
-       atomic_set(&mark->refcnt, 1);
-       mark->free_mark = free_mark;
+ int fsnotify_add_mark(struct fsnotify_mark *mark, struct inode *inode,
+                     struct vfsmount *mnt, int allow_dups)
+@@ -742,6 +745,7 @@ void fsnotify_init_mark(struct fsnotify_mark *mark,
+       fsnotify_get_group(group);
+       mark->group = group;
  }
-+EXPORT_SYMBOL(fsnotify_init_mark);
++EXPORT_SYMBOL_GPL(fsnotify_init_mark);
  
- static int fsnotify_mark_destroy(void *ignored)
- {
+ /*
+  * Destroy all marks in destroy_list, waits for SRCU period to finish before
 diff --git a/fs/open.c b/fs/open.c
-index b6f1e96..4ab0d4e 100644
+index 35bb784..92e08c5 100644
 --- a/fs/open.c
 +++ b/fs/open.c
 @@ -64,6 +64,7 @@ int do_truncate(struct dentry *dentry, loff_t length, unsigned int time_attrs,
-       mutex_unlock(&dentry->d_inode->i_mutex);
+       inode_unlock(dentry->d_inode);
        return ret;
  }
-+EXPORT_SYMBOL(do_truncate);
++EXPORT_SYMBOL_GPL(do_truncate);
  
- long vfs_truncate(struct path *path, loff_t length)
+ long vfs_truncate(const struct path *path, loff_t length)
  {
-@@ -678,6 +679,7 @@ int open_check_o_direct(struct file *f)
+@@ -691,6 +692,7 @@ int open_check_o_direct(struct file *f)
        }
        return 0;
  }
-+EXPORT_SYMBOL(open_check_o_direct);
++EXPORT_SYMBOL_GPL(open_check_o_direct);
  
  static int do_dentry_open(struct file *f,
                          struct inode *inode,
 diff --git a/fs/read_write.c b/fs/read_write.c
-index fd0414e..8ace6ec 100644
+index 6e542f0..c6fa090 100644
 --- a/fs/read_write.c
 +++ b/fs/read_write.c
-@@ -504,6 +504,7 @@ vfs_readf_t vfs_readf(struct file *file)
+@@ -483,6 +483,7 @@ vfs_readf_t vfs_readf(struct file *file)
                return new_sync_read;
        return ERR_PTR(-ENOSYS);
  }
-+EXPORT_SYMBOL(vfs_readf);
++EXPORT_SYMBOL_GPL(vfs_readf);
  
  vfs_writef_t vfs_writef(struct file *file)
  {
-@@ -515,6 +516,7 @@ vfs_writef_t vfs_writef(struct file *file)
+@@ -494,6 +495,7 @@ vfs_writef_t vfs_writef(struct file *file)
                return new_sync_write;
        return ERR_PTR(-ENOSYS);
  }
-+EXPORT_SYMBOL(vfs_writef);
++EXPORT_SYMBOL_GPL(vfs_writef);
  
  ssize_t __kernel_write(struct file *file, const char *buf, size_t count, loff_t *pos)
  {
 diff --git a/fs/splice.c b/fs/splice.c
-index 5f8385a..f76067e 100644
+index 9753304..b38e036 100644
 --- a/fs/splice.c
 +++ b/fs/splice.c
-@@ -1115,6 +1115,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
+@@ -866,6 +866,7 @@ long do_splice_from(struct pipe_inode_info *pipe, struct file *out,
  
        return splice_write(pipe, out, ppos, len, flags);
  }
-+EXPORT_SYMBOL(do_splice_from);
++EXPORT_SYMBOL_GPL(do_splice_from);
  
  /*
   * Attempt to initiate a splice from a file to a pipe.
-@@ -1141,6 +1142,7 @@ long do_splice_to(struct file *in, loff_t *ppos,
+@@ -895,6 +896,7 @@ long do_splice_to(struct file *in, loff_t *ppos,
  
        return splice_read(in, ppos, pipe, len, flags);
  }
-+EXPORT_SYMBOL(do_splice_to);
++EXPORT_SYMBOL_GPL(do_splice_to);
  
  /**
   * splice_direct_to_actor - splices data directly between two non-pipes
+diff --git a/fs/sync.c b/fs/sync.c
+index 7a5fa3f..c9b9d46 100644
+--- a/fs/sync.c
++++ b/fs/sync.c
+@@ -38,6 +38,7 @@ int __sync_filesystem(struct super_block *sb, int wait)
+               sb->s_op->sync_fs(sb, wait);
+       return __sync_blockdev(sb->s_bdev, wait);
+ }
++EXPORT_SYMBOL_GPL(__sync_filesystem);
+ /*
+  * Write out and wait upon all dirty data associated with this
 diff --git a/fs/xattr.c b/fs/xattr.c
-index 072fee1..a7677af 100644
+index 464c94b..0234d49 100644
 --- a/fs/xattr.c
 +++ b/fs/xattr.c
-@@ -207,6 +207,7 @@ vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
+@@ -296,6 +296,7 @@ vfs_getxattr_alloc(struct dentry *dentry, const char *name, char **xattr_value,
        *xattr_value = value;
        return error;
  }
-+EXPORT_SYMBOL(vfs_getxattr_alloc);
++EXPORT_SYMBOL_GPL(vfs_getxattr_alloc);
  
- /* Compare an extended attribute value with the given value */
- int vfs_xattr_cmp(struct dentry *dentry, const char *xattr_name,
+ ssize_t
+ __vfs_getxattr(struct dentry *dentry, struct inode *inode, const char *name,
+diff --git a/kernel/task_work.c b/kernel/task_work.c
+index d513051..e056d54 100644
+--- a/kernel/task_work.c
++++ b/kernel/task_work.c
+@@ -119,3 +119,4 @@ void task_work_run(void)
+               } while (work);
+       }
+ }
++EXPORT_SYMBOL_GPL(task_work_run);
 diff --git a/security/commoncap.c b/security/commoncap.c
-index 1832cf7..987ff5f 100644
+index 7abebd7..c079ce4 100644
 --- a/security/commoncap.c
 +++ b/security/commoncap.c
-@@ -1053,12 +1053,14 @@ int cap_mmap_addr(unsigned long addr)
+@@ -1062,12 +1062,14 @@ int cap_mmap_addr(unsigned long addr)
        }
        return ret;
  }
-+EXPORT_SYMBOL(cap_mmap_addr);
++EXPORT_SYMBOL_GPL(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);
++EXPORT_SYMBOL_GPL(cap_mmap_file);
  
  #ifdef CONFIG_SECURITY
  
 diff --git a/security/device_cgroup.c b/security/device_cgroup.c
-index 03c1652..b00aa76 100644
+index 03c1652..f88c84b 100644
 --- a/security/device_cgroup.c
 +++ b/security/device_cgroup.c
 @@ -7,6 +7,7 @@
@@ -857,97 +984,97 @@ index 03c1652..b00aa76 100644
        return __devcgroup_check_permission(type, imajor(inode), iminor(inode),
                        access);
  }
-+EXPORT_SYMBOL(__devcgroup_inode_permission);
++EXPORT_SYMBOL_GPL(__devcgroup_inode_permission);
  
  int devcgroup_inode_mknod(int mode, dev_t dev)
  {
 diff --git a/security/security.c b/security/security.c
-index 46f405c..54488b0 100644
+index 3013237..342ce8b 100644
 --- a/security/security.c
 +++ b/security/security.c
-@@ -433,6 +433,7 @@ int security_path_rmdir(struct path *dir, struct dentry *dentry)
+@@ -535,6 +535,7 @@ int security_path_rmdir(const struct path *dir, struct dentry *dentry)
                return 0;
        return call_int_hook(path_rmdir, 0, dir, dentry);
  }
-+EXPORT_SYMBOL(security_path_rmdir);
++EXPORT_SYMBOL_GPL(security_path_rmdir);
  
- int security_path_unlink(struct path *dir, struct dentry *dentry)
+ int security_path_unlink(const struct path *dir, struct dentry *dentry)
  {
-@@ -449,6 +450,7 @@ int security_path_symlink(struct path *dir, struct dentry *dentry,
+@@ -551,6 +552,7 @@ int security_path_symlink(const struct path *dir, struct dentry *dentry,
                return 0;
        return call_int_hook(path_symlink, 0, dir, dentry, old_name);
  }
-+EXPORT_SYMBOL(security_path_symlink);
++EXPORT_SYMBOL_GPL(security_path_symlink);
  
- int security_path_link(struct dentry *old_dentry, struct path *new_dir,
+ int security_path_link(struct dentry *old_dentry, const struct path *new_dir,
                       struct dentry *new_dentry)
-@@ -457,6 +459,7 @@ int security_path_link(struct dentry *old_dentry, struct path *new_dir,
+@@ -559,6 +561,7 @@ int security_path_link(struct dentry *old_dentry, const struct path *new_dir,
                return 0;
        return call_int_hook(path_link, 0, old_dentry, new_dir, new_dentry);
  }
-+EXPORT_SYMBOL(security_path_link);
++EXPORT_SYMBOL_GPL(security_path_link);
  
- int security_path_rename(struct path *old_dir, struct dentry *old_dentry,
-                        struct path *new_dir, struct dentry *new_dentry,
-@@ -484,6 +487,7 @@ int security_path_truncate(struct path *path)
+ int security_path_rename(const struct path *old_dir, struct dentry *old_dentry,
+                        const struct path *new_dir, struct dentry *new_dentry,
+@@ -586,6 +589,7 @@ int security_path_truncate(const struct path *path)
                return 0;
        return call_int_hook(path_truncate, 0, path);
  }
-+EXPORT_SYMBOL(security_path_truncate);
++EXPORT_SYMBOL_GPL(security_path_truncate);
  
- int security_path_chmod(struct path *path, umode_t mode)
+ int security_path_chmod(const struct path *path, umode_t mode)
  {
-@@ -491,6 +495,7 @@ int security_path_chmod(struct path *path, umode_t mode)
+@@ -593,6 +597,7 @@ int security_path_chmod(const struct path *path, umode_t mode)
                return 0;
        return call_int_hook(path_chmod, 0, path, mode);
  }
-+EXPORT_SYMBOL(security_path_chmod);
++EXPORT_SYMBOL_GPL(security_path_chmod);
  
- int security_path_chown(struct path *path, kuid_t uid, kgid_t gid)
+ int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
  {
-@@ -498,6 +503,7 @@ int security_path_chown(struct path *path, kuid_t uid, kgid_t gid)
+@@ -600,6 +605,7 @@ int security_path_chown(const struct path *path, kuid_t uid, kgid_t gid)
                return 0;
        return call_int_hook(path_chown, 0, path, uid, gid);
  }
-+EXPORT_SYMBOL(security_path_chown);
++EXPORT_SYMBOL_GPL(security_path_chown);
  
- int security_path_chroot(struct path *path)
+ int security_path_chroot(const struct path *path)
  {
-@@ -583,6 +589,7 @@ int security_inode_readlink(struct dentry *dentry)
+@@ -685,6 +691,7 @@ int security_inode_readlink(struct dentry *dentry)
                return 0;
        return call_int_hook(inode_readlink, 0, dentry);
  }
-+EXPORT_SYMBOL(security_inode_readlink);
++EXPORT_SYMBOL_GPL(security_inode_readlink);
  
  int security_inode_follow_link(struct dentry *dentry, struct inode *inode,
                               bool rcu)
-@@ -598,6 +605,7 @@ int security_inode_permission(struct inode *inode, int mask)
+@@ -700,6 +707,7 @@ int security_inode_permission(struct inode *inode, int mask)
                return 0;
        return call_int_hook(inode_permission, 0, inode, mask);
  }
-+EXPORT_SYMBOL(security_inode_permission);
++EXPORT_SYMBOL_GPL(security_inode_permission);
  
  int security_inode_setattr(struct dentry *dentry, struct iattr *attr)
  {
-@@ -736,6 +744,7 @@ int security_file_permission(struct file *file, int mask)
+@@ -871,6 +879,7 @@ int security_file_permission(struct file *file, int mask)
  
        return fsnotify_perm(file, mask);
  }
-+EXPORT_SYMBOL(security_file_permission);
++EXPORT_SYMBOL_GPL(security_file_permission);
  
  int security_file_alloc(struct file *file)
  {
-@@ -795,6 +804,7 @@ int security_mmap_file(struct file *file, unsigned long prot,
+@@ -930,6 +939,7 @@ int security_mmap_file(struct file *file, unsigned long prot,
                return ret;
        return ima_file_mmap(file, prot);
  }
-+EXPORT_SYMBOL(security_mmap_file);
++EXPORT_SYMBOL_GPL(security_mmap_file);
  
  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       2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/ABI/testing/debugfs-aufs       2017-07-29 12:14:25.893041746 +0200
 @@ -0,0 +1,50 @@
 +What:         /debug/aufs/si_<id>/
 +Date:         March 2009
@@ -1001,7 +1128,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 2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/ABI/testing/sysfs-aufs 2017-07-29 12:14:25.893041746 +0200
 @@ -0,0 +1,31 @@
 +What:         /sys/fs/aufs/si_<id>/
 +Date:         March 2009
@@ -1036,10 +1163,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    2015-09-24 10:47:58.244719488 +0200
-@@ -0,0 +1,170 @@
++++ linux/Documentation/filesystems/aufs/design/01intro.txt    2017-09-05 10:42:11.038754821 +0200
+@@ -0,0 +1,171 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -1057,12 +1184,13 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/01intro.txt lin
 +Introduction
 +----------------------------------------
 +
-+aufs [ei ju: ef es] | [a u f s]
++aufs [ei ju: ef es] | /ey-yoo-ef-es/ | [a u f s]
 +1. abbrev. for "advanced multi-layered unification filesystem".
 +2. abbrev. for "another unionfs".
 +3. abbrev. for "auf das" in German which means "on the" in English.
 +   Ex. "Butter aufs Brot"(G) means "butter onto bread"(E).
 +   But "Filesystem aufs Filesystem" is hard to understand.
++4. abbrev. for "African Urban Fashion Show".
 +
 +AUFS is a filesystem with features:
 +- multi layered stackable unification filesystem, the member directory
@@ -1210,10 +1338,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   2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/02struct.txt   2017-07-29 12:14:25.893041746 +0200
 @@ -0,0 +1,258 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -1472,10 +1600,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/02struct.txt li
 +For this purpose, use "aumvdown" command in aufs-util.git.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/03atomic_open.txt linux/Documentation/filesystems/aufs/design/03atomic_open.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/03atomic_open.txt   1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/03atomic_open.txt      2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/03atomic_open.txt      2017-07-29 12:14:25.893041746 +0200
 @@ -0,0 +1,85 @@
 +
-+# Copyright (C) 2015 Junjiro R. Okajima
++# Copyright (C) 2015-2017 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
@@ -1561,10 +1689,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/03atomic_open.t
 +       be implemented in aufs, but not all I am afraid.
 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   2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/03lookup.txt   2017-07-29 12:14:25.893041746 +0200
 @@ -0,0 +1,113 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -1678,10 +1806,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   2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/04branch.txt   2017-07-29 12:14:25.893041746 +0200
 @@ -0,0 +1,74 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -1756,10 +1884,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       2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/05wbr_policy.txt       2017-07-29 12:14:25.893041746 +0200
 @@ -0,0 +1,64 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -1824,10 +1952,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/05wbr_policy.tx
 +  copyup policy.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/06fhsm.txt linux/Documentation/filesystems/aufs/design/06fhsm.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/06fhsm.txt  1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/06fhsm.txt     2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/06fhsm.txt     2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,120 @@
 +
-+# Copyright (C) 2011-2015 Junjiro R. Okajima
++# Copyright (C) 2011-2017 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
@@ -1948,10 +2076,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/06fhsm.txt linu
 +should restore the original file state after an error happens.
 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     2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/06mmap.txt     2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,72 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -2024,10 +2152,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/06mmap.txt linu
 +I have to give up this "looks-smater" approach.
 diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/06xattr.txt linux/Documentation/filesystems/aufs/design/06xattr.txt
 --- /usr/share/empty/Documentation/filesystems/aufs/design/06xattr.txt 1970-01-01 01:00:00.000000000 +0100
-+++ linux/Documentation/filesystems/aufs/design/06xattr.txt    2015-09-24 10:47:58.244719488 +0200
++++ linux/Documentation/filesystems/aufs/design/06xattr.txt    2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,96 @@
 +
-+# Copyright (C) 2014-2015 Junjiro R. Okajima
++# Copyright (C) 2014-2017 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
@@ -2124,10 +2252,10 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/06xattr.txt lin
 +now, aufs implements the branch attributes to ignore the error.
 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   2015-09-24 10:47:58.248052907 +0200
++++ linux/Documentation/filesystems/aufs/design/07export.txt   2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,58 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -2186,10 +2314,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     2015-09-24 10:47:58.248052907 +0200
++++ linux/Documentation/filesystems/aufs/design/08shwh.txt     2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,52 @@
 +
-+# Copyright (C) 2005-2015 Junjiro R. Okajima
++# Copyright (C) 2005-2017 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
@@ -2242,10 +2370,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    2015-09-24 10:47:58.248052907 +0200
++++ linux/Documentation/filesystems/aufs/design/10dynop.txt    2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,47 @@
 +
-+# Copyright (C) 2010-2015 Junjiro R. Okajima
++# Copyright (C) 2010-2017 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
@@ -2293,8 +2421,8 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/design/10dynop.txt lin
 +regular files only.
 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        2015-09-24 10:47:58.244719488 +0200
-@@ -0,0 +1,383 @@
++++ linux/Documentation/filesystems/aufs/README        2017-07-29 12:14:25.893041746 +0200
+@@ -0,0 +1,393 @@
 +
 +Aufs4 -- advanced multi layered unification filesystem version 4.x
 +http://aufs.sf.net
@@ -2403,7 +2531,7 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +And you cannot select CONFIG_AUFS_FS=m for this version, eg. you cannot
 +build aufs4 as an external kernel module.
 +Several extra patches are not included in this tree. Only
-+aufs4-standalone tree contains them. They are describe in the later
++aufs4-standalone tree contains them. They are described in the later
 +section "Configuration and Compilation."
 +
 +On the other hand, the aufs4-standalone tree has only aufs source files
@@ -2559,6 +2687,13 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +  duplication of inode number, which is important for backup tools and
 +  other utilities. When you find aufs XINO files for tmpfs branch
 +  growing too much, try this patch.
++- lockdep-debug.patch
++  Because aufs is not only an ordinary filesystem (callee of VFS), but
++  also a caller of VFS functions for branch filesystems, subclassing of
++  the internal locks for LOCKDEP is necessary. LOCKDEP is a debugging
++  feature of linux kernel. If you enable CONFIG_LOCKDEP, then you will
++  need to apply this debug patch to expand several constant values.
++  If don't know what LOCKDEP, then you don't have apply this patch.
 +
 +
 +4. Usage
@@ -2661,6 +2796,9 @@ diff -urN /usr/share/empty/Documentation/filesystems/aufs/README linux/Documenta
 +James B made a donation (2014/7 and 2015/7).
 +Stefano Di Biase made a donation (2014/8).
 +Daniel Epellei made a donation (2015/1).
++OmegaPhil made a donation (2016/1).
++Tomasz Szewczyk made a donation (2016/4).
++James Burry made a donation (2016/12).
 +
 +Thank you very much.
 +Donations are always, including future donations, very important and
@@ -2680,10 +2818,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       2015-09-24 10:47:58.248052907 +0200
++++ linux/fs/aufs/aufs.h       2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,59 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -2743,10 +2881,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     2015-11-11 17:21:46.915530388 +0100
-@@ -0,0 +1,1413 @@
++++ linux/fs/aufs/branch.c     2017-07-29 12:14:25.896375188 +0200
+@@ -0,0 +1,1422 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -2783,9 +2921,12 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +      if (br->br_xino.xi_file)
 +              fput(br->br_xino.xi_file);
-+      mutex_destroy(&br->br_xino.xi_nondir_mtx);
++      for (i = br->br_xino.xi_nondir.total - 1; i >= 0; i--)
++              AuDebugOn(br->br_xino.xi_nondir.array[i]);
++      kfree(br->br_xino.xi_nondir.array);
 +
-+      AuDebugOn(atomic_read(&br->br_count));
++      AuDebugOn(au_br_count(br));
++      au_br_count_fin(br);
 +
 +      wbr = br->br_wbr;
 +      if (wbr) {
@@ -2825,7 +2966,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +      AuRwMustWriteLock(&sbinfo->si_rwsem);
 +
-+      bmax = sbinfo->si_bend + 1;
++      bmax = sbinfo->si_bbot + 1;
 +      br = sbinfo->si_branch;
 +      while (bmax--)
 +              au_br_do_free(*br++);
@@ -2836,10 +2977,10 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 + */
 +int au_br_index(struct super_block *sb, aufs_bindex_t br_id)
 +{
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +
-+      bend = au_sbend(sb);
-+      for (bindex = 0; bindex <= bend; bindex++)
++      bbot = au_sbbot(sb);
++      for (bindex = 0; bindex <= bbot; bindex++)
 +              if (au_sbr_id(sb, bindex) == br_id)
 +                      return bindex;
 +      return -1;
@@ -2876,37 +3017,42 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      int err;
 +
 +      err = -ENOMEM;
-+      root = sb->s_root;
-+      add_branch = kmalloc(sizeof(*add_branch), GFP_NOFS);
++      add_branch = kzalloc(sizeof(*add_branch), GFP_NOFS);
 +      if (unlikely(!add_branch))
 +              goto out;
++      add_branch->br_xino.xi_nondir.total = 8; /* initial size */
++      add_branch->br_xino.xi_nondir.array
++              = kzalloc(sizeof(ino_t) * add_branch->br_xino.xi_nondir.total,
++                        GFP_NOFS);
++      if (unlikely(!add_branch->br_xino.xi_nondir.array))
++              goto out_br;
 +
 +      err = au_hnotify_init_br(add_branch, perm);
 +      if (unlikely(err))
-+              goto out_br;
++              goto out_xinondir;
 +
-+      add_branch->br_wbr = NULL;
 +      if (au_br_writable(perm)) {
 +              /* may be freed separately at changing the branch permission */
-+              add_branch->br_wbr = kmalloc(sizeof(*add_branch->br_wbr),
++              add_branch->br_wbr = kzalloc(sizeof(*add_branch->br_wbr),
 +                                           GFP_NOFS);
 +              if (unlikely(!add_branch->br_wbr))
 +                      goto out_hnotify;
 +      }
 +
-+      add_branch->br_fhsm = NULL;
 +      if (au_br_fhsm(perm)) {
 +              err = au_fhsm_br_alloc(add_branch);
 +              if (unlikely(err))
 +                      goto out_wbr;
 +      }
 +
-+      err = au_sbr_realloc(au_sbi(sb), new_nbranch);
++      root = sb->s_root;
++      err = au_sbr_realloc(au_sbi(sb), new_nbranch, /*may_shrink*/0);
 +      if (!err)
-+              err = au_di_realloc(au_di(root), new_nbranch);
++              err = au_di_realloc(au_di(root), new_nbranch, /*may_shrink*/0);
 +      if (!err) {
 +              inode = d_inode(root);
-+              err = au_ii_realloc(au_ii(inode), new_nbranch);
++              err = au_hinode_realloc(au_ii(inode), new_nbranch,
++                                      /*may_shrink*/0);
 +      }
 +      if (!err)
 +              return add_branch; /* success */
@@ -2915,6 +3061,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      kfree(add_branch->br_wbr);
 +out_hnotify:
 +      au_hnotify_fin_br(add_branch);
++out_xinondir:
++      kfree(add_branch->br_xino.xi_nondir.array);
 +out_br:
 +      kfree(add_branch);
 +out:
@@ -2948,13 +3096,13 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +static int test_add(struct super_block *sb, struct au_opt_add *add, int remount)
 +{
 +      int err;
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +      struct dentry *root, *h_dentry;
 +      struct inode *inode, *h_inode;
 +
 +      root = sb->s_root;
-+      bend = au_sbend(sb);
-+      if (unlikely(bend >= 0
++      bbot = au_sbbot(sb);
++      if (unlikely(bbot >= 0
 +                   && au_find_dbindex(root, add->path.dentry) >= 0)) {
 +              err = 1;
 +              if (!remount) {
@@ -2966,13 +3114,13 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +      err = -ENOSPC; /* -E2BIG; */
 +      if (unlikely(AUFS_BRANCH_MAX <= add->bindex
-+                   || AUFS_BRANCH_MAX - 1 <= bend)) {
++                   || AUFS_BRANCH_MAX - 1 <= bbot)) {
 +              pr_err("number of branches exceeded %s\n", add->pathname);
 +              goto out;
 +      }
 +
 +      err = -EDOM;
-+      if (unlikely(add->bindex < 0 || bend + 1 < add->bindex)) {
++      if (unlikely(add->bindex < 0 || bbot + 1 < add->bindex)) {
 +              pr_err("bad index %d\n", add->bindex);
 +              goto out;
 +      }
@@ -3006,11 +3154,11 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      if (unlikely(err))
 +              goto out;
 +
-+      if (bend < 0)
++      if (bbot < 0)
 +              return 0; /* success */
 +
 +      err = -EINVAL;
-+      for (bindex = 0; bindex <= bend; bindex++)
++      for (bindex = 0; bindex <= bbot; bindex++)
 +              if (unlikely(test_overlap(sb, add->path.dentry,
 +                                        au_h_dptr(root, bindex)))) {
 +                      pr_err("%s is overlapped\n", add->pathname);
@@ -3044,7 +3192,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +{
 +      int err, old_perm;
 +      aufs_bindex_t bindex;
-+      struct mutex *h_mtx;
++      struct inode *h_inode;
 +      struct au_wbr *wbr;
 +      struct au_hinode *hdir;
 +      struct dentry *h_dentry;
@@ -3057,15 +3205,15 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      old_perm = br->br_perm;
 +      br->br_perm = new_perm;
 +      hdir = NULL;
-+      h_mtx = NULL;
++      h_inode = NULL;
 +      bindex = au_br_index(sb, br->br_id);
 +      if (0 <= bindex) {
 +              hdir = au_hi(d_inode(sb->s_root), bindex);
-+              au_hn_imtx_lock_nested(hdir, AuLsc_I_PARENT);
++              au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT);
 +      } else {
 +              h_dentry = au_br_dentry(br);
-+              h_mtx = &d_inode(h_dentry)->i_mutex;
-+              mutex_lock_nested(h_mtx, AuLsc_I_PARENT);
++              h_inode = d_inode(h_dentry);
++              inode_lock_nested(h_inode, AuLsc_I_PARENT);
 +      }
 +      if (!wbr)
 +              err = au_wh_init(br, sb);
@@ -3075,9 +3223,9 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              wbr_wh_write_unlock(wbr);
 +      }
 +      if (hdir)
-+              au_hn_imtx_unlock(hdir);
++              au_hn_inode_unlock(hdir);
 +      else
-+              mutex_unlock(h_mtx);
++              inode_unlock(h_inode);
 +      vfsub_mnt_drop_write(au_br_mnt(br));
 +      br->br_perm = old_perm;
 +
@@ -3099,9 +3247,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +      wbr = br->br_wbr;
 +      au_rw_init(&wbr->wbr_wh_rwsem);
-+      memset(wbr->wbr_wh, 0, sizeof(wbr->wbr_wh));
 +      atomic_set(&wbr->wbr_wh_running, 0);
-+      wbr->wbr_bytes = 0;
 +
 +      /*
 +       * a limit for rmdir/rename a dir
@@ -3130,13 +3276,12 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      struct inode *h_inode;
 +
 +      err = 0;
-+      memset(&br->br_xino, 0, sizeof(br->br_xino));
-+      mutex_init(&br->br_xino.xi_nondir_mtx);
++      spin_lock_init(&br->br_xino.xi_nondir.spin);
++      init_waitqueue_head(&br->br_xino.xi_nondir.wqh);
 +      br->br_perm = add->perm;
 +      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);
++      au_br_count_init(br);
 +      atomic_set(&br->br_xino_running, 0);
 +      br->br_id = au_new_br_id(sb);
 +      AuDebugOn(br->br_id < 0);
@@ -3168,7 +3313,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +}
 +
 +static void au_br_do_add_brp(struct au_sbinfo *sbinfo, aufs_bindex_t bindex,
-+                           struct au_branch *br, aufs_bindex_t bend,
++                           struct au_branch *br, aufs_bindex_t bbot,
 +                           aufs_bindex_t amount)
 +{
 +      struct au_branch **brp;
@@ -3178,40 +3323,39 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      brp = sbinfo->si_branch + bindex;
 +      memmove(brp + 1, brp, sizeof(*brp) * amount);
 +      *brp = br;
-+      sbinfo->si_bend++;
-+      if (unlikely(bend < 0))
-+              sbinfo->si_bend = 0;
++      sbinfo->si_bbot++;
++      if (unlikely(bbot < 0))
++              sbinfo->si_bbot = 0;
 +}
 +
 +static void au_br_do_add_hdp(struct au_dinfo *dinfo, aufs_bindex_t bindex,
-+                           aufs_bindex_t bend, aufs_bindex_t amount)
++                           aufs_bindex_t bbot, aufs_bindex_t amount)
 +{
 +      struct au_hdentry *hdp;
 +
 +      AuRwMustWriteLock(&dinfo->di_rwsem);
 +
-+      hdp = dinfo->di_hdentry + bindex;
++      hdp = au_hdentry(dinfo, bindex);
 +      memmove(hdp + 1, hdp, sizeof(*hdp) * amount);
 +      au_h_dentry_init(hdp);
-+      dinfo->di_bend++;
-+      if (unlikely(bend < 0))
-+              dinfo->di_bstart = 0;
++      dinfo->di_bbot++;
++      if (unlikely(bbot < 0))
++              dinfo->di_btop = 0;
 +}
 +
 +static void au_br_do_add_hip(struct au_iinfo *iinfo, aufs_bindex_t bindex,
-+                           aufs_bindex_t bend, aufs_bindex_t amount)
++                           aufs_bindex_t bbot, aufs_bindex_t amount)
 +{
 +      struct au_hinode *hip;
 +
 +      AuRwMustWriteLock(&iinfo->ii_rwsem);
 +
-+      hip = iinfo->ii_hinode + bindex;
++      hip = au_hinode(iinfo, bindex);
 +      memmove(hip + 1, hip, sizeof(*hip) * amount);
-+      hip->hi_inode = NULL;
-+      au_hn_init(hip);
-+      iinfo->ii_bend++;
-+      if (unlikely(bend < 0))
-+              iinfo->ii_bstart = 0;
++      au_hinode_init(hip);
++      iinfo->ii_bbot++;
++      if (unlikely(bbot < 0))
++              iinfo->ii_btop = 0;
 +}
 +
 +static void au_br_do_add(struct super_block *sb, struct au_branch *br,
@@ -3219,17 +3363,17 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +{
 +      struct dentry *root, *h_dentry;
 +      struct inode *root_inode, *h_inode;
-+      aufs_bindex_t bend, amount;
++      aufs_bindex_t bbot, amount;
 +
 +      root = sb->s_root;
 +      root_inode = d_inode(root);
-+      bend = au_sbend(sb);
-+      amount = bend + 1 - bindex;
++      bbot = au_sbbot(sb);
++      amount = bbot + 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);
-+      au_br_do_add_hip(au_ii(root_inode), bindex, bend, amount);
++      au_br_do_add_brp(au_sbi(sb), bindex, br, bbot, amount);
++      au_br_do_add_hdp(au_di(root), bindex, bbot, amount);
++      au_br_do_add_hip(au_ii(root_inode), bindex, bbot, amount);
 +      au_set_h_dptr(root, bindex, dget(h_dentry));
 +      h_inode = d_inode(h_dentry);
 +      au_set_h_iptr(root_inode, bindex, au_igrab(h_inode), /*flags*/0);
@@ -3239,7 +3383,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +int au_br_add(struct super_block *sb, struct au_opt_add *add, int remount)
 +{
 +      int err;
-+      aufs_bindex_t bend, add_bindex;
++      aufs_bindex_t bbot, add_bindex;
 +      struct dentry *root, *h_dentry;
 +      struct inode *root_inode;
 +      struct au_branch *add_branch;
@@ -3247,6 +3391,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      root = sb->s_root;
 +      root_inode = d_inode(root);
 +      IMustLock(root_inode);
++      IiMustWriteLock(root_inode);
 +      err = test_add(sb, add, remount);
 +      if (unlikely(err < 0))
 +              goto out;
@@ -3255,8 +3400,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              goto out; /* success */
 +      }
 +
-+      bend = au_sbend(sb);
-+      add_branch = au_br_alloc(sb, bend + 2, add->perm);
++      bbot = au_sbbot(sb);
++      add_branch = au_br_alloc(sb, bbot + 2, add->perm);
 +      err = PTR_ERR(add_branch);
 +      if (IS_ERR(add_branch))
 +              goto out;
@@ -3332,7 +3477,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +static struct file **au_farray_alloc(struct super_block *sb,
 +                                   unsigned long long *max)
 +{
-+      *max = atomic_long_read(&au_sbi(sb)->si_nfiles);
++      *max = au_nfiles(sb);
 +      return au_array_alloc(max, au_farray_cb, sb, /*arg*/NULL);
 +}
 +
@@ -3343,7 +3488,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      for (ull = 0; ull < max; ull++)
 +              if (a[ull])
 +                      fput(a[ull]);
-+      au_array_free(a);
++      kvfree(a);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -3358,16 +3503,16 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              pr_info(fmt, ##__VA_ARGS__); \
 +} while (0)
 +
-+static int au_test_ibusy(struct inode *inode, aufs_bindex_t bstart,
-+                       aufs_bindex_t bend)
++static int au_test_ibusy(struct inode *inode, aufs_bindex_t btop,
++                       aufs_bindex_t bbot)
 +{
-+      return (inode && !S_ISDIR(inode->i_mode)) || bstart == bend;
++      return (inode && !S_ISDIR(inode->i_mode)) || btop == bbot;
 +}
 +
-+static int au_test_dbusy(struct dentry *dentry, aufs_bindex_t bstart,
-+                       aufs_bindex_t bend)
++static int au_test_dbusy(struct dentry *dentry, aufs_bindex_t btop,
++                       aufs_bindex_t bbot)
 +{
-+      return au_test_ibusy(d_inode(dentry), bstart, bend);
++      return au_test_ibusy(d_inode(dentry), btop, bbot);
 +}
 +
 +/*
@@ -3377,7 +3522,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                          unsigned int sigen, const unsigned int verbose)
 +{
 +      int err, i, j, ndentry;
-+      aufs_bindex_t bstart, bend;
++      aufs_bindex_t btop, bbot;
 +      struct au_dcsub_pages dpages;
 +      struct au_dpage *dpage;
 +      struct dentry *d;
@@ -3417,12 +3562,12 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                      }
 +
 +                      /* AuDbgDentry(d); */
-+                      bstart = au_dbstart(d);
-+                      bend = au_dbend(d);
-+                      if (bstart <= bindex
-+                          && bindex <= bend
++                      btop = au_dbtop(d);
++                      bbot = au_dbbot(d);
++                      if (btop <= bindex
++                          && bindex <= bbot
 +                          && au_h_dptr(d, bindex)
-+                          && au_test_dbusy(d, bstart, bend)) {
++                          && au_test_dbusy(d, btop, bbot)) {
 +                              err = -EBUSY;
 +                              AuVerbose(verbose, "busy %pd\n", d);
 +                              AuDbgDentry(d);
@@ -3443,7 +3588,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      int err;
 +      unsigned long long max, ull;
 +      struct inode *i, **array;
-+      aufs_bindex_t bstart, bend;
++      aufs_bindex_t btop, bbot;
 +
 +      array = au_iarray_alloc(sb, &max);
 +      err = PTR_ERR(array);
@@ -3474,12 +3619,12 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                      }
 +              }
 +
-+              bstart = au_ibstart(i);
-+              bend = au_ibend(i);
-+              if (bstart <= bindex
-+                  && bindex <= bend
++              btop = au_ibtop(i);
++              bbot = au_ibbot(i);
++              if (btop <= bindex
++                  && bindex <= bbot
 +                  && au_h_iptr(i, bindex)
-+                  && au_test_ibusy(i, bstart, bend)) {
++                  && au_test_ibusy(i, btop, bbot)) {
 +                      err = -EBUSY;
 +                      AuVerbose(verbose, "busy i%lu\n", i->i_ino);
 +                      AuDbgInode(i);
@@ -3515,7 +3660,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +{
 +      int err;
 +      unsigned char matched, root;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct au_fidir *fidir;
 +      struct au_hfile *hfile;
 +
@@ -3531,8 +3676,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      matched = 0;
 +      fidir = au_fi(file)->fi_hdir;
 +      AuDebugOn(!fidir);
-+      bend = au_fbend_dir(file);
-+      for (bindex = au_fbstart(file); bindex <= bend; bindex++) {
++      bbot = au_fbbot_dir(file);
++      for (bindex = au_fbtop(file); bindex <= bbot; bindex++) {
 +              hfile = fidir->fd_hfile + bindex;
 +              if (!hfile->hf_file)
 +                      continue;
@@ -3554,7 +3699,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +{
 +      int err, idx;
 +      unsigned long long ull, max;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      struct file *file, **array;
 +      struct dentry *root;
 +      struct au_hfile *hfile;
@@ -3575,7 +3720,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +              /* AuDbg("%pD\n", file); */
 +              fi_read_lock(file);
-+              bstart = au_fbstart(file);
++              btop = au_fbtop(file);
 +              if (!d_is_dir(file->f_path.dentry)) {
 +                      hfile = &au_fi(file)->fi_htop;
 +                      if (hfile->hf_br->br_id == br_id)
@@ -3598,7 +3743,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +                        aufs_bindex_t br_id)
 +{
 +      unsigned long long ull;
-+      aufs_bindex_t bindex, bstart, bend, bfound;
++      aufs_bindex_t bindex, btop, bbot, bfound;
 +      struct file *file;
 +      struct au_fidir *fidir;
 +      struct au_hfile *hfile;
@@ -3614,9 +3759,9 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              fidir = au_fi(file)->fi_hdir;
 +              AuDebugOn(!fidir);
 +              fi_write_lock(file);
-+              bstart = au_fbstart(file);
-+              bend = au_fbend_dir(file);
-+              for (bindex = bstart; bindex <= bend; bindex++) {
++              btop = au_fbtop(file);
++              bbot = au_fbbot_dir(file);
++              for (bindex = btop; bindex <= bbot; bindex++) {
 +                      hfile = fidir->fd_hfile + bindex;
 +                      if (!hfile->hf_file)
 +                              continue;
@@ -3628,10 +3773,10 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +              }
 +              AuDebugOn(bfound < 0);
 +              au_set_h_fptr(file, bfound, NULL);
-+              if (bfound == bstart) {
-+                      for (bstart++; bstart <= bend; bstart++)
-+                              if (au_hf_dir(file, bstart)) {
-+                                      au_set_fbstart(file, bstart);
++              if (bfound == btop) {
++                      for (btop++; btop <= bbot; btop++)
++                              if (au_hf_dir(file, btop)) {
++                                      au_set_fbtop(file, btop);
 +                                      break;
 +                              }
 +              }
@@ -3641,59 +3786,60 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +static void au_br_do_del_brp(struct au_sbinfo *sbinfo,
 +                           const aufs_bindex_t bindex,
-+                           const aufs_bindex_t bend)
++                           const aufs_bindex_t bbot)
 +{
 +      struct au_branch **brp, **p;
 +
 +      AuRwMustWriteLock(&sbinfo->si_rwsem);
 +
 +      brp = sbinfo->si_branch + bindex;
-+      if (bindex < bend)
-+              memmove(brp, brp + 1, sizeof(*brp) * (bend - bindex));
-+      sbinfo->si_branch[0 + bend] = NULL;
-+      sbinfo->si_bend--;
++      if (bindex < bbot)
++              memmove(brp, brp + 1, sizeof(*brp) * (bbot - bindex));
++      sbinfo->si_branch[0 + bbot] = NULL;
++      sbinfo->si_bbot--;
 +
-+      p = krealloc(sbinfo->si_branch, sizeof(*p) * bend, AuGFP_SBILIST);
++      p = au_krealloc(sbinfo->si_branch, sizeof(*p) * bbot, AuGFP_SBILIST,
++                      /*may_shrink*/1);
 +      if (p)
 +              sbinfo->si_branch = p;
 +      /* harmless error */
 +}
 +
 +static void au_br_do_del_hdp(struct au_dinfo *dinfo, const aufs_bindex_t bindex,
-+                           const aufs_bindex_t bend)
++                           const aufs_bindex_t bbot)
 +{
 +      struct au_hdentry *hdp, *p;
 +
 +      AuRwMustWriteLock(&dinfo->di_rwsem);
 +
-+      hdp = dinfo->di_hdentry;
-+      if (bindex < bend)
-+              memmove(hdp + bindex, hdp + bindex + 1,
-+                      sizeof(*hdp) * (bend - bindex));
-+      hdp[0 + bend].hd_dentry = NULL;
-+      dinfo->di_bend--;
++      hdp = au_hdentry(dinfo, bindex);
++      if (bindex < bbot)
++              memmove(hdp, hdp + 1, sizeof(*hdp) * (bbot - bindex));
++      /* au_h_dentry_init(au_hdentry(dinfo, bbot); */
++      dinfo->di_bbot--;
 +
-+      p = krealloc(hdp, sizeof(*p) * bend, AuGFP_SBILIST);
++      p = au_krealloc(dinfo->di_hdentry, sizeof(*p) * bbot, AuGFP_SBILIST,
++                      /*may_shrink*/1);
 +      if (p)
 +              dinfo->di_hdentry = p;
 +      /* harmless error */
 +}
 +
 +static void au_br_do_del_hip(struct au_iinfo *iinfo, const aufs_bindex_t bindex,
-+                           const aufs_bindex_t bend)
++                           const aufs_bindex_t bbot)
 +{
 +      struct au_hinode *hip, *p;
 +
 +      AuRwMustWriteLock(&iinfo->ii_rwsem);
 +
-+      hip = iinfo->ii_hinode + bindex;
-+      if (bindex < bend)
-+              memmove(hip, hip + 1, sizeof(*hip) * (bend - bindex));
-+      iinfo->ii_hinode[0 + bend].hi_inode = NULL;
-+      au_hn_init(iinfo->ii_hinode + bend);
-+      iinfo->ii_bend--;
++      hip = au_hinode(iinfo, bindex);
++      if (bindex < bbot)
++              memmove(hip, hip + 1, sizeof(*hip) * (bbot - bindex));
++      /* au_hinode_init(au_hinode(iinfo, bbot)); */
++      iinfo->ii_bbot--;
 +
-+      p = krealloc(iinfo->ii_hinode, sizeof(*p) * bend, AuGFP_SBILIST);
++      p = au_krealloc(iinfo->ii_hinode, sizeof(*p) * bbot, AuGFP_SBILIST,
++                      /*may_shrink*/1);
 +      if (p)
 +              iinfo->ii_hinode = p;
 +      /* harmless error */
@@ -3702,7 +3848,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +static void au_br_do_del(struct super_block *sb, aufs_bindex_t bindex,
 +                       struct au_branch *br)
 +{
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +      struct au_sbinfo *sbinfo;
 +      struct dentry *root, *h_root;
 +      struct inode *inode, *h_inode;
@@ -3713,7 +3859,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      root = sb->s_root;
 +      inode = d_inode(root);
 +      sbinfo = au_sbi(sb);
-+      bend = sbinfo->si_bend;
++      bbot = sbinfo->si_bbot;
 +
 +      h_root = au_h_dptr(root, bindex);
 +      hinode = au_hi(inode, bindex);
@@ -3721,9 +3867,9 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      au_hiput(hinode);
 +
 +      au_sbilist_lock();
-+      au_br_do_del_brp(sbinfo, bindex, bend);
-+      au_br_do_del_hdp(au_di(root), bindex, bend);
-+      au_br_do_del_hip(au_ii(inode), bindex, bend);
++      au_br_do_del_brp(sbinfo, bindex, bbot);
++      au_br_do_del_hdp(au_di(root), bindex, bbot);
++      au_br_do_del_hip(au_ii(inode), bindex, bbot);
 +      au_sbilist_unlock();
 +
 +      dput(h_root);
@@ -3742,7 +3888,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      int err, rerr, i;
 +      unsigned long long opened;
 +      unsigned int mnt_flags;
-+      aufs_bindex_t bindex, bend, br_id;
++      aufs_bindex_t bindex, bbot, br_id;
 +      unsigned char do_wh, verbose;
 +      struct au_branch *br;
 +      struct au_wbr *wbr;
@@ -3766,8 +3912,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      err = -EBUSY;
 +      mnt_flags = au_mntflags(sb);
 +      verbose = !!au_opt_test(mnt_flags, VERBOSE);
-+      bend = au_sbend(sb);
-+      if (unlikely(!bend)) {
++      bbot = au_sbbot(sb);
++      if (unlikely(!bbot)) {
 +              AuVerbose(verbose, "no more branches left\n");
 +              goto out;
 +      }
@@ -3775,7 +3921,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      AuDebugOn(!path_equal(&br->br_path, &del->h_path));
 +
 +      br_id = br->br_id;
-+      opened = atomic_read(&br->br_count);
++      opened = au_br_count(br);
 +      if (unlikely(opened)) {
 +              to_free = au_array_alloc(&opened, empty_cb, sb, NULL);
 +              err = PTR_ERR(to_free);
@@ -3855,7 +4001,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +static int au_ibusy(struct super_block *sb, struct aufs_ibusy __user *arg)
 +{
 +      int err;
-+      aufs_bindex_t bstart, bend;
++      aufs_bindex_t btop, bbot;
 +      struct aufs_ibusy ibusy;
 +      struct inode *inode, *h_inode;
 +
@@ -3874,7 +4020,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +      err = -EINVAL;
 +      si_read_lock(sb, AuLock_FLUSH);
-+      if (unlikely(ibusy.bindex < 0 || ibusy.bindex > au_sbend(sb)))
++      if (unlikely(ibusy.bindex < 0 || ibusy.bindex > au_sbbot(sb)))
 +              goto out_unlock;
 +
 +      err = 0;
@@ -3882,15 +4028,15 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      inode = ilookup(sb, ibusy.ino);
 +      if (!inode
 +          || inode->i_ino == AUFS_ROOT_INO
-+          || is_bad_inode(inode))
++          || au_is_bad_inode(inode))
 +              goto out_unlock;
 +
 +      ii_read_lock_child(inode);
-+      bstart = au_ibstart(inode);
-+      bend = au_ibend(inode);
-+      if (bstart <= ibusy.bindex && ibusy.bindex <= bend) {
++      btop = au_ibtop(inode);
++      bbot = au_ibbot(inode);
++      if (btop <= ibusy.bindex && ibusy.bindex <= bbot) {
 +              h_inode = au_h_iptr(inode, ibusy.bindex);
-+              if (h_inode && au_test_ibusy(inode, bstart, bend))
++              if (h_inode && au_test_ibusy(inode, btop, bbot))
 +                      ibusy.h_ino = h_inode->i_ino;
 +      }
 +      ii_read_unlock(inode);
@@ -4093,7 +4239,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +
 +                      if (unlikely(err)) {
 +                              rerr = -ENOMEM;
-+                              br->br_wbr = kmalloc(sizeof(*br->br_wbr),
++                              br->br_wbr = kzalloc(sizeof(*br->br_wbr),
 +                                                   GFP_NOFS);
 +                              if (br->br_wbr)
 +                                      rerr = au_wbr_init(br, sb, br->br_perm);
@@ -4107,7 +4253,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      } else if (au_br_writable(mod->perm)) {
 +              /* ro --> rw */
 +              err = -ENOMEM;
-+              br->br_wbr = kmalloc(sizeof(*br->br_wbr), GFP_NOFS);
++              br->br_wbr = kzalloc(sizeof(*br->br_wbr), GFP_NOFS);
 +              if (br->br_wbr) {
 +                      err = au_wbr_init(br, sb, mod->perm);
 +                      if (unlikely(err)) {
@@ -4135,7 +4281,8 @@ diff -urN /usr/share/empty/fs/aufs/branch.c linux/fs/aufs/branch.c
 +      goto out; /* success */
 +
 +out_bf:
-+      kfree(bf);
++      if (bf)
++              kfree(bf);
 +out:
 +      AuTraceErr(err);
 +      return err;
@@ -4160,10 +4307,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     2015-11-11 17:21:46.915530388 +0100
-@@ -0,0 +1,279 @@
++++ linux/fs/aufs/branch.h     2017-07-29 12:14:25.896375188 +0200
+@@ -0,0 +1,321 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -4198,7 +4345,14 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +/* a xino file */
 +struct au_xino_file {
 +      struct file             *xi_file;
-+      struct mutex            xi_nondir_mtx;
++      struct {
++              spinlock_t              spin;
++              ino_t                   *array;
++              int                     total;
++              /* reserved for future use */
++              /* unsigned long        *bitmap; */
++              wait_queue_head_t       wqh;
++      } xi_nondir;
 +
 +      /* todo: make xino files an array to support huge inode number */
 +
@@ -4263,7 +4417,7 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +      struct path             br_path;
 +      spinlock_t              br_dykey_lock;
 +      struct au_dykey         *br_dykey[AuBrDynOp];
-+      atomic_t                br_count;
++      struct percpu_counter   br_count;
 +
 +      struct au_wbr           *br_wbr;
 +      struct au_br_fhsm       *br_fhsm;
@@ -4298,6 +4452,31 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +      return au_br_mnt(br)->mnt_sb;
 +}
 +
++static inline void au_br_get(struct au_branch *br)
++{
++      percpu_counter_inc(&br->br_count);
++}
++
++static inline void au_br_put(struct au_branch *br)
++{
++      percpu_counter_dec(&br->br_count);
++}
++
++static inline s64 au_br_count(struct au_branch *br)
++{
++      return percpu_counter_sum(&br->br_count);
++}
++
++static inline void au_br_count_init(struct au_branch *br)
++{
++      percpu_counter_init(&br->br_count, 0, GFP_NOFS);
++}
++
++static inline void au_br_count_fin(struct au_branch *br)
++{
++      percpu_counter_destroy(&br->br_count);
++}
++
 +static inline int au_br_rdonly(struct au_branch *br)
 +{
 +      return ((au_br_sb(br)->s_flags & MS_RDONLY)
@@ -4372,6 +4551,11 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +struct file *au_xino_def(struct super_block *sb);
 +int au_xino_path(struct seq_file *seq, struct file *file);
 +
++void au_xinondir_leave(struct super_block *sb, aufs_bindex_t bindex,
++                     ino_t h_ino, int idx);
++int au_xinondir_enter(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino,
++                    int *idx);
++
 +/* ---------------------------------------------------------------------- */
 +
 +/* Superblock to branch */
@@ -4393,9 +4577,14 @@ diff -urN /usr/share/empty/fs/aufs/branch.h linux/fs/aufs/branch.h
 +      return au_br_sb(au_sbr(sb, bindex));
 +}
 +
++static inline void au_sbr_get(struct super_block *sb, aufs_bindex_t bindex)
++{
++      au_br_get(au_sbr(sb, bindex));
++}
++
 +static inline void au_sbr_put(struct super_block *sb, aufs_bindex_t bindex)
 +{
-+      atomic_dec(&au_sbr(sb, bindex)->br_count);
++      au_br_put(au_sbr(sb, bindex));
 +}
 +
 +static inline int au_sbr_perm(struct super_block *sb, aufs_bindex_t bindex)
@@ -4443,7 +4632,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      2015-09-24 10:47:58.248052907 +0200
++++ linux/fs/aufs/conf.mk      2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,38 @@
 +
 +AuConfStr = CONFIG_AUFS_FS=${CONFIG_AUFS_FS}
@@ -4485,10 +4674,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       2015-11-11 17:21:46.915530388 +0100
-@@ -0,0 +1,1319 @@
++++ linux/fs/aufs/cpup.c       2017-09-05 10:42:11.055421928 +0200
+@@ -0,0 +1,1442 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -4510,6 +4699,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +#include <linux/fs_stack.h>
 +#include <linux/mm.h>
++#include <linux/task_work.h>
 +#include "aufs.h"
 +
 +void au_cpup_attr_flags(struct inode *dst, unsigned int iflags)
@@ -4528,7 +4718,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +{
 +      struct inode *h_inode;
 +
-+      h_inode = au_h_iptr(inode, au_ibstart(inode));
++      h_inode = au_h_iptr(inode, au_ibtop(inode));
 +      fsstack_copy_attr_times(inode, h_inode);
 +      fsstack_copy_inode_size(inode, h_inode);
 +}
@@ -4537,10 +4727,10 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +{
 +      struct inode *h_inode;
 +      struct super_block *sb;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +
 +      sb = inode->i_sb;
-+      bindex = au_ibstart(inode);
++      bindex = au_ibtop(inode);
 +      h_inode = au_h_iptr(inode, bindex);
 +      if (!force
 +          && !S_ISDIR(h_inode->i_mode)
@@ -4563,8 +4753,8 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +       * it may includes whplink directory.
 +       */
 +      if (S_ISDIR(h_inode->i_mode)) {
-+              bend = au_ibend(inode);
-+              for (bindex++; bindex <= bend; bindex++) {
++              bbot = au_ibbot(inode);
++              for (bindex++; bindex <= bbot; bindex++) {
 +                      h_inode = au_h_iptr(inode, bindex);
 +                      if (h_inode)
 +                              au_add_nlink(inode, h_inode);
@@ -4576,7 +4766,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +{
 +      struct inode *h_inode;
 +
-+      h_inode = au_h_iptr(inode, au_ibstart(inode));
++      h_inode = au_h_iptr(inode, au_ibtop(inode));
 +      inode->i_mode = h_inode->i_mode;
 +      inode->i_uid = h_inode->i_uid;
 +      inode->i_gid = h_inode->i_gid;
@@ -4598,7 +4788,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +{
 +      struct inode *h_inode;
 +
-+      h_inode = au_h_iptr(inode, au_ibstart(inode));
++      h_inode = au_h_iptr(inode, au_ibtop(inode));
 +      au_cpup_attr_changeable(inode);
 +      if (inode->i_nlink > 0)
 +              au_cpup_attr_nlink(inode, force);
@@ -4726,7 +4916,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      size_t sz, rbytes, wbytes;
 +      unsigned char all_zero;
 +      char *p, *zp;
-+      struct mutex *h_mtx;
++      struct inode *h_inode;
 +      /* reduce stack usage */
 +      struct iattr *ia;
 +
@@ -4806,12 +4996,12 @@ 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 = &file_inode(dst)->i_mutex;
-+                      mutex_lock_nested(h_mtx, AuLsc_I_CHILD2);
++                      h_inode = file_inode(dst);
++                      inode_lock_nested(h_inode, AuLsc_I_CHILD2);
 +                      /* no delegation since it is just created */
 +                      err = vfsub_notify_change(&dst->f_path, ia,
 +                                                /*delegated*/NULL);
-+                      mutex_unlock(h_mtx);
++                      inode_unlock(h_inode);
 +              }
 +      }
 +
@@ -4853,6 +5043,59 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      return err;
 +}
 +
++static int au_do_copy(struct file *dst, struct file *src, loff_t len)
++{
++      int err;
++      struct super_block *h_src_sb;
++      struct inode *h_src_inode;
++
++      h_src_inode = file_inode(src);
++      h_src_sb = h_src_inode->i_sb;
++
++      /* XFS acquires inode_lock */
++      if (!au_test_xfs(h_src_sb))
++              err = au_copy_file(dst, src, len);
++      else {
++              inode_unlock_shared(h_src_inode);
++              err = au_copy_file(dst, src, len);
++              vfsub_inode_lock_shared_nested(h_src_inode, AuLsc_I_CHILD);
++      }
++
++      return err;
++}
++
++static int au_clone_or_copy(struct file *dst, struct file *src, loff_t len)
++{
++      int err;
++      struct super_block *h_src_sb;
++      struct inode *h_src_inode;
++
++      h_src_inode = file_inode(src);
++      h_src_sb = h_src_inode->i_sb;
++      if (h_src_sb != file_inode(dst)->i_sb
++          || !dst->f_op->clone_file_range) {
++              err = au_do_copy(dst, src, len);
++              goto out;
++      }
++
++      if (!au_test_nfs(h_src_sb)) {
++              inode_unlock_shared(h_src_inode);
++              err = vfsub_clone_file_range(src, dst, len);
++              vfsub_inode_lock_shared_nested(h_src_inode, AuLsc_I_CHILD);
++      } else
++              err = vfsub_clone_file_range(src, dst, len);
++      /* older XFS has a condition in cloning */
++      if (unlikely(err != -EOPNOTSUPP))
++              goto out;
++
++      /* the backend fs on NFS may not support cloning */
++      err = au_do_copy(dst, src, len);
++
++out:
++      AuTraceErr(err);
++      return err;
++}
++
 +/*
 + * to support a sparse file which is opened with O_APPEND,
 + * we need to close the file.
@@ -4881,7 +5124,9 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +                      .label = &&out_src
 +              }
 +      };
-+      struct super_block *sb;
++      struct super_block *sb, *h_src_sb;
++      struct inode *h_src_inode;
++      struct task_struct *tsk = current;
 +
 +      /* bsrc branch can be ro/rw. */
 +      sb = cpg->dentry->d_sb;
@@ -4896,10 +5141,27 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      }
 +
 +      /* try stopping to update while we copyup */
-+      IMustLock(d_inode(file[SRC].dentry));
-+      err = au_copy_file(file[DST].file, file[SRC].file, cpg->len);
-+
-+      fput(file[DST].file);
++      h_src_inode = d_inode(file[SRC].dentry);
++      h_src_sb = h_src_inode->i_sb;
++      if (!au_test_nfs(h_src_sb))
++              IMustLock(h_src_inode);
++      err = au_clone_or_copy(file[DST].file, file[SRC].file, cpg->len);
++
++      /* i wonder if we had O_NO_DELAY_FPUT flag */
++      if (tsk->flags & PF_KTHREAD)
++              __fput_sync(file[DST].file);
++      else {
++              WARN(1, "%pD\nPlease report this warning to aufs-users ML",
++                   file[DST].file);
++              fput(file[DST].file);
++              /*
++               * too bad.
++               * we have to call both since we don't know which place the file
++               * was added to.
++               */
++              task_work_run();
++              flush_delayed_fput();
++      }
 +      au_sbr_put(sb, file[DST].bindex);
 +
 +out_src:
@@ -4924,26 +5186,31 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              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);
++              vfsub_inode_lock_shared_nested(h_src_inode, AuLsc_I_CHILD);
 +              au_pin_hdir_unlock(cpg->pin);
 +
 +              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;
 +              if (!au_test_nfs(h_src_inode->i_sb))
-+                      err = vfs_getattr(&h_path, &h_src_attr->st);
++                      err = vfsub_getattr(&h_path, &h_src_attr->st);
 +              else {
-+                      mutex_unlock(&h_src_inode->i_mutex);
-+                      err = vfs_getattr(&h_path, &h_src_attr->st);
-+                      mutex_lock_nested(&h_src_inode->i_mutex, AuLsc_I_CHILD);
++                      inode_unlock_shared(h_src_inode);
++                      err = vfsub_getattr(&h_path, &h_src_attr->st);
++                      vfsub_inode_lock_shared_nested(h_src_inode, AuLsc_I_CHILD);
 +              }
 +              if (unlikely(err)) {
-+                      mutex_unlock(&h_src_inode->i_mutex);
++                      inode_unlock_shared(h_src_inode);
 +                      goto out;
 +              }
 +              h_src_attr->valid = 1;
-+              err = au_cp_regular(cpg);
-+              mutex_unlock(&h_src_inode->i_mutex);
++              if (!au_test_nfs(h_src_inode->i_sb)) {
++                      err = au_cp_regular(cpg);
++                      inode_unlock_shared(h_src_inode);
++              } else {
++                      inode_unlock_shared(h_src_inode);
++                      err = au_cp_regular(cpg);
++              }
 +              rerr = au_pin_hdir_relock(cpg->pin);
 +              if (!err && rerr)
 +                      err = rerr;
@@ -4969,12 +5236,6 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              char *k;
 +              char __user *u;
 +      } sym;
-+      struct inode *h_inode = d_inode(h_src);
-+      const struct inode_operations *h_iop = h_inode->i_op;
-+
-+      err = -ENOSYS;
-+      if (unlikely(!h_iop->readlink))
-+              goto out;
 +
 +      err = -ENOMEM;
 +      sym.k = (void *)__get_free_page(GFP_NOFS);
@@ -4984,7 +5245,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      /* unnecessary to support mmap_sem since symlink is not mmap-able */
 +      old_fs = get_fs();
 +      set_fs(KERNEL_DS);
-+      symlen = h_iop->readlink(h_src, sym.u, PATH_MAX);
++      symlen = vfs_readlink(h_src, sym.u, PATH_MAX);
 +      err = symlen;
 +      set_fs(old_fs);
 +
@@ -4998,6 +5259,57 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      return err;
 +}
 +
++/*
++ * regardless 'acl' option, reset all ACL.
++ * All ACL will be copied up later from the original entry on the lower branch.
++ */
++static int au_reset_acl(struct inode *h_dir, struct path *h_path, umode_t mode)
++{
++      int err;
++      struct dentry *h_dentry;
++      struct inode *h_inode;
++
++      h_dentry = h_path->dentry;
++      h_inode = d_inode(h_dentry);
++      /* forget_all_cached_acls(h_inode)); */
++      err = vfsub_removexattr(h_dentry, XATTR_NAME_POSIX_ACL_ACCESS);
++      AuTraceErr(err);
++      if (err == -EOPNOTSUPP)
++              err = 0;
++      if (!err)
++              err = vfsub_acl_chmod(h_inode, mode);
++
++      AuTraceErr(err);
++      return err;
++}
++
++static int au_do_cpup_dir(struct au_cp_generic *cpg, struct dentry *dst_parent,
++                        struct inode *h_dir, struct path *h_path)
++{
++      int err;
++      struct inode *dir, *inode;
++
++      err = vfsub_removexattr(h_path->dentry, XATTR_NAME_POSIX_ACL_DEFAULT);
++      AuTraceErr(err);
++      if (err == -EOPNOTSUPP)
++              err = 0;
++      if (unlikely(err))
++              goto out;
++
++      /*
++       * strange behaviour from the users view,
++       * particularry setattr case
++       */
++      dir = d_inode(dst_parent);
++      if (au_ibtop(dir) == cpg->bdst)
++              au_cpup_attr_nlink(dir, /*force*/1);
++      inode = d_inode(cpg->dentry);
++      au_cpup_attr_nlink(inode, /*force*/1);
++
++out:
++      return err;
++}
++
 +static noinline_for_stack
 +int cpup_entry(struct au_cp_generic *cpg, struct dentry *dst_parent,
 +             struct au_cpup_reg_attr *h_src_attr)
@@ -5010,7 +5322,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      struct au_dtime dt;
 +      struct path h_path;
 +      struct dentry *h_src, *h_dst, *h_parent;
-+      struct inode *h_inode, *h_dir, *dir, *inode;
++      struct inode *h_inode, *h_dir;
 +      struct super_block *sb;
 +
 +      /* bsrc branch can be ro/rw. */
@@ -5042,7 +5354,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      switch (mode & S_IFMT) {
 +      case S_IFREG:
 +              isreg = 1;
-+              err = vfsub_create(h_dir, &h_path, mode | S_IWUSR,
++              err = vfsub_create(h_dir, &h_path, S_IRUSR | S_IWUSR,
 +                                 /*want_excl*/true);
 +              if (!err)
 +                      err = au_do_cpup_regular(cpg, h_src_attr);
@@ -5050,17 +5362,8 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      case S_IFDIR:
 +              isdir = 1;
 +              err = vfsub_mkdir(h_dir, &h_path, mode);
-+              if (!err) {
-+                      /*
-+                       * strange behaviour from the users view,
-+                       * particularry setattr case
-+                       */
-+                      dir = d_inode(dst_parent);
-+                      if (au_ibstart(dir) == cpg->bdst)
-+                              au_cpup_attr_nlink(dir, /*force*/1);
-+                      inode = d_inode(cpg->dentry);
-+                      au_cpup_attr_nlink(inode, /*force*/1);
-+              }
++              if (!err)
++                      err = au_do_cpup_dir(cpg, dst_parent, h_dir, &h_path);
 +              break;
 +      case S_IFLNK:
 +              err = au_do_cpup_symlink(&h_path, h_src, h_dir);
@@ -5077,6 +5380,8 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              AuIOErr("Unknown inode type 0%o\n", mode);
 +              err = -EIO;
 +      }
++      if (!err)
++              err = au_reset_acl(h_dir, &h_path, mode);
 +
 +      mnt_flags = au_mntflags(sb);
 +      if (!au_opt_test(mnt_flags, UDBA_NONE)
@@ -5140,7 +5445,8 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      IMustLock(h_dir);
 +      AuDbg("%pd %pd\n", h_dentry, h_path->dentry);
 +      /* no delegation since it is just created */
-+      err = vfsub_rename(h_dir, h_dentry, h_dir, h_path, /*delegated*/NULL);
++      err = vfsub_rename(h_dir, h_dentry, h_dir, h_path, /*delegated*/NULL,
++                         /*flags*/0);
 +      dput(h_path->dentry);
 +
 +out:
@@ -5153,11 +5459,13 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 + * @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.
++ * aufs doesn't touch the credential so
++ * security_inode_copy_up{,_xattr}() are unnecrssary.
 + */
 +static int au_cpup_single(struct au_cp_generic *cpg, struct dentry *dst_parent)
 +{
 +      int err, rerr;
-+      aufs_bindex_t old_ibstart;
++      aufs_bindex_t old_ibtop;
 +      unsigned char isdir, plink;
 +      struct dentry *h_src, *h_dst, *h_parent;
 +      struct inode *dst_inode, *h_dir, *inode, *delegated, *src_inode;
@@ -5245,12 +5553,12 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      }
 +
 +      isdir = S_ISDIR(inode->i_mode);
-+      old_ibstart = au_ibstart(inode);
++      old_ibtop = au_ibtop(inode);
 +      err = cpup_entry(cpg, dst_parent, &a->h_src_attr);
 +      if (unlikely(err))
 +              goto out_rev;
 +      dst_inode = d_inode(h_dst);
-+      mutex_lock_nested(&dst_inode->i_mutex, AuLsc_I_CHILD2);
++      inode_lock_nested(dst_inode, AuLsc_I_CHILD2);
 +      /* todo: necessary? */
 +      /* au_pin_hdir_unlock(cpg->pin); */
 +
@@ -5258,29 +5566,29 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      if (unlikely(err)) {
 +              /* todo: necessary? */
 +              /* au_pin_hdir_relock(cpg->pin); */ /* ignore an error */
-+              mutex_unlock(&dst_inode->i_mutex);
++              inode_unlock(dst_inode);
 +              goto out_rev;
 +      }
 +
-+      if (cpg->bdst < old_ibstart) {
++      if (cpg->bdst < old_ibtop) {
 +              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);
++                              inode_unlock(dst_inode);
 +                              goto out_rev;
 +                      }
 +              }
-+              au_set_ibstart(inode, cpg->bdst);
++              au_set_ibtop(inode, cpg->bdst);
 +      } else
-+              au_set_ibend(inode, cpg->bdst);
++              au_set_ibbot(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);
++      inode_unlock(dst_inode);
 +      if (unlikely(err))
 +              goto out_rev;
 +
@@ -5430,7 +5738,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +              /* revert */
 +              au_set_h_dptr(dentry, cpg->bdst, NULL);
-+              au_set_dbstart(dentry, cpg->bsrc);
++              au_set_dbtop(dentry, cpg->bsrc);
 +      }
 +
 +      return err;
@@ -5492,20 +5800,20 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +
 +int au_sio_cpup_simple(struct au_cp_generic *cpg)
 +{
-+      aufs_bindex_t bsrc, bend;
++      aufs_bindex_t bsrc, bbot;
 +      struct dentry *dentry, *h_dentry;
 +
 +      if (cpg->bsrc < 0) {
 +              dentry = cpg->dentry;
-+              bend = au_dbend(dentry);
-+              for (bsrc = cpg->bdst + 1; bsrc <= bend; bsrc++) {
++              bbot = au_dbbot(dentry);
++              for (bsrc = cpg->bdst + 1; bsrc <= bbot; bsrc++) {
 +                      h_dentry = au_h_dptr(dentry, bsrc);
 +                      if (h_dentry) {
 +                              AuDebugOn(d_is_negative(h_dentry));
 +                              break;
 +                      }
 +              }
-+              AuDebugOn(bsrc > bend);
++              AuDebugOn(bsrc > bbot);
 +              cpg->bsrc = bsrc;
 +      }
 +      AuDebugOn(cpg->bsrc <= cpg->bdst);
@@ -5529,23 +5837,27 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      int err;
 +      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;
++      struct {
++              struct au_hdentry *hd;
++              struct dentry *h_dentry;
++      } hdst, hsrc;
 +
 +      dinfo = au_di(cpg->dentry);
 +      AuRwMustWriteLock(&dinfo->di_rwsem);
 +
 +      bsrc_orig = cpg->bsrc;
-+      cpg->bsrc = dinfo->di_bstart;
-+      hdp = dinfo->di_hdentry;
-+      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;
++      cpg->bsrc = dinfo->di_btop;
++      hdst.hd = au_hdentry(dinfo, cpg->bdst);
++      hdst.h_dentry = hdst.hd->hd_dentry;
++      hdst.hd->hd_dentry = wh_dentry;
++      dinfo->di_btop = cpg->bdst;
++
++      hsrc.h_dentry = NULL;
 +      if (file) {
-+              h_d_start = hdp[0 + cpg->bsrc].hd_dentry;
-+              hdp[0 + cpg->bsrc].hd_dentry = au_hf_top(file)->f_path.dentry;
++              hsrc.hd = au_hdentry(dinfo, cpg->bsrc);
++              hsrc.h_dentry = hsrc.hd->hd_dentry;
++              hsrc.hd->hd_dentry = au_hf_top(file)->f_path.dentry;
 +      }
 +      flags_orig = cpg->flags;
 +      cpg->flags = !AuCpup_DTIME;
@@ -5554,10 +5866,10 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      if (file) {
 +              if (!err)
 +                      err = au_reopen_nondir(file);
-+              hdp[0 + cpg->bsrc].hd_dentry = h_d_start;
++              hsrc.hd->hd_dentry = hsrc.h_dentry;
 +      }
-+      hdp[0 + cpg->bdst].hd_dentry = h_d_dst;
-+      dinfo->di_bstart = cpg->bsrc;
++      hdst.hd->hd_dentry = hdst.h_dentry;
++      dinfo->di_btop = cpg->bsrc;
 +      cpg->bsrc = bsrc_orig;
 +
 +      return err;
@@ -5654,7 +5966,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              h_tmpdir = d_inode(h_orph);
 +              au_set_h_iptr(dir, bdst, au_igrab(h_tmpdir), /*flags*/0);
 +
-+              mutex_lock_nested(&h_tmpdir->i_mutex, AuLsc_I_PARENT3);
++              inode_lock_nested(h_tmpdir, AuLsc_I_PARENT3);
 +              /* todo: au_h_open_pre()? */
 +
 +              pin_orig = cpg->pin;
@@ -5678,7 +5990,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +      }
 +
 +      if (h_orph) {
-+              mutex_unlock(&h_tmpdir->i_mutex);
++              inode_unlock(h_tmpdir);
 +              /* 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);
@@ -5741,7 +6053,7 @@ diff -urN /usr/share/empty/fs/aufs/cpup.c linux/fs/aufs/cpup.c
 +              h_dentry = au_h_dptr(d, bdst);
 +              if (!h_dentry || d_is_negative(h_dentry)) {
 +                      if (h_dentry)
-+                              au_update_dbstart(d);
++                              au_update_dbtop(d);
 +
 +                      au_pin_set_dentry(&pin, d);
 +                      err = au_do_pin(&pin);
@@ -5808,10 +6120,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       2015-09-24 10:47:58.248052907 +0200
++++ linux/fs/aufs/cpup.h       2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,94 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -5906,10 +6218,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    2015-09-24 10:47:58.248052907 +0200
-@@ -0,0 +1,432 @@
++++ linux/fs/aufs/dbgaufs.c    2017-07-29 12:14:25.899708630 +0200
+@@ -0,0 +1,438 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -5972,15 +6284,15 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +      if (!xf)
 +              goto out;
 +
-+      err = vfs_getattr(&xf->f_path, &st);
++      err = vfsub_getattr(&xf->f_path, &st);
 +      if (!err) {
 +              if (do_fcnt)
 +                      p->n = snprintf
-+                              (p->a, sizeof(p->a), "%ld, %llux%lu %lld\n",
++                              (p->a, sizeof(p->a), "%ld, %llux%u %lld\n",
 +                               (long)file_count(xf), st.blocks, st.blksize,
 +                               (long long)st.size);
 +              else
-+                      p->n = snprintf(p->a, sizeof(p->a), "%llux%lu %lld\n",
++                      p->n = snprintf(p->a, sizeof(p->a), "%llux%u %lld\n",
 +                                      st.blocks, st.blksize,
 +                                      (long long)st.size);
 +              AuDebugOn(p->n >= sizeof(p->a));
@@ -6148,7 +6460,7 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +      sbinfo = inode->i_private;
 +      sb = sbinfo->si_sb;
 +      si_noflush_read_lock(sb);
-+      if (l <= au_sbend(sb)) {
++      if (l <= au_sbbot(sb)) {
 +              xf = au_sbr(sb, (aufs_bindex_t)l)->br_xino.xi_file;
 +              err = dbgaufs_xi_open(xf, file, /*do_fcnt*/1);
 +      } else
@@ -6168,18 +6480,21 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +
 +void dbgaufs_brs_del(struct super_block *sb, aufs_bindex_t bindex)
 +{
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +      struct au_branch *br;
 +      struct au_xino_file *xi;
 +
 +      if (!au_sbi(sb)->si_dbgaufs)
 +              return;
 +
-+      bend = au_sbend(sb);
-+      for (; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (; bindex <= bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              xi = &br->br_xino;
++              /* debugfs acquires the parent i_mutex */
++              lockdep_off();
 +              debugfs_remove(xi->xi_dbgaufs);
++              lockdep_on();
 +              xi->xi_dbgaufs = NULL;
 +      }
 +}
@@ -6190,7 +6505,7 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +      struct dentry *parent;
 +      struct au_branch *br;
 +      struct au_xino_file *xi;
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +      char name[sizeof(DbgaufsXi_PREFIX) + 5]; /* "xi" bindex NULL */
 +
 +      sbinfo = au_sbi(sb);
@@ -6198,14 +6513,17 @@ diff -urN /usr/share/empty/fs/aufs/dbgaufs.c linux/fs/aufs/dbgaufs.c
 +      if (!parent)
 +              return;
 +
-+      bend = au_sbend(sb);
-+      for (; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (; bindex <= bbot; bindex++) {
 +              snprintf(name, sizeof(name), DbgaufsXi_PREFIX "%d", bindex);
 +              br = au_sbr(sb, bindex);
 +              xi = &br->br_xino;
 +              AuDebugOn(xi->xi_dbgaufs);
++              /* debugfs acquires the parent i_mutex */
++              lockdep_off();
 +              xi->xi_dbgaufs = debugfs_create_file(name, dbgaufs_mode, parent,
 +                                                   sbinfo, &dbgaufs_xino_fop);
++              lockdep_on();
 +              /* ignore an error */
 +              if (unlikely(!xi->xi_dbgaufs))
 +                      AuWarn1("failed %s under debugfs\n", name);
@@ -6342,10 +6660,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    2015-09-24 10:47:58.248052907 +0200
++++ linux/fs/aufs/dbgaufs.h    2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,48 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -6394,10 +6712,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      2015-09-24 10:47:58.248052907 +0200
-@@ -0,0 +1,224 @@
++++ linux/fs/aufs/dcsub.c      2017-07-29 12:14:25.899708630 +0200
+@@ -0,0 +1,225 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -6480,7 +6798,8 @@ diff -urN /usr/share/empty/fs/aufs/dcsub.c linux/fs/aufs/dcsub.c
 +              err = -ENOMEM;
 +              sz = dpages->ndpage * sizeof(*dpages->dpages);
 +              p = au_kzrealloc(dpages->dpages, sz,
-+                               sz + sizeof(*dpages->dpages), gfp);
++                               sz + sizeof(*dpages->dpages), gfp,
++                               /*may_shrink*/0);
 +              if (unlikely(!p))
 +                      goto out;
 +
@@ -6622,10 +6941,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      2015-09-24 10:47:58.251386326 +0200
++++ linux/fs/aufs/dcsub.h      2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,136 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -6762,10 +7081,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      2015-09-24 10:47:58.251386326 +0200
++++ linux/fs/aufs/debug.c      2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,440 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -6907,25 +7226,24 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +void au_dpri_inode(struct inode *inode)
 +{
 +      struct au_iinfo *iinfo;
++      struct au_hinode *hi;
 +      aufs_bindex_t bindex;
 +      int err, hn;
 +
 +      err = do_pri_inode(-1, inode, -1, NULL);
-+      if (err || !au_test_aufs(inode->i_sb))
++      if (err || !au_test_aufs(inode->i_sb) || au_is_bad_inode(inode))
 +              return;
 +
 +      iinfo = au_ii(inode);
-+      if (!iinfo)
-+              return;
-+      dpri("i-1: bstart %d, bend %d, gen %d\n",
-+           iinfo->ii_bstart, iinfo->ii_bend, au_iigen(inode, NULL));
-+      if (iinfo->ii_bstart < 0)
++      dpri("i-1: btop %d, bbot %d, gen %d\n",
++           iinfo->ii_btop, iinfo->ii_bbot, au_iigen(inode, NULL));
++      if (iinfo->ii_btop < 0)
 +              return;
 +      hn = 0;
-+      for (bindex = iinfo->ii_bstart; bindex <= iinfo->ii_bend; bindex++) {
-+              hn = !!au_hn(iinfo->ii_hinode + bindex);
-+              do_pri_inode(bindex, iinfo->ii_hinode[0 + bindex].hi_inode, hn,
-+                           iinfo->ii_hinode[0 + bindex].hi_whdentry);
++      for (bindex = iinfo->ii_btop; bindex <= iinfo->ii_bbot; bindex++) {
++              hi = au_hinode(iinfo, bindex);
++              hn = !!au_hn(hi);
++              do_pri_inode(bindex, hi->hi_inode, hn, hi->hi_whdentry);
 +      }
 +}
 +
@@ -6943,7 +7261,9 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +{
 +      struct dentry *wh = NULL;
 +      int hn;
++      struct inode *inode;
 +      struct au_iinfo *iinfo;
++      struct au_hinode *hi;
 +
 +      if (!dentry || IS_ERR(dentry)) {
 +              dpri("d%d: err %ld\n", bindex, PTR_ERR(dentry));
@@ -6957,16 +7277,19 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +           au_dcount(dentry), dentry->d_flags,
 +           d_unhashed(dentry) ? "un" : "");
 +      hn = -1;
-+      if (bindex >= 0
-+          && d_is_positive(dentry)
-+          && au_test_aufs(dentry->d_sb)) {
-+              iinfo = au_ii(d_inode(dentry));
-+              if (iinfo) {
-+                      hn = !!au_hn(iinfo->ii_hinode + bindex);
-+                      wh = iinfo->ii_hinode[0 + bindex].hi_whdentry;
-+              }
-+      }
-+      do_pri_inode(bindex, d_inode(dentry), hn, wh);
++      inode = NULL;
++      if (d_is_positive(dentry))
++              inode = d_inode(dentry);
++      if (inode
++          && au_test_aufs(dentry->d_sb)
++          && bindex >= 0
++          && !au_is_bad_inode(inode)) {
++              iinfo = au_ii(inode);
++              hi = au_hinode(iinfo, bindex);
++              hn = !!au_hn(hi);
++              wh = hi->hi_whdentry;
++      }
++      do_pri_inode(bindex, inode, hn, wh);
 +      return 0;
 +}
 +
@@ -6975,7 +7298,6 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +      struct au_dinfo *dinfo;
 +      aufs_bindex_t bindex;
 +      int err;
-+      struct au_hdentry *hdp;
 +
 +      err = do_pri_dentry(-1, dentry);
 +      if (err || !au_test_aufs(dentry->d_sb))
@@ -6984,15 +7306,14 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +      dinfo = au_di(dentry);
 +      if (!dinfo)
 +              return;
-+      dpri("d-1: bstart %d, bend %d, bwh %d, bdiropq %d, gen %d, tmp %d\n",
-+           dinfo->di_bstart, dinfo->di_bend,
++      dpri("d-1: btop %d, bbot %d, bwh %d, bdiropq %d, gen %d, tmp %d\n",
++           dinfo->di_btop, dinfo->di_bbot,
 +           dinfo->di_bwh, dinfo->di_bdiropq, au_digen(dentry),
 +           dinfo->di_tmpfile);
-+      if (dinfo->di_bstart < 0)
++      if (dinfo->di_btop < 0)
 +              return;
-+      hdp = dinfo->di_hdentry;
-+      for (bindex = dinfo->di_bstart; bindex <= dinfo->di_bend; bindex++)
-+              do_pri_dentry(bindex, hdp[0 + bindex].hd_dentry);
++      for (bindex = dinfo->di_btop; bindex <= dinfo->di_bbot; bindex++)
++              do_pri_dentry(bindex, au_hdentry(dinfo, bindex)->hd_dentry);
 +}
 +
 +static int do_pri_file(aufs_bindex_t bindex, struct file *file)
@@ -7063,10 +7384,10 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +      if (!sb || IS_ERR(sb))
 +              goto out;
 +
-+      dpri("s%d: {perm 0x%x, id %d, cnt %d, wbr %p}, "
++      dpri("s%d: {perm 0x%x, id %d, cnt %lld, wbr %p}, "
 +           "%s, dev 0x%02x%02x, flags 0x%lx, cnt %d, active %d, "
 +           "xino %d\n",
-+           bindex, br->br_perm, br->br_id, atomic_read(&br->br_count),
++           bindex, br->br_perm, br->br_id, au_br_count(br),
 +           br->br_wbr, au_sbtype(sb), MAJOR(sb->s_dev), MINOR(sb->s_dev),
 +           sb->s_flags, sb->s_count,
 +           atomic_read(&sb->s_active), !!br->br_xino.xi_file);
@@ -7096,12 +7417,10 @@ 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_path.mnt = &a->mnt;
-+      a->fake.br_xino.xi_file = NULL;
-+      atomic_set(&a->fake.br_count, 0);
-+      smp_mb(); /* atomic_set */
++      au_br_count_init(&a->fake);
 +      err = do_pri_br(-1, &a->fake);
++      au_br_count_fin(&a->fake);
 +      kfree(a);
 +      dpri("dev 0x%x\n", sb->s_dev);
 +      if (err || !au_test_aufs(sb))
@@ -7112,8 +7431,8 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +              return;
 +      dpri("nw %d, gen %u, kobj %d\n",
 +           atomic_read(&sbinfo->si_nowait.nw_len), sbinfo->si_generation,
-+           atomic_read(&sbinfo->si_kobj.kref.refcount));
-+      for (bindex = 0; bindex <= sbinfo->si_bend; bindex++)
++           kref_read(&sbinfo->si_kobj.kref));
++      for (bindex = 0; bindex <= sbinfo->si_bbot; bindex++)
 +              do_pri_br(bindex, sbinfo->si_branch[0 + bindex]);
 +}
 +
@@ -7123,21 +7442,21 @@ diff -urN /usr/share/empty/fs/aufs/debug.c linux/fs/aufs/debug.c
 +{
 +      struct inode *h_inode, *inode = d_inode(dentry);
 +      struct dentry *h_dentry;
-+      aufs_bindex_t bindex, bend, bi;
++      aufs_bindex_t bindex, bbot, bi;
 +
 +      if (!inode /* || au_di(dentry)->di_lsc == AuLsc_DI_TMP */)
 +              return;
 +
-+      bend = au_dbend(dentry);
-+      bi = au_ibend(inode);
-+      if (bi < bend)
-+              bend = bi;
-+      bindex = au_dbstart(dentry);
-+      bi = au_ibstart(inode);
++      bbot = au_dbbot(dentry);
++      bi = au_ibbot(inode);
++      if (bi < bbot)
++              bbot = bi;
++      bindex = au_dbtop(dentry);
++      bi = au_ibtop(inode);
 +      if (bi > bindex)
 +              bindex = bi;
 +
-+      for (; bindex <= bend; bindex++) {
++      for (; bindex <= bbot; bindex++) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (!h_dentry)
 +                      continue;
@@ -7206,10 +7525,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      2015-09-24 10:47:58.251386326 +0200
++++ linux/fs/aufs/debug.h      2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,225 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -7435,10 +7754,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     2015-11-11 17:21:46.918863802 +0100
-@@ -0,0 +1,1136 @@
++++ linux/fs/aufs/dentry.c     2017-09-05 10:42:11.055421928 +0200
+@@ -0,0 +1,1130 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -7461,14 +7780,6 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +#include <linux/namei.h>
 +#include "aufs.h"
 +
-+#define AuLkup_ALLOW_NEG      1
-+#define AuLkup_IGNORE_PERM    (1 << 1)
-+#define au_ftest_lkup(flags, name)    ((flags) & AuLkup_##name)
-+#define au_fset_lkup(flags, name) \
-+      do { (flags) |= AuLkup_##name; } while (0)
-+#define au_fclr_lkup(flags, name) \
-+      do { (flags) &= ~AuLkup_##name; } while (0)
-+
 +struct au_do_lookup_args {
 +      unsigned int            flags;
 +      mode_t                  type;
@@ -7496,7 +7807,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      br = au_sbr(dentry->d_sb, bindex);
 +      wh_able = !!au_br_whable(br->br_perm);
 +      if (wh_able)
-+              wh_found = au_wh_test(h_parent, wh_name, /*try_sio*/0);
++              wh_found = au_wh_test(h_parent, wh_name, ignore_perm);
 +      h_dentry = ERR_PTR(wh_found);
 +      if (!wh_found)
 +              goto real_lookup;
@@ -7504,7 +7815,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              goto out;
 +
 +      /* We found a whiteout */
-+      /* au_set_dbend(dentry, bindex); */
++      /* au_set_dbbot(dentry, bindex); */
 +      au_set_dbwh(dentry, bindex);
 +      if (!allow_neg)
 +              return NULL; /* success */
@@ -7529,10 +7840,10 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +                 || (args->type && args->type != (h_inode->i_mode & S_IFMT)))
 +              goto out_neg;
 +
-+      if (au_dbend(dentry) <= bindex)
-+              au_set_dbend(dentry, bindex);
-+      if (au_dbstart(dentry) < 0 || bindex < au_dbstart(dentry))
-+              au_set_dbstart(dentry, bindex);
++      if (au_dbbot(dentry) <= bindex)
++              au_set_dbbot(dentry, bindex);
++      if (au_dbtop(dentry) < 0 || bindex < au_dbtop(dentry))
++              au_set_dbtop(dentry, bindex);
 +      au_set_h_dptr(dentry, bindex, h_dentry);
 +
 +      if (!d_is_dir(h_dentry)
@@ -7540,9 +7851,9 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +          || (d_really_is_positive(dentry) && !d_is_dir(dentry)))
 +              goto out; /* success */
 +
-+      mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
++      vfsub_inode_lock_shared_nested(h_inode, AuLsc_I_CHILD);
 +      opq = au_diropq_test(h_dentry);
-+      mutex_unlock(&h_inode->i_mutex);
++      inode_unlock_shared(h_inode);
 +      if (opq > 0)
 +              au_set_dbdiropq(dentry, bindex);
 +      else if (unlikely(opq < 0)) {
@@ -7571,15 +7882,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)
++int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t btop,
++                 unsigned int flags)
 +{
 +      int npositive, err;
 +      aufs_bindex_t bindex, btail, bdiropq;
 +      unsigned char isdir, dirperm1;
 +      struct qstr whname;
 +      struct au_do_lookup_args args = {
-+              .flags          = 0,
-+              .type           = type
++              .flags          = flags
 +      };
 +      const struct qstr *name = &dentry->d_name;
 +      struct dentry *parent;
@@ -7595,14 +7906,12 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              goto out;
 +
 +      isdir = !!d_is_dir(dentry);
-+      if (!type)
-+              au_fset_lkup(args.flags, ALLOW_NEG);
 +      dirperm1 = !!au_opt_test(au_mntflags(sb), DIRPERM1);
 +
 +      npositive = 0;
 +      parent = dget_parent(dentry);
 +      btail = au_dbtaildir(parent);
-+      for (bindex = bstart; bindex <= btail; bindex++) {
++      for (bindex = btop; bindex <= btail; bindex++) {
 +              struct dentry *h_parent, *h_dentry;
 +              struct inode *h_inode, *h_dir;
 +
@@ -7610,19 +7919,17 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              if (h_dentry) {
 +                      if (d_is_positive(h_dentry))
 +                              npositive++;
-+                      if (type != S_IFDIR)
-+                              break;
-+                      continue;
++                      break;
 +              }
 +              h_parent = au_h_dptr(parent, bindex);
 +              if (!h_parent || !d_is_dir(h_parent))
 +                      continue;
 +
 +              h_dir = d_inode(h_parent);
-+              mutex_lock_nested(&h_dir->i_mutex, AuLsc_I_PARENT);
++              vfsub_inode_lock_shared_nested(h_dir, AuLsc_I_PARENT);
 +              h_dentry = au_do_lookup(h_parent, dentry, bindex, &whname,
 +                                      &args);
-+              mutex_unlock(&h_dir->i_mutex);
++              inode_unlock_shared(h_dir);
 +              err = PTR_ERR(h_dentry);
 +              if (IS_ERR(h_dentry))
 +                      goto out_parent;
@@ -7653,11 +7960,11 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +
 +      if (npositive) {
 +              AuLabel(positive);
-+              au_update_dbstart(dentry);
++              au_update_dbtop(dentry);
 +      }
 +      err = npositive;
 +      if (unlikely(!au_opt_test(au_mntflags(sb), UDBA_NONE)
-+                   && au_dbstart(dentry) < 0)) {
++                   && au_dbtop(dentry) < 0)) {
 +              err = -EIO;
 +              AuIOErr("both of real entry and whiteout found, %pd, err %d\n",
 +                      dentry, err);
@@ -7719,10 +8026,10 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      }
 +
 +      err = 0;
-+      if (bindex < au_dbstart(dentry))
-+              au_set_dbstart(dentry, bindex);
-+      if (au_dbend(dentry) < bindex)
-+              au_set_dbend(dentry, bindex);
++      if (bindex < au_dbtop(dentry))
++              au_set_dbtop(dentry, bindex);
++      if (au_dbbot(dentry) < bindex)
++              au_set_dbbot(dentry, bindex);
 +      au_set_h_dptr(dentry, bindex, h_dentry);
 +
 +out:
@@ -7834,7 +8141,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +static int au_do_refresh_hdentry(struct dentry *dentry, struct dentry *parent)
 +{
 +      int err;
-+      aufs_bindex_t new_bindex, bindex, bend, bwh, bdiropq;
++      aufs_bindex_t new_bindex, bindex, bbot, bwh, bdiropq;
 +      struct au_hdentry tmp, *p, *q;
 +      struct au_dinfo *dinfo;
 +      struct super_block *sb;
@@ -7843,11 +8150,12 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +
 +      sb = dentry->d_sb;
 +      dinfo = au_di(dentry);
-+      bend = dinfo->di_bend;
++      bbot = dinfo->di_bbot;
 +      bwh = dinfo->di_bwh;
 +      bdiropq = dinfo->di_bdiropq;
-+      p = dinfo->di_hdentry + dinfo->di_bstart;
-+      for (bindex = dinfo->di_bstart; bindex <= bend; bindex++, p++) {
++      bindex = dinfo->di_btop;
++      p = au_hdentry(dinfo, bindex);
++      for (; bindex <= bbot; bindex++, p++) {
 +              if (!p->hd_dentry)
 +                      continue;
 +
@@ -7866,7 +8174,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              }
 +
 +              /* swap two lower dentries, and loop again */
-+              q = dinfo->di_hdentry + new_bindex;
++              q = au_hdentry(dinfo, new_bindex);
 +              tmp = *q;
 +              *q = *p;
 +              *p = tmp;
@@ -7877,31 +8185,33 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      }
 +
 +      dinfo->di_bwh = -1;
-+      if (bwh >= 0 && bwh <= au_sbend(sb) && au_sbr_whable(sb, bwh))
++      if (bwh >= 0 && bwh <= au_sbbot(sb) && au_sbr_whable(sb, bwh))
 +              dinfo->di_bwh = bwh;
 +
 +      dinfo->di_bdiropq = -1;
 +      if (bdiropq >= 0
-+          && bdiropq <= au_sbend(sb)
++          && bdiropq <= au_sbbot(sb)
 +          && au_sbr_whable(sb, bdiropq))
 +              dinfo->di_bdiropq = bdiropq;
 +
 +      err = -EIO;
-+      dinfo->di_bstart = -1;
-+      dinfo->di_bend = -1;
-+      bend = au_dbend(parent);
-+      p = dinfo->di_hdentry;
-+      for (bindex = 0; bindex <= bend; bindex++, p++)
++      dinfo->di_btop = -1;
++      dinfo->di_bbot = -1;
++      bbot = au_dbbot(parent);
++      bindex = 0;
++      p = au_hdentry(dinfo, bindex);
++      for (; bindex <= bbot; bindex++, p++)
 +              if (p->hd_dentry) {
-+                      dinfo->di_bstart = bindex;
++                      dinfo->di_btop = bindex;
 +                      break;
 +              }
 +
-+      if (dinfo->di_bstart >= 0) {
-+              p = dinfo->di_hdentry + bend;
-+              for (bindex = bend; bindex >= 0; bindex--, p--)
++      if (dinfo->di_btop >= 0) {
++              bindex = bbot;
++              p = au_hdentry(dinfo, bindex);
++              for (; bindex >= 0; bindex--, p--)
 +                      if (p->hd_dentry) {
-+                              dinfo->di_bend = bindex;
++                              dinfo->di_bbot = bindex;
 +                              err = 0;
 +                              break;
 +                      }
@@ -8001,29 +8311,29 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +                             struct au_dinfo *tmp)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct {
 +              struct dentry *dentry;
 +              struct inode *inode;
 +              mode_t mode;
-+      } orig_h, tmp_h;
++      } orig_h, tmp_h = {
++              .dentry = NULL
++      };
 +      struct au_hdentry *hd;
 +      struct inode *inode, *h_inode;
 +      struct dentry *h_dentry;
 +
 +      err = 0;
-+      AuDebugOn(dinfo->di_bstart < 0);
++      AuDebugOn(dinfo->di_btop < 0);
 +      orig_h.mode = 0;
-+      orig_h.dentry = dinfo->di_hdentry[dinfo->di_bstart].hd_dentry;
++      orig_h.dentry = au_hdentry(dinfo, dinfo->di_btop)->hd_dentry;
 +      orig_h.inode = NULL;
 +      if (d_is_positive(orig_h.dentry)) {
 +              orig_h.inode = d_inode(orig_h.dentry);
 +              orig_h.mode = orig_h.inode->i_mode & S_IFMT;
 +      }
-+      memset(&tmp_h, 0, sizeof(tmp_h));
-+      if (tmp->di_bstart >= 0) {
-+              tmp_h.dentry = tmp->di_hdentry[tmp->di_bstart].hd_dentry;
-+              tmp_h.inode = NULL;
++      if (tmp->di_btop >= 0) {
++              tmp_h.dentry = au_hdentry(tmp, tmp->di_btop)->hd_dentry;
 +              if (d_is_positive(tmp_h.dentry)) {
 +                      tmp_h.inode = d_inode(tmp_h.dentry);
 +                      tmp_h.mode = tmp_h.inode->i_mode & S_IFMT;
@@ -8040,20 +8350,20 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +                      goto out;
 +              }
 +              AuDebugOn(inode);
-+              AuDebugOn(dinfo->di_bstart != dinfo->di_bend);
++              AuDebugOn(dinfo->di_btop != dinfo->di_bbot);
 +              AuDebugOn(dinfo->di_bdiropq != -1);
 +
 +              if (!tmp_h.inode) {
 +                      AuDbg("negative --> negative\n");
 +                      /* should have only one negative lower */
-+                      if (tmp->di_bstart >= 0
-+                          && tmp->di_bstart < dinfo->di_bstart) {
-+                              AuDebugOn(tmp->di_bstart != tmp->di_bend);
-+                              AuDebugOn(dinfo->di_bstart != dinfo->di_bend);
-+                              au_set_h_dptr(dentry, dinfo->di_bstart, NULL);
++                      if (tmp->di_btop >= 0
++                          && tmp->di_btop < dinfo->di_btop) {
++                              AuDebugOn(tmp->di_btop != tmp->di_bbot);
++                              AuDebugOn(dinfo->di_btop != dinfo->di_bbot);
++                              au_set_h_dptr(dentry, dinfo->di_btop, NULL);
 +                              au_di_cp(dinfo, tmp);
-+                              hd = tmp->di_hdentry + tmp->di_bstart;
-+                              au_set_h_dptr(dentry, tmp->di_bstart,
++                              hd = au_hdentry(tmp, tmp->di_btop);
++                              au_set_h_dptr(dentry, tmp->di_btop,
 +                                            dget(hd->hd_dentry));
 +                      }
 +                      au_dbg_verify_dinode(dentry);
@@ -8078,7 +8388,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +                      AuDbg("positive --> negative\n");
 +                      /* or bypassing aufs */
 +                      au_hide(dentry);
-+                      if (tmp->di_bwh >= 0 && tmp->di_bwh <= dinfo->di_bstart)
++                      if (tmp->di_bwh >= 0 && tmp->di_bwh <= dinfo->di_btop)
 +                              dinfo->di_bwh = tmp->di_bwh;
 +                      if (inode)
 +                              err = au_refresh_hinode_self(inode);
@@ -8086,7 +8396,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              } else if (orig_h.mode == tmp_h.mode) {
 +                      AuDbg("positive --> positive, same type\n");
 +                      if (!S_ISDIR(orig_h.mode)
-+                          && dinfo->di_bstart > tmp->di_bstart) {
++                          && dinfo->di_btop > tmp->di_btop) {
 +                              /*
 +                               * similar to the behaviour of removing and
 +                               * creating.
@@ -8097,19 +8407,19 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +                              au_dbg_verify_dinode(dentry);
 +                      } else {
 +                              /* fill empty slots */
-+                              if (dinfo->di_bstart > tmp->di_bstart)
-+                                      dinfo->di_bstart = tmp->di_bstart;
-+                              if (dinfo->di_bend < tmp->di_bend)
-+                                      dinfo->di_bend = tmp->di_bend;
++                              if (dinfo->di_btop > tmp->di_btop)
++                                      dinfo->di_btop = tmp->di_btop;
++                              if (dinfo->di_bbot < tmp->di_bbot)
++                                      dinfo->di_bbot = tmp->di_bbot;
 +                              dinfo->di_bwh = tmp->di_bwh;
 +                              dinfo->di_bdiropq = tmp->di_bdiropq;
-+                              hd = tmp->di_hdentry;
-+                              bend = dinfo->di_bend;
-+                              for (bindex = tmp->di_bstart; bindex <= bend;
-+                                   bindex++) {
++                              bbot = dinfo->di_bbot;
++                              bindex = tmp->di_btop;
++                              hd = au_hdentry(tmp, bindex);
++                              for (; bindex <= bbot; bindex++, hd++) {
 +                                      if (au_h_dptr(dentry, bindex))
 +                                              continue;
-+                                      h_dentry = hd[bindex].hd_dentry;
++                                      h_dentry = hd->hd_dentry;
 +                                      if (!h_dentry)
 +                                              continue;
 +                                      AuDebugOn(d_is_negative(h_dentry));
@@ -8120,7 +8430,8 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +                                      au_set_h_dptr(dentry, bindex,
 +                                                    dget(h_dentry));
 +                              }
-+                              err = au_refresh_hinode(inode, dentry);
++                              if (inode)
++                                      err = au_refresh_hinode(inode, dentry);
 +                              au_dbg_verify_dinode(dentry);
 +                      }
 +              } else {
@@ -8161,7 +8472,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +
 +int au_refresh_dentry(struct dentry *dentry, struct dentry *parent)
 +{
-+      int err, ebrange;
++      int err, ebrange, nbr;
 +      unsigned int sigen;
 +      struct au_dinfo *dinfo, *tmp;
 +      struct super_block *sb;
@@ -8177,8 +8488,9 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      if (unlikely(err))
 +              goto out;
 +
++      nbr = au_sbbot(sb) + 1;
 +      dinfo = au_di(dentry);
-+      err = au_di_realloc(dinfo, au_sbend(sb) + 1);
++      err = au_di_realloc(dinfo, nbr, /*may_shrink*/0);
 +      if (unlikely(err))
 +              goto out;
 +      ebrange = au_dbrange_test(dentry);
@@ -8186,7 +8498,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              ebrange = au_do_refresh_hdentry(dentry, parent);
 +
 +      if (d_unhashed(dentry) || ebrange /* || dinfo->di_tmpfile */) {
-+              AuDebugOn(au_dbstart(dentry) < 0 && au_dbend(dentry) >= 0);
++              AuDebugOn(au_dbtop(dentry) < 0 && au_dbbot(dentry) >= 0);
 +              if (d_really_is_positive(dentry)) {
 +                      inode = d_inode(dentry);
 +                      err = au_refresh_hinode_self(inode);
@@ -8209,7 +8521,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);
++      err = au_lkup_dentry(dentry, /*btop*/0, AuLkup_ALLOW_NEG);
 +      AuDbgDentry(dentry);
 +      au_di_swap(tmp, dinfo);
 +      if (err == -ENOENT)
@@ -8221,6 +8533,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +              au_dbg_verify_dinode(dentry);
 +              AuTraceErr(err);
 +      }
++      au_di_realloc(dinfo, nbr, /*may_shrink*/1); /* harmless if err */
 +      au_rw_write_unlock(&tmp->di_rwsem);
 +      au_di_free(tmp);
 +      if (unlikely(err))
@@ -8272,7 +8585,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +{
 +      int err;
 +      umode_t mode, h_mode;
-+      aufs_bindex_t bindex, btail, bstart, ibs, ibe;
++      aufs_bindex_t bindex, btail, btop, ibs, ibe;
 +      unsigned char plus, unhashed, is_root, h_plus, h_nfs, tmpfile;
 +      struct inode *h_inode, *h_cached_inode;
 +      struct dentry *h_dentry;
@@ -8298,15 +8611,15 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      if (do_udba && inode) {
 +              mode = (inode->i_mode & S_IFMT);
 +              plus = (inode->i_nlink > 0);
-+              ibs = au_ibstart(inode);
-+              ibe = au_ibend(inode);
++              ibs = au_ibtop(inode);
++              ibe = au_ibbot(inode);
 +      }
 +
-+      bstart = au_dbstart(dentry);
-+      btail = bstart;
++      btop = au_dbtop(dentry);
++      btail = btop;
 +      if (inode && S_ISDIR(inode->i_mode))
 +              btail = au_dbtaildir(dentry);
-+      for (bindex = bstart; bindex <= btail; bindex++) {
++      for (bindex = btop; bindex <= btail; bindex++) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (!h_dentry)
 +                      continue;
@@ -8488,7 +8801,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      inode = NULL;
 +      if (d_really_is_positive(dentry))
 +              inode = d_inode(dentry);
-+      if (unlikely(inode && is_bad_inode(inode))) {
++      if (unlikely(inode && au_is_bad_inode(inode))) {
 +              err = -EINVAL;
 +              AuTraceErr(err);
 +              goto out_dgrade;
@@ -8521,11 +8834,11 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +
 +      do_udba = !au_opt_test(au_mntflags(sb), UDBA_NONE);
 +      if (do_udba && inode) {
-+              aufs_bindex_t bstart = au_ibstart(inode);
++              aufs_bindex_t btop = au_ibtop(inode);
 +              struct inode *h_inode;
 +
-+              if (bstart >= 0) {
-+                      h_inode = au_h_iptr(inode, bstart);
++              if (btop >= 0) {
++                      h_inode = au_h_iptr(inode, btop);
 +                      if (h_inode && au_test_higen(inode, h_inode)) {
 +                              AuTraceErr(err);
 +                              goto out_inval;
@@ -8534,7 +8847,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +      }
 +
 +      err = h_d_revalidate(dentry, inode, flags, do_udba);
-+      if (unlikely(!err && do_udba && au_dbstart(dentry) < 0)) {
++      if (unlikely(!err && do_udba && au_dbtop(dentry) < 0)) {
 +              err = -EIO;
 +              AuDbg("both of real entry and whiteout found, %p, err %d\n",
 +                    dentry, err);
@@ -8575,10 +8888,10 @@ diff -urN /usr/share/empty/fs/aufs/dentry.c linux/fs/aufs/dentry.c
 +};
 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     2015-11-11 17:21:46.918863802 +0100
-@@ -0,0 +1,234 @@
++++ linux/fs/aufs/dentry.h     2017-07-29 12:14:25.899708630 +0200
+@@ -0,0 +1,252 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -8615,13 +8928,24 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +      atomic_t                di_generation;
 +
 +      struct au_rwsem         di_rwsem;
-+      aufs_bindex_t           di_bstart, di_bend, di_bwh, di_bdiropq;
++      aufs_bindex_t           di_btop, di_bbot, di_bwh, di_bdiropq;
 +      unsigned char           di_tmpfile; /* to allow the different name */
 +      struct au_hdentry       *di_hdentry;
 +} ____cacheline_aligned_in_smp;
 +
 +/* ---------------------------------------------------------------------- */
 +
++/* flags for au_lkup_dentry() */
++#define AuLkup_ALLOW_NEG      1
++#define AuLkup_IGNORE_PERM    (1 << 1)
++#define au_ftest_lkup(flags, name)    ((flags) & AuLkup_##name)
++#define au_fset_lkup(flags, name) \
++      do { (flags) |= AuLkup_##name; } while (0)
++#define au_fclr_lkup(flags, name) \
++      do { (flags) &= ~AuLkup_##name; } while (0)
++
++/* ---------------------------------------------------------------------- */
++
 +/* dentry.c */
 +extern const struct dentry_operations aufs_dop, aufs_dop_noreval;
 +struct au_branch;
@@ -8629,7 +8953,8 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +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);
++int au_lkup_dentry(struct dentry *dentry, aufs_bindex_t btop,
++                 unsigned int flags);
 +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);
@@ -8643,7 +8968,7 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +void au_di_cp(struct au_dinfo *dst, struct au_dinfo *src);
 +int au_di_init(struct dentry *dentry);
 +void au_di_fin(struct dentry *dentry);
-+int au_di_realloc(struct au_dinfo *dinfo, int nbr);
++int au_di_realloc(struct au_dinfo *dinfo, int nbr, int may_shrink);
 +
 +void di_read_lock(struct dentry *d, int flags, unsigned int lsc);
 +void di_read_unlock(struct dentry *d, int flags);
@@ -8665,8 +8990,8 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +int au_dbrange_test(struct dentry *dentry);
 +void au_update_digen(struct dentry *dentry);
 +void au_update_dbrange(struct dentry *dentry, int do_put_zero);
-+void au_update_dbstart(struct dentry *dentry);
-+void au_update_dbend(struct dentry *dentry);
++void au_update_dbtop(struct dentry *dentry);
++void au_update_dbbot(struct dentry *dentry);
 +int au_find_dbindex(struct dentry *dentry, struct dentry *h_dentry);
 +
 +/* ---------------------------------------------------------------------- */
@@ -8737,22 +9062,28 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +      hdentry->hd_dentry = NULL;
 +}
 +
++static inline struct au_hdentry *au_hdentry(struct au_dinfo *di,
++                                          aufs_bindex_t bindex)
++{
++      return di->di_hdentry + bindex;
++}
++
 +static inline void au_hdput(struct au_hdentry *hd)
 +{
 +      if (hd)
 +              dput(hd->hd_dentry);
 +}
 +
-+static inline aufs_bindex_t au_dbstart(struct dentry *dentry)
++static inline aufs_bindex_t au_dbtop(struct dentry *dentry)
 +{
 +      DiMustAnyLock(dentry);
-+      return au_di(dentry)->di_bstart;
++      return au_di(dentry)->di_btop;
 +}
 +
-+static inline aufs_bindex_t au_dbend(struct dentry *dentry)
++static inline aufs_bindex_t au_dbbot(struct dentry *dentry)
 +{
 +      DiMustAnyLock(dentry);
-+      return au_di(dentry)->di_bend;
++      return au_di(dentry)->di_bbot;
 +}
 +
 +static inline aufs_bindex_t au_dbwh(struct dentry *dentry)
@@ -8768,22 +9099,22 @@ diff -urN /usr/share/empty/fs/aufs/dentry.h linux/fs/aufs/dentry.h
 +}
 +
 +/* todo: hard/soft set? */
-+static inline void au_set_dbstart(struct dentry *dentry, aufs_bindex_t bindex)
++static inline void au_set_dbtop(struct dentry *dentry, aufs_bindex_t bindex)
 +{
 +      DiMustWriteLock(dentry);
-+      au_di(dentry)->di_bstart = bindex;
++      au_di(dentry)->di_btop = bindex;
 +}
 +
-+static inline void au_set_dbend(struct dentry *dentry, aufs_bindex_t bindex)
++static inline void au_set_dbbot(struct dentry *dentry, aufs_bindex_t bindex)
 +{
 +      DiMustWriteLock(dentry);
-+      au_di(dentry)->di_bend = bindex;
++      au_di(dentry)->di_bbot = bindex;
 +}
 +
 +static inline void au_set_dbwh(struct dentry *dentry, aufs_bindex_t bindex)
 +{
 +      DiMustWriteLock(dentry);
-+      /* dbwh can be outside of bstart - bend range */
++      /* dbwh can be outside of btop - bbot range */
 +      au_di(dentry)->di_bwh = bindex;
 +}
 +
@@ -8813,10 +9144,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      2015-09-24 10:47:58.251386326 +0200
-@@ -0,0 +1,550 @@
++++ linux/fs/aufs/dinfo.c      2017-07-29 12:14:25.899708630 +0200
+@@ -0,0 +1,553 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -8841,10 +9172,8 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +void au_di_init_once(void *_dinfo)
 +{
 +      struct au_dinfo *dinfo = _dinfo;
-+      static struct lock_class_key aufs_di;
 +
 +      au_rw_init(&dinfo->di_rwsem);
-+      au_rw_class(&dinfo->di_rwsem, &aufs_di);
 +}
 +
 +struct au_dinfo *au_di_alloc(struct super_block *sb, unsigned int lsc)
@@ -8856,14 +9185,14 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      if (unlikely(!dinfo))
 +              goto out;
 +
-+      nbr = au_sbend(sb) + 1;
++      nbr = au_sbbot(sb) + 1;
 +      if (nbr <= 0)
 +              nbr = 1;
 +      dinfo->di_hdentry = kcalloc(nbr, sizeof(*dinfo->di_hdentry), GFP_NOFS);
 +      if (dinfo->di_hdentry) {
 +              au_rw_write_lock_nested(&dinfo->di_rwsem, lsc);
-+              dinfo->di_bstart = -1;
-+              dinfo->di_bend = -1;
++              dinfo->di_btop = -1;
++              dinfo->di_bbot = -1;
 +              dinfo->di_bwh = -1;
 +              dinfo->di_bdiropq = -1;
 +              dinfo->di_tmpfile = 0;
@@ -8882,14 +9211,14 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +void au_di_free(struct au_dinfo *dinfo)
 +{
 +      struct au_hdentry *p;
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +
 +      /* dentry may not be revalidated */
-+      bindex = dinfo->di_bstart;
++      bindex = dinfo->di_btop;
 +      if (bindex >= 0) {
-+              bend = dinfo->di_bend;
-+              p = dinfo->di_hdentry + bindex;
-+              while (bindex++ <= bend)
++              bbot = dinfo->di_bbot;
++              p = au_hdentry(dinfo, bindex);
++              while (bindex++ <= bbot)
 +                      au_hdput(p++);
 +      }
 +      kfree(dinfo->di_hdentry);
@@ -8912,8 +9241,8 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      } while (0)
 +
 +      DiSwap(p, hdentry);
-+      DiSwap(bi, bstart);
-+      DiSwap(bi, bend);
++      DiSwap(bi, btop);
++      DiSwap(bi, bbot);
 +      DiSwap(bi, bwh);
 +      DiSwap(bi, bdiropq);
 +      /* smp_mb(); */
@@ -8926,8 +9255,8 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      AuRwMustWriteLock(&dst->di_rwsem);
 +      AuRwMustWriteLock(&src->di_rwsem);
 +
-+      dst->di_bstart = src->di_bstart;
-+      dst->di_bend = src->di_bend;
++      dst->di_btop = src->di_btop;
++      dst->di_bbot = src->di_bbot;
 +      dst->di_bwh = src->di_bwh;
 +      dst->di_bdiropq = src->di_bdiropq;
 +      /* smp_mb(); */
@@ -8961,7 +9290,7 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      au_di_free(dinfo);
 +}
 +
-+int au_di_realloc(struct au_dinfo *dinfo, int nbr)
++int au_di_realloc(struct au_dinfo *dinfo, int nbr, int may_shrink)
 +{
 +      int err, sz;
 +      struct au_hdentry *hdp;
@@ -8969,10 +9298,11 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      AuRwMustWriteLock(&dinfo->di_rwsem);
 +
 +      err = -ENOMEM;
-+      sz = sizeof(*hdp) * (dinfo->di_bend + 1);
++      sz = sizeof(*hdp) * (dinfo->di_bbot + 1);
 +      if (!sz)
 +              sz = sizeof(*hdp);
-+      hdp = au_kzrealloc(dinfo->di_hdentry, sz, sizeof(*hdp) * nbr, GFP_NOFS);
++      hdp = au_kzrealloc(dinfo->di_hdentry, sz, sizeof(*hdp) * nbr, GFP_NOFS,
++                         may_shrink);
 +      if (hdp) {
 +              dinfo->di_hdentry = hdp;
 +              err = 0;
@@ -9094,11 +9424,11 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +                || d_inode(d1) == d_inode(d2)
 +                || d1->d_sb != d2->d_sb);
 +
-+      if (isdir && au_test_subdir(d1, d2)) {
++      if ((isdir && au_test_subdir(d1, d2))
++          || d1 < d2) {
 +              di_write_lock_child(d1);
 +              di_write_lock_child2(d2);
 +      } else {
-+              /* there should be no races */
 +              di_write_lock_child(d2);
 +              di_write_lock_child2(d1);
 +      }
@@ -9110,11 +9440,11 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +                || d_inode(d1) == d_inode(d2)
 +                || d1->d_sb != d2->d_sb);
 +
-+      if (isdir && au_test_subdir(d1, d2)) {
++      if ((isdir && au_test_subdir(d1, d2))
++          || d1 < d2) {
 +              di_write_lock_parent(d1);
 +              di_write_lock_parent2(d2);
 +      } else {
-+              /* there should be no races */
 +              di_write_lock_parent(d2);
 +              di_write_lock_parent2(d1);
 +      }
@@ -9137,10 +9467,10 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +
 +      DiMustAnyLock(dentry);
 +
-+      if (au_dbstart(dentry) < 0 || bindex < au_dbstart(dentry))
++      if (au_dbtop(dentry) < 0 || bindex < au_dbtop(dentry))
 +              return NULL;
 +      AuDebugOn(bindex < 0);
-+      d = au_di(dentry)->di_hdentry[0 + bindex].hd_dentry;
++      d = au_hdentry(au_di(dentry), bindex)->hd_dentry;
 +      AuDebugOn(d && au_dcount(d) <= 0);
 +      return d;
 +}
@@ -9158,8 +9488,8 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      AuDebugOn(d_really_is_negative(dentry));
 +
 +      h_dentry = NULL;
-+      if (au_dbstart(dentry) <= bindex
-+          && bindex <= au_dbend(dentry))
++      if (au_dbtop(dentry) <= bindex
++          && bindex <= au_dbbot(dentry))
 +              h_dentry = au_h_dptr(dentry, bindex);
 +      if (h_dentry && !au_d_linkable(h_dentry)) {
 +              dget(h_dentry);
@@ -9167,8 +9497,8 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      }
 +
 +      inode = d_inode(dentry);
-+      AuDebugOn(bindex < au_ibstart(inode));
-+      AuDebugOn(au_ibend(inode) < bindex);
++      AuDebugOn(bindex < au_ibtop(inode));
++      AuDebugOn(au_ibbot(inode) < bindex);
 +      h_inode = au_h_iptr(inode, bindex);
 +      h_dentry = d_find_alias(h_inode);
 +      if (h_dentry) {
@@ -9198,30 +9528,30 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +
 +aufs_bindex_t au_dbtail(struct dentry *dentry)
 +{
-+      aufs_bindex_t bend, bwh;
++      aufs_bindex_t bbot, bwh;
 +
-+      bend = au_dbend(dentry);
-+      if (0 <= bend) {
++      bbot = au_dbbot(dentry);
++      if (0 <= bbot) {
 +              bwh = au_dbwh(dentry);
 +              if (!bwh)
 +                      return bwh;
-+              if (0 < bwh && bwh < bend)
++              if (0 < bwh && bwh < bbot)
 +                      return bwh - 1;
 +      }
-+      return bend;
++      return bbot;
 +}
 +
 +aufs_bindex_t au_dbtaildir(struct dentry *dentry)
 +{
-+      aufs_bindex_t bend, bopq;
++      aufs_bindex_t bbot, bopq;
 +
-+      bend = au_dbtail(dentry);
-+      if (0 <= bend) {
++      bbot = au_dbtail(dentry);
++      if (0 <= bbot) {
 +              bopq = au_dbdiropq(dentry);
-+              if (0 <= bopq && bopq < bend)
-+                      bend = bopq;
++              if (0 <= bopq && bopq < bbot)
++                      bbot = bopq;
 +      }
-+      return bend;
++      return bbot;
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -9229,11 +9559,14 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +void au_set_h_dptr(struct dentry *dentry, aufs_bindex_t bindex,
 +                 struct dentry *h_dentry)
 +{
-+      struct au_hdentry *hd = au_di(dentry)->di_hdentry + bindex;
++      struct au_dinfo *dinfo;
++      struct au_hdentry *hd;
 +      struct au_branch *br;
 +
 +      DiMustWriteLock(dentry);
 +
++      dinfo = au_di(dentry);
++      hd = au_hdentry(dinfo, bindex);
 +      au_hdput(hd);
 +      hd->hd_dentry = h_dentry;
 +      if (h_dentry) {
@@ -9245,16 +9578,16 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +int au_dbrange_test(struct dentry *dentry)
 +{
 +      int err;
-+      aufs_bindex_t bstart, bend;
++      aufs_bindex_t btop, bbot;
 +
 +      err = 0;
-+      bstart = au_dbstart(dentry);
-+      bend = au_dbend(dentry);
-+      if (bstart >= 0)
-+              AuDebugOn(bend < 0 && bstart > bend);
++      btop = au_dbtop(dentry);
++      bbot = au_dbbot(dentry);
++      if (btop >= 0)
++              AuDebugOn(bbot < 0 && btop > bbot);
 +      else {
 +              err = -EIO;
-+              AuDebugOn(bend >= 0);
++              AuDebugOn(bbot >= 0);
 +      }
 +
 +      return err;
@@ -9283,72 +9616,73 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +      struct au_dinfo *dinfo;
 +      struct dentry *h_d;
 +      struct au_hdentry *hdp;
++      aufs_bindex_t bindex, bbot;
 +
 +      DiMustWriteLock(dentry);
 +
 +      dinfo = au_di(dentry);
-+      if (!dinfo || dinfo->di_bstart < 0)
++      if (!dinfo || dinfo->di_btop < 0)
 +              return;
 +
-+      hdp = dinfo->di_hdentry;
 +      if (do_put_zero) {
-+              aufs_bindex_t bindex, bend;
-+
-+              bend = dinfo->di_bend;
-+              for (bindex = dinfo->di_bstart; bindex <= bend; bindex++) {
-+                      h_d = hdp[0 + bindex].hd_dentry;
++              bbot = dinfo->di_bbot;
++              bindex = dinfo->di_btop;
++              hdp = au_hdentry(dinfo, bindex);
++              for (; bindex <= bbot; bindex++, hdp++) {
++                      h_d = hdp->hd_dentry;
 +                      if (h_d && d_is_negative(h_d))
 +                              au_set_h_dptr(dentry, bindex, NULL);
 +              }
 +      }
 +
-+      dinfo->di_bstart = -1;
-+      while (++dinfo->di_bstart <= dinfo->di_bend)
-+              if (hdp[0 + dinfo->di_bstart].hd_dentry)
++      dinfo->di_btop = 0;
++      hdp = au_hdentry(dinfo, dinfo->di_btop);
++      for (; dinfo->di_btop <= dinfo->di_bbot; dinfo->di_btop++, hdp++)
++              if (hdp->hd_dentry)
 +                      break;
-+      if (dinfo->di_bstart > dinfo->di_bend) {
-+              dinfo->di_bstart = -1;
-+              dinfo->di_bend = -1;
++      if (dinfo->di_btop > dinfo->di_bbot) {
++              dinfo->di_btop = -1;
++              dinfo->di_bbot = -1;
 +              return;
 +      }
 +
-+      dinfo->di_bend++;
-+      while (0 <= --dinfo->di_bend)
-+              if (hdp[0 + dinfo->di_bend].hd_dentry)
++      hdp = au_hdentry(dinfo, dinfo->di_bbot);
++      for (; dinfo->di_bbot >= 0; dinfo->di_bbot--, hdp--)
++              if (hdp->hd_dentry)
 +                      break;
-+      AuDebugOn(dinfo->di_bstart > dinfo->di_bend || dinfo->di_bend < 0);
++      AuDebugOn(dinfo->di_btop > dinfo->di_bbot || dinfo->di_bbot < 0);
 +}
 +
-+void au_update_dbstart(struct dentry *dentry)
++void au_update_dbtop(struct dentry *dentry)
 +{
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct dentry *h_dentry;
 +
-+      bend = au_dbend(dentry);
-+      for (bindex = au_dbstart(dentry); bindex <= bend; bindex++) {
++      bbot = au_dbbot(dentry);
++      for (bindex = au_dbtop(dentry); bindex <= bbot; bindex++) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (!h_dentry)
 +                      continue;
 +              if (d_is_positive(h_dentry)) {
-+                      au_set_dbstart(dentry, bindex);
++                      au_set_dbtop(dentry, bindex);
 +                      return;
 +              }
 +              au_set_h_dptr(dentry, bindex, NULL);
 +      }
 +}
 +
-+void au_update_dbend(struct dentry *dentry)
++void au_update_dbbot(struct dentry *dentry)
 +{
-+      aufs_bindex_t bindex, bstart;
++      aufs_bindex_t bindex, btop;
 +      struct dentry *h_dentry;
 +
-+      bstart = au_dbstart(dentry);
-+      for (bindex = au_dbend(dentry); bindex >= bstart; bindex--) {
++      btop = au_dbtop(dentry);
++      for (bindex = au_dbbot(dentry); bindex >= btop; bindex--) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (!h_dentry)
 +                      continue;
 +              if (d_is_positive(h_dentry)) {
-+                      au_set_dbend(dentry, bindex);
++                      au_set_dbbot(dentry, bindex);
 +                      return;
 +              }
 +              au_set_h_dptr(dentry, bindex, NULL);
@@ -9357,20 +9691,20 @@ diff -urN /usr/share/empty/fs/aufs/dinfo.c linux/fs/aufs/dinfo.c
 +
 +int au_find_dbindex(struct dentry *dentry, struct dentry *h_dentry)
 +{
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +
-+      bend = au_dbend(dentry);
-+      for (bindex = au_dbstart(dentry); bindex <= bend; bindex++)
++      bbot = au_dbbot(dentry);
++      for (bindex = au_dbtop(dentry); bindex <= bbot; bindex++)
 +              if (au_h_dptr(dentry, bindex) == h_dentry)
 +                      return bindex;
 +      return -1;
 +}
 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        2015-12-10 17:59:16.836166410 +0100
-@@ -0,0 +1,753 @@
++++ linux/fs/aufs/dir.c        2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,759 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -9426,7 +9760,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +loff_t au_dir_size(struct file *file, struct dentry *dentry)
 +{
 +      loff_t sz;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct file *h_file;
 +      struct dentry *h_dentry;
 +
@@ -9434,9 +9768,9 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      if (file) {
 +              AuDebugOn(!d_is_dir(file->f_path.dentry));
 +
-+              bend = au_fbend_dir(file);
-+              for (bindex = au_fbstart(file);
-+                   bindex <= bend && sz < KMALLOC_MAX_SIZE;
++              bbot = au_fbbot_dir(file);
++              for (bindex = au_fbtop(file);
++                   bindex <= bbot && sz < KMALLOC_MAX_SIZE;
 +                   bindex++) {
 +                      h_file = au_hf_dir(file, bindex);
 +                      if (h_file && file_inode(h_file))
@@ -9446,9 +9780,9 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +              AuDebugOn(!dentry);
 +              AuDebugOn(!d_is_dir(dentry));
 +
-+              bend = au_dbtaildir(dentry);
-+              for (bindex = au_dbstart(dentry);
-+                   bindex <= bend && sz < KMALLOC_MAX_SIZE;
++              bbot = au_dbtaildir(dentry);
++              for (bindex = au_dbtop(dentry);
++                   bindex <= bbot && sz < KMALLOC_MAX_SIZE;
 +                   bindex++) {
 +                      h_dentry = au_h_dptr(dentry, bindex);
 +                      if (h_dentry && d_is_positive(h_dentry))
@@ -9481,7 +9815,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      struct au_branch *br;
 +      struct au_hinode *hdir;
 +      int err;
-+      aufs_bindex_t bstart, bindex;
++      aufs_bindex_t btop, bindex;
 +
 +      sb = a->dentry->d_sb;
 +      if (d_really_is_negative(a->dentry))
@@ -9490,9 +9824,9 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      aufs_read_lock(a->dentry, AuLock_DW); /* noflush */
 +
 +      dir = d_inode(a->dentry);
-+      bstart = au_ibstart(dir);
++      btop = au_ibtop(dir);
 +      bindex = au_br_index(sb, a->brid);
-+      if (bindex < bstart)
++      if (bindex < btop)
 +              goto out_unlock;
 +
 +      br = au_sbr(sb, bindex);
@@ -9502,23 +9836,23 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      h_path.mnt = au_br_mnt(br);
 +      au_dtime_store(&dt, a->dentry, &h_path);
 +
-+      br = au_sbr(sb, bstart);
++      br = au_sbr(sb, btop);
 +      if (!au_br_writable(br->br_perm))
 +              goto out_unlock;
-+      h_path.dentry = au_h_dptr(a->dentry, bstart);
++      h_path.dentry = au_h_dptr(a->dentry, btop);
 +      h_path.mnt = au_br_mnt(br);
 +      err = vfsub_mnt_want_write(h_path.mnt);
 +      if (err)
 +              goto out_unlock;
-+      hdir = au_hi(dir, bstart);
-+      au_hn_imtx_lock_nested(hdir, AuLsc_I_PARENT);
-+      h_dir = au_h_iptr(dir, bstart);
++      hdir = au_hi(dir, btop);
++      au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT);
++      h_dir = au_h_iptr(dir, btop);
 +      if (h_dir->i_nlink
 +          && timespec_compare(&h_dir->i_mtime, &dt.dt_mtime) < 0) {
 +              dt.dt_h_path = h_path;
 +              au_dtime_revert(&dt);
 +      }
-+      au_hn_imtx_unlock(hdir);
++      au_hn_inode_unlock(hdir);
 +      vfsub_mnt_drop_write(h_path.mnt);
 +      au_cpup_attr_timesizes(dir);
 +
@@ -9533,7 +9867,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +void au_dir_ts(struct inode *dir, aufs_bindex_t bindex)
 +{
 +      int perm, wkq_err;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      struct au_dir_ts_arg *arg;
 +      struct dentry *dentry;
 +      struct super_block *sb;
@@ -9543,13 +9877,13 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      dentry = d_find_any_alias(dir);
 +      AuDebugOn(!dentry);
 +      sb = dentry->d_sb;
-+      bstart = au_ibstart(dir);
-+      if (bstart == bindex) {
++      btop = au_ibtop(dir);
++      if (btop == bindex) {
 +              au_cpup_attr_timesizes(dir);
 +              goto out;
 +      }
 +
-+      perm = au_sbr_perm(sb, bstart);
++      perm = au_sbr_perm(sb, btop);
 +      if (!au_br_writable(perm))
 +              goto out;
 +
@@ -9576,24 +9910,24 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +{
 +      int err;
 +      unsigned int flags;
-+      aufs_bindex_t bindex, btail, bstart;
++      aufs_bindex_t bindex, btail, btop;
 +      struct dentry *dentry, *h_dentry;
 +      struct file *h_file;
 +
 +      /* open all lower dirs */
 +      dentry = file->f_path.dentry;
-+      bstart = au_dbstart(dentry);
-+      for (bindex = au_fbstart(file); bindex < bstart; bindex++)
++      btop = au_dbtop(dentry);
++      for (bindex = au_fbtop(file); bindex < btop; bindex++)
 +              au_set_h_fptr(file, bindex, NULL);
-+      au_set_fbstart(file, bstart);
++      au_set_fbtop(file, btop);
 +
 +      btail = au_dbtaildir(dentry);
-+      for (bindex = au_fbend_dir(file); btail < bindex; bindex--)
++      for (bindex = au_fbbot_dir(file); btail < bindex; bindex--)
 +              au_set_h_fptr(file, bindex, NULL);
-+      au_set_fbend_dir(file, btail);
++      au_set_fbbot_dir(file, btail);
 +
 +      flags = vfsub_file_flags(file);
-+      for (bindex = bstart; bindex <= btail; bindex++) {
++      for (bindex = btop; bindex <= btail; bindex++) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (!h_dentry)
 +                      continue;
@@ -9621,22 +9955,27 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      int err;
 +      aufs_bindex_t bindex, btail;
 +      struct dentry *dentry, *h_dentry;
++      struct vfsmount *mnt;
 +
 +      FiMustWriteLock(file);
 +      AuDebugOn(h_file);
 +
 +      err = 0;
++      mnt = file->f_path.mnt;
 +      dentry = file->f_path.dentry;
 +      file->f_version = d_inode(dentry)->i_version;
-+      bindex = au_dbstart(dentry);
-+      au_set_fbstart(file, bindex);
++      bindex = au_dbtop(dentry);
++      au_set_fbtop(file, bindex);
 +      btail = au_dbtaildir(dentry);
-+      au_set_fbend_dir(file, btail);
++      au_set_fbbot_dir(file, btail);
 +      for (; !err && bindex <= btail; bindex++) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (!h_dentry)
 +                      continue;
 +
++              err = vfsub_test_mntns(mnt, h_dentry->d_sb);
++              if (unlikely(err))
++                      break;
 +              h_file = au_h_open(dentry, bindex, flags, file, /*force_wr*/0);
 +              if (IS_ERR(h_file)) {
 +                      err = PTR_ERR(h_file);
@@ -9651,10 +9990,10 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +              return 0; /* success */
 +
 +      /* close all */
-+      for (bindex = au_fbstart(file); bindex <= btail; bindex++)
++      for (bindex = au_fbtop(file); bindex <= btail; bindex++)
 +              au_set_h_fptr(file, bindex, NULL);
-+      au_set_fbstart(file, -1);
-+      au_set_fbend_dir(file, -1);
++      au_set_fbtop(file, -1);
++      au_set_fbbot_dir(file, -1);
 +
 +      return err;
 +}
@@ -9689,7 +10028,8 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      struct au_vdir *vdir_cache;
 +      struct au_finfo *finfo;
 +      struct au_fidir *fidir;
-+      aufs_bindex_t bindex, bend;
++      struct au_hfile *hf;
++      aufs_bindex_t bindex, bbot;
 +
 +      finfo = au_fi(file);
 +      fidir = finfo->fi_hdir;
@@ -9702,13 +10042,15 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +
 +              bindex = finfo->fi_btop;
 +              if (bindex >= 0) {
++                      hf = fidir->fd_hfile + bindex;
 +                      /*
 +                       * calls fput() instead of filp_close(),
 +                       * since no dnotify or lock for the lower file.
 +                       */
-+                      bend = fidir->fd_bbot;
-+                      for (; bindex <= bend; bindex++)
-+                              au_set_h_fptr(file, bindex, NULL);
++                      bbot = fidir->fd_bbot;
++                      for (; bindex <= bbot; bindex++, hf++)
++                              if (hf->hf_file)
++                                      au_hfput(hf, /*execed*/0);
 +              }
 +              kfree(fidir);
 +              finfo->fi_hdir = NULL;
@@ -9722,12 +10064,12 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +static int au_do_flush_dir(struct file *file, fl_owner_t id)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct file *h_file;
 +
 +      err = 0;
-+      bend = au_fbend_dir(file);
-+      for (bindex = au_fbstart(file); !err && bindex <= bend; bindex++) {
++      bbot = au_fbbot_dir(file);
++      for (bindex = au_fbtop(file); !err && bindex <= bbot; bindex++) {
 +              h_file = au_hf_dir(file, bindex);
 +              if (h_file)
 +                      err = vfsub_flush(h_file, id);
@@ -9745,7 +10087,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +static int au_do_fsync_dir_no_file(struct dentry *dentry, int datasync)
 +{
 +      int err;
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +      struct inode *inode;
 +      struct super_block *sb;
 +
@@ -9753,8 +10095,8 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      sb = dentry->d_sb;
 +      inode = d_inode(dentry);
 +      IMustLock(inode);
-+      bend = au_dbend(dentry);
-+      for (bindex = au_dbstart(dentry); !err && bindex <= bend; bindex++) {
++      bbot = au_dbbot(dentry);
++      for (bindex = au_dbtop(dentry); !err && bindex <= bbot; bindex++) {
 +              struct path h_path;
 +
 +              if (au_test_ro(sb, bindex, inode))
@@ -9773,19 +10115,19 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +static int au_do_fsync_dir(struct file *file, int datasync)
 +{
 +      int err;
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +      struct file *h_file;
 +      struct super_block *sb;
 +      struct inode *inode;
 +
-+      err = au_reval_and_lock_fdi(file, reopen_dir, /*wlock*/1);
++      err = au_reval_and_lock_fdi(file, reopen_dir, /*wlock*/1, /*fi_lsc*/0);
 +      if (unlikely(err))
 +              goto out;
 +
 +      inode = file_inode(file);
 +      sb = inode->i_sb;
-+      bend = au_fbend_dir(file);
-+      for (bindex = au_fbstart(file); !err && bindex <= bend; bindex++) {
++      bbot = au_fbbot_dir(file);
++      for (bindex = au_fbtop(file); !err && bindex <= bbot; bindex++) {
 +              h_file = au_hf_dir(file, bindex);
 +              if (!h_file || au_test_ro(sb, bindex, inode))
 +                      continue;
@@ -9807,13 +10149,11 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      struct dentry *dentry;
 +      struct inode *inode;
 +      struct super_block *sb;
-+      struct mutex *mtx;
 +
 +      err = 0;
 +      dentry = file->f_path.dentry;
 +      inode = d_inode(dentry);
-+      mtx = &inode->i_mutex;
-+      mutex_lock(mtx);
++      inode_lock(inode);
 +      sb = dentry->d_sb;
 +      si_noflush_read_lock(sb);
 +      if (file)
@@ -9828,13 +10168,13 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +              fi_write_unlock(file);
 +
 +      si_read_unlock(sb);
-+      mutex_unlock(mtx);
++      inode_unlock(inode);
 +      return err;
 +}
 +
 +/* ---------------------------------------------------------------------- */
 +
-+static int aufs_iterate(struct file *file, struct dir_context *ctx)
++static int aufs_iterate_shared(struct file *file, struct dir_context *ctx)
 +{
 +      int err;
 +      struct dentry *dentry;
@@ -9849,7 +10189,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +
 +      sb = dentry->d_sb;
 +      si_read_lock(sb, AuLock_FLUSH);
-+      err = au_reval_and_lock_fdi(file, reopen_dir, /*wlock*/1);
++      err = au_reval_and_lock_fdi(file, reopen_dir, /*wlock*/1, /*fi_lsc*/0);
 +      if (unlikely(err))
 +              goto out;
 +      err = au_alive_dir(dentry);
@@ -9859,7 +10199,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      if (unlikely(err))
 +              goto out_unlock;
 +
-+      h_inode = au_h_iptr(inode, au_ibstart(inode));
++      h_inode = au_h_iptr(inode, au_ibtop(inode));
 +      if (!au_test_nfsd()) {
 +              err = au_vdir_fill_de(file, ctx);
 +              fsstack_copy_attr_atime(inode, h_inode);
@@ -10002,9 +10342,9 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      h_dentry = au_h_dptr(dentry, arg->bindex);
 +      h_inode = d_inode(h_dentry);
 +      /* todo: i_mode changes anytime? */
-+      mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
++      vfsub_inode_lock_shared_nested(h_inode, AuLsc_I_CHILD);
 +      err = au_test_h_perm_sio(h_inode, MAY_EXEC | MAY_READ);
-+      mutex_unlock(&h_inode->i_mutex);
++      inode_unlock_shared(h_inode);
 +      if (!err)
 +              err = do_test_empty(dentry, arg);
 +      else {
@@ -10028,7 +10368,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +{
 +      int err;
 +      unsigned int rdhash;
-+      aufs_bindex_t bindex, bstart, btail;
++      aufs_bindex_t bindex, btop, btail;
 +      struct au_nhash whlist;
 +      struct test_empty_arg arg = {
 +              .ctx = {
@@ -10048,20 +10388,20 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +
 +      arg.flags = 0;
 +      arg.whlist = &whlist;
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      if (au_opt_test(au_mntflags(dentry->d_sb), SHWH))
 +              au_fset_testempty(arg.flags, SHWH);
 +      test_empty = do_test_empty;
 +      if (au_opt_test(au_mntflags(dentry->d_sb), DIRPERM1))
 +              test_empty = sio_test_empty;
-+      arg.bindex = bstart;
++      arg.bindex = btop;
 +      err = test_empty(dentry, &arg);
 +      if (unlikely(err))
 +              goto out_whlist;
 +
 +      au_fset_testempty(arg.flags, WHONLY);
 +      btail = au_dbtaildir(dentry);
-+      for (bindex = bstart + 1; !err && bindex <= btail; bindex++) {
++      for (bindex = btop + 1; !err && bindex <= btail; bindex++) {
 +              struct dentry *h_dentry;
 +
 +              h_dentry = au_h_dptr(dentry, bindex);
@@ -10093,7 +10433,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      if (au_opt_test(au_mntflags(dentry->d_sb), SHWH))
 +              au_fset_testempty(arg.flags, SHWH);
 +      btail = au_dbtaildir(dentry);
-+      for (bindex = au_dbstart(dentry); !err && bindex <= btail; bindex++) {
++      for (bindex = au_dbtop(dentry); !err && bindex <= btail; bindex++) {
 +              struct dentry *h_dentry;
 +
 +              h_dentry = au_h_dptr(dentry, bindex);
@@ -10112,7 +10452,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.c linux/fs/aufs/dir.c
 +      .owner          = THIS_MODULE,
 +      .llseek         = default_llseek,
 +      .read           = generic_read_dir,
-+      .iterate        = aufs_iterate,
++      .iterate_shared = aufs_iterate_shared,
 +      .unlocked_ioctl = aufs_ioctl_dir,
 +#ifdef CONFIG_COMPAT
 +      .compat_ioctl   = aufs_compat_ioctl_dir,
@@ -10124,10 +10464,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        2015-09-24 10:47:58.251386326 +0200
++++ linux/fs/aufs/dir.h        2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,131 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -10208,7 +10548,7 @@ diff -urN /usr/share/empty/fs/aufs/dir.h linux/fs/aufs/dir.h
 +
 +      unsigned long   vd_version;
 +      unsigned int    vd_deblk_sz;
-+      unsigned long   vd_jiffy;
++      unsigned long           vd_jiffy;
 +} ____cacheline_aligned_in_smp;
 +
 +/* ---------------------------------------------------------------------- */
@@ -10259,10 +10599,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      2015-09-24 10:47:58.251386326 +0200
-@@ -0,0 +1,369 @@
++++ linux/fs/aufs/dynop.c      2017-07-29 12:14:25.899708630 +0200
+@@ -0,0 +1,371 @@
 +/*
-+ * Copyright (C) 2010-2015 Junjiro R. Okajima
++ * Copyright (C) 2010-2017 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
@@ -10290,17 +10630,17 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 + * How large will these lists be?
 + * Usually just a few elements, 20-30 at most for each, I guess.
 + */
-+static struct au_splhead dynop[AuDyLast];
++static struct au_sphlhead dynop[AuDyLast];
 +
-+static struct au_dykey *dy_gfind_get(struct au_splhead *spl, const void *h_op)
++static struct au_dykey *dy_gfind_get(struct au_sphlhead *sphl, const void *h_op)
 +{
 +      struct au_dykey *key, *tmp;
-+      struct list_head *head;
++      struct hlist_head *head;
 +
 +      key = NULL;
-+      head = &spl->head;
++      head = &sphl->head;
 +      rcu_read_lock();
-+      list_for_each_entry_rcu(tmp, head, dk_list)
++      hlist_for_each_entry_rcu(tmp, head, dk_hnode)
 +              if (tmp->dk_op.dy_hop == h_op) {
 +                      key = tmp;
 +                      kref_get(&key->dk_kref);
@@ -10347,24 +10687,24 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +}
 +
 +/* kref_get() if @key is already added */
-+static struct au_dykey *dy_gadd(struct au_splhead *spl, struct au_dykey *key)
++static struct au_dykey *dy_gadd(struct au_sphlhead *sphl, struct au_dykey *key)
 +{
 +      struct au_dykey *tmp, *found;
-+      struct list_head *head;
++      struct hlist_head *head;
 +      const void *h_op = key->dk_op.dy_hop;
 +
 +      found = NULL;
-+      head = &spl->head;
-+      spin_lock(&spl->spin);
-+      list_for_each_entry(tmp, head, dk_list)
++      head = &sphl->head;
++      spin_lock(&sphl->spin);
++      hlist_for_each_entry(tmp, head, dk_hnode)
 +              if (tmp->dk_op.dy_hop == h_op) {
 +                      kref_get(&tmp->dk_kref);
 +                      found = tmp;
 +                      break;
 +              }
 +      if (!found)
-+              list_add_rcu(&key->dk_list, head);
-+      spin_unlock(&spl->spin);
++              hlist_add_head_rcu(&key->dk_hnode, head);
++      spin_unlock(&sphl->spin);
 +
 +      if (!found)
 +              DyPrSym(key);
@@ -10383,11 +10723,11 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +static void dy_free(struct kref *kref)
 +{
 +      struct au_dykey *key;
-+      struct au_splhead *spl;
++      struct au_sphlhead *sphl;
 +
 +      key = container_of(kref, struct au_dykey, dk_kref);
-+      spl = dynop + key->dk_op.dy_type;
-+      au_spl_del_rcu(&key->dk_list, spl);
++      sphl = dynop + key->dk_op.dy_type;
++      au_sphl_del_rcu(&key->dk_hnode, sphl);
 +      call_rcu(&key->dk_rcu, dy_free_rcu);
 +}
 +
@@ -10452,6 +10792,8 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +      /* this one will be changed according to an aufs mount option */
 +      DySetAop(direct_IO);
 +      DySetAop(migratepage);
++      DySetAop(isolate_page);
++      DySetAop(putback_page);
 +      DySetAop(launder_page);
 +      DySetAop(is_partially_uptodate);
 +      DySetAop(is_dirty_writeback);
@@ -10472,7 +10814,7 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +static struct au_dykey *dy_get(struct au_dynop *op, struct au_branch *br)
 +{
 +      struct au_dykey *key, *old;
-+      struct au_splhead *spl;
++      struct au_sphlhead *sphl;
 +      struct op {
 +              unsigned int sz;
 +              void (*set)(struct au_dykey *key, const void *h_op,
@@ -10486,8 +10828,8 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +      };
 +      const struct op *p;
 +
-+      spl = dynop + op->dy_type;
-+      key = dy_gfind_get(spl, op->dy_hop);
++      sphl = dynop + op->dy_type;
++      key = dy_gfind_get(sphl, op->dy_hop);
 +      if (key)
 +              goto out_add; /* success */
 +
@@ -10501,7 +10843,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, au_br_sb(br));
-+      old = dy_gadd(spl, key);
++      old = dy_gadd(sphl, key);
 +      if (old) {
 +              kfree(key);
 +              key = old;
@@ -10584,30 +10926,30 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +int au_dy_irefresh(struct inode *inode)
 +{
 +      int err;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      struct inode *h_inode;
 +
 +      err = 0;
 +      if (S_ISREG(inode->i_mode)) {
-+              bstart = au_ibstart(inode);
-+              h_inode = au_h_iptr(inode, bstart);
-+              err = au_dy_iaop(inode, bstart, h_inode);
++              btop = au_ibtop(inode);
++              h_inode = au_h_iptr(inode, btop);
++              err = au_dy_iaop(inode, btop, h_inode);
 +      }
 +      return err;
 +}
 +
 +void au_dy_arefresh(int do_dx)
 +{
-+      struct au_splhead *spl;
-+      struct list_head *head;
++      struct au_sphlhead *sphl;
++      struct hlist_head *head;
 +      struct au_dykey *key;
 +
-+      spl = dynop + AuDy_AOP;
-+      head = &spl->head;
-+      spin_lock(&spl->spin);
-+      list_for_each_entry(key, head, dk_list)
++      sphl = dynop + AuDy_AOP;
++      head = &sphl->head;
++      spin_lock(&sphl->spin);
++      hlist_for_each_entry(key, head, dk_hnode)
 +              dy_adx((void *)key, do_dx);
-+      spin_unlock(&spl->spin);
++      spin_unlock(&sphl->spin);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -10620,7 +10962,7 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +      BUILD_BUG_ON(offsetof(struct au_dyaop, da_key));
 +
 +      for (i = 0; i < AuDyLast; i++)
-+              au_spl_init(dynop + i);
++              au_sphl_init(dynop + i);
 +}
 +
 +void au_dy_fin(void)
@@ -10628,14 +10970,14 @@ diff -urN /usr/share/empty/fs/aufs/dynop.c linux/fs/aufs/dynop.c
 +      int i;
 +
 +      for (i = 0; i < AuDyLast; i++)
-+              WARN_ON(!list_empty(&dynop[i].head));
++              WARN_ON(!hlist_empty(&dynop[i].head));
 +}
 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      2015-09-24 10:47:58.251386326 +0200
++++ linux/fs/aufs/dynop.h      2017-07-29 12:14:25.899708630 +0200
 @@ -0,0 +1,74 @@
 +/*
-+ * Copyright (C) 2010-2015 Junjiro R. Okajima
++ * Copyright (C) 2010-2017 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
@@ -10675,7 +11017,7 @@ diff -urN /usr/share/empty/fs/aufs/dynop.h linux/fs/aufs/dynop.h
 +
 +struct au_dykey {
 +      union {
-+              struct list_head        dk_list;
++              struct hlist_node       dk_hnode;
 +              struct rcu_head         dk_rcu;
 +      };
 +      struct au_dynop         dk_op;
@@ -10710,10 +11052,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     2015-09-24 10:47:58.251386326 +0200
-@@ -0,0 +1,832 @@
++++ linux/fs/aufs/export.c     2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,836 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -10739,7 +11081,6 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +#include <linux/nsproxy.h>
 +#include <linux/random.h>
 +#include <linux/writeback.h>
-+#include "../fs/mount.h"
 +#include "aufs.h"
 +
 +union conv {
@@ -10947,7 +11288,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +
 +      dentry = ERR_PTR(-ESTALE);
 +      sigen = au_sigen(sb);
-+      if (unlikely(is_bad_inode(inode)
++      if (unlikely(au_is_bad_inode(inode)
 +                   || IS_DEADDIR(inode)
 +                   || sigen != au_iigen(inode, NULL)))
 +              goto out_iput;
@@ -11120,9 +11461,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +
 +      /* do not call vfsub_lkup_one() */
 +      dir = d_inode(parent);
-+      mutex_lock(&dir->i_mutex);
-+      dentry = vfsub_lookup_one_len(arg.name, parent, arg.namelen);
-+      mutex_unlock(&dir->i_mutex);
++      dentry = vfsub_lookup_one_len_unlocked(arg.name, parent, arg.namelen);
 +      AuTraceErrPtr(dentry);
 +      if (IS_ERR(dentry))
 +              goto out_name;
@@ -11229,9 +11568,11 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      h_mnt = au_br_mnt(br);
 +      h_sb = h_mnt->mnt_sb;
 +      /* todo: call lower fh_to_dentry()? fh_to_parent()? */
++      lockdep_off();
 +      h_parent = exportfs_decode_fh(h_mnt, (void *)(fh + Fh_tail),
 +                                    fh_len - Fh_tail, fh[Fh_h_type],
 +                                    h_acceptable, /*context*/NULL);
++      lockdep_on();
 +      dentry = h_parent;
 +      if (unlikely(!h_parent || IS_ERR(h_parent))) {
 +              AuWarn1("%s decode_fh failed, %ld\n",
@@ -11324,7 +11665,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      ino = decode_ino(fh + Fh_ino);
 +      /* it should never happen */
 +      if (unlikely(ino == AUFS_ROOT_INO))
-+              goto out;
++              goto out_unlock;
 +
 +      dir_ino = decode_ino(fh + Fh_dir_ino);
 +      dentry = decode_by_ino(sb, ino, dir_ino);
@@ -11335,7 +11676,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +
 +      /* is the parent dir cached? */
 +      br = au_sbr(sb, nsi_lock.bindex);
-+      atomic_inc(&br->br_count);
++      au_br_get(br);
 +      dentry = decode_by_dir_ino(sb, ino, dir_ino, &nsi_lock);
 +      if (IS_ERR(dentry))
 +              goto out_unlock;
@@ -11359,7 +11700,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      dentry = ERR_PTR(-ESTALE);
 +out_unlock:
 +      if (br)
-+              atomic_dec(&br->br_count);
++              au_br_put(br);
 +      si_read_unlock(sb);
 +out:
 +      AuTraceErrPtr(dentry);
@@ -11426,7 +11767,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      err = -EIO;
 +      parent = NULL;
 +      ii_read_lock_child(inode);
-+      bindex = au_ibstart(inode);
++      bindex = au_ibtop(inode);
 +      if (!dir) {
 +              dentry = d_find_any_alias(inode);
 +              if (unlikely(!dentry))
@@ -11501,7 +11842,7 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      sb = inode->i_sb;
 +      si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW);
 +      ii_write_lock_child(inode);
-+      bindex = au_ibstart(inode);
++      bindex = au_ibtop(inode);
 +      AuDebugOn(bindex < 0);
 +      h_inode = au_h_iptr(inode, bindex);
 +
@@ -11537,6 +11878,11 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +      struct au_sbinfo *sbinfo;
 +      __u32 u;
 +
++      BUILD_BUG_ON_MSG(IS_BUILTIN(CONFIG_AUFS_FS)
++                       && IS_MODULE(CONFIG_EXPORTFS),
++                       AUFS_NAME ": unsupported configuration "
++                       "CONFIG_EXPORTFS=m and CONFIG_AUFS_FS=y");
++
 +      sb->s_export_op = &aufs_export_op;
 +      sbinfo = au_sbi(sb);
 +      sbinfo->si_xigen = NULL;
@@ -11546,10 +11892,10 @@ diff -urN /usr/share/empty/fs/aufs/export.c linux/fs/aufs/export.c
 +}
 diff -urN /usr/share/empty/fs/aufs/fhsm.c linux/fs/aufs/fhsm.c
 --- /usr/share/empty/fs/aufs/fhsm.c    1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/fhsm.c       2015-09-24 10:47:58.251386326 +0200
++++ linux/fs/aufs/fhsm.c       2017-07-29 12:14:25.903042072 +0200
 @@ -0,0 +1,426 @@
 +/*
-+ * Copyright (C) 2011-2015 Junjiro R. Okajima
++ * Copyright (C) 2011-2017 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
@@ -11705,12 +12051,12 @@ diff -urN /usr/share/empty/fs/aufs/fhsm.c linux/fs/aufs/fhsm.c
 +
 +void au_fhsm_wrote_all(struct super_block *sb, int force)
 +{
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct au_branch *br;
 +
 +      /* exclude the bottom */
-+      bend = au_fhsm_bottom(sb);
-+      for (bindex = 0; bindex < bend; bindex++) {
++      bbot = au_fhsm_bottom(sb);
++      for (bindex = 0; bindex < bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              if (au_br_fhsm(br->br_perm))
 +                      au_fhsm_wrote(sb, bindex, force);
@@ -11756,15 +12102,15 @@ diff -urN /usr/share/empty/fs/aufs/fhsm.c linux/fs/aufs/fhsm.c
 +{
 +      ssize_t err;
 +      int nstbr;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct au_branch *br;
 +      struct au_br_fhsm *bf;
 +
 +      /* except the bottom branch */
 +      err = 0;
 +      nstbr = 0;
-+      bend = au_fhsm_bottom(sb);
-+      for (bindex = 0; !err && bindex < bend; bindex++) {
++      bbot = au_fhsm_bottom(sb);
++      for (bindex = 0; !err && bindex < bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              if (!au_br_fhsm(br->br_perm))
 +                      continue;
@@ -11795,7 +12141,7 @@ diff -urN /usr/share/empty/fs/aufs/fhsm.c linux/fs/aufs/fhsm.c
 +{
 +      ssize_t err;
 +      int readable;
-+      aufs_bindex_t nfhsm, bindex, bend;
++      aufs_bindex_t nfhsm, bindex, bbot;
 +      struct au_sbinfo *sbinfo;
 +      struct au_fhsm *fhsm;
 +      struct au_branch *br;
@@ -11826,8 +12172,8 @@ diff -urN /usr/share/empty/fs/aufs/fhsm.c linux/fs/aufs/fhsm.c
 +              AuDebugOn(!sb);
 +              /* exclude the bottom branch */
 +              nfhsm = 0;
-+              bend = au_fhsm_bottom(sb);
-+              for (bindex = 0; bindex < bend; bindex++) {
++              bbot = au_fhsm_bottom(sb);
++              for (bindex = 0; bindex < bbot; bindex++) {
 +                      br = au_sbr(sb, bindex);
 +                      if (au_br_fhsm(br->br_perm))
 +                              nfhsm++;
@@ -11976,10 +12322,10 @@ diff -urN /usr/share/empty/fs/aufs/fhsm.c linux/fs/aufs/fhsm.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       2015-11-11 17:21:46.918863802 +0100
-@@ -0,0 +1,844 @@
++++ linux/fs/aufs/file.c       2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,858 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -12062,7 +12408,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +              }
 +      }
 +      flags &= ~O_CREAT;
-+      atomic_inc(&br->br_count);
++      au_br_get(br);
 +      h_path.dentry = h_dentry;
 +      h_path.mnt = au_br_mnt(br);
 +      h_file = vfsub_dentry_open(&h_path, flags);
@@ -12081,7 +12427,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      goto out; /* success */
 +
 +out_br:
-+      atomic_dec(&br->br_count);
++      au_br_put(br);
 +out:
 +      return h_file;
 +}
@@ -12115,7 +12461,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      err = 0;
 +      if (IS_ROOT(dentry))
 +              goto out;
-+      cpg.bsrc = au_dbstart(dentry);
++      cpg.bsrc = au_dbtop(dentry);
 +      if (!cpg.bsrc)
 +              goto out;
 +
@@ -12230,7 +12576,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +              if (!err)
 +                      err = args->open(file, vfsub_file_flags(file),
 +                                       args->h_file);
-+              if (!err && au_fbstart(file) != au_dbstart(dentry))
++              if (!err && au_fbtop(file) != au_dbtop(dentry))
 +                      /*
 +                       * cmoo happens after h_file was opened.
 +                       * need to refresh file later.
@@ -12263,49 +12609,49 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +int au_reopen_nondir(struct file *file)
 +{
 +      int err;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      struct dentry *dentry;
 +      struct file *h_file, *h_file_tmp;
 +
 +      dentry = file->f_path.dentry;
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      h_file_tmp = NULL;
-+      if (au_fbstart(file) == bstart) {
++      if (au_fbtop(file) == btop) {
 +              h_file = au_hf_top(file);
 +              if (file->f_mode == h_file->f_mode)
 +                      return 0; /* success */
 +              h_file_tmp = h_file;
 +              get_file(h_file_tmp);
-+              au_set_h_fptr(file, bstart, NULL);
++              au_set_h_fptr(file, btop, NULL);
 +      }
 +      AuDebugOn(au_fi(file)->fi_hdir);
 +      /*
 +       * it can happen
 +       * file exists on both of rw and ro
-+       * open --> dbstart and fbstart are both 0
++       * open --> dbtop and fbtop 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
++       *      --> dbtop is 1, fbtop is still 0
++       * write --> fbtop is 0 but dbtop is 1
 +       */
-+      /* AuDebugOn(au_fbstart(file) < bstart); */
++      /* AuDebugOn(au_fbtop(file) < btop); */
 +
-+      h_file = au_h_open(dentry, bstart, vfsub_file_flags(file) & ~O_TRUNC,
++      h_file = au_h_open(dentry, btop, vfsub_file_flags(file) & ~O_TRUNC,
 +                         file, /*force_wr*/0);
 +      err = PTR_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);
++                      au_sbr_get(dentry->d_sb, btop);
++                      au_set_h_fptr(file, btop, h_file_tmp);
 +                      h_file_tmp = NULL;
 +              }
 +              goto out; /* todo: close all? */
 +      }
 +
 +      err = 0;
-+      au_set_fbstart(file, bstart);
-+      au_set_h_fptr(file, bstart, h_file);
++      au_set_fbtop(file, btop);
++      au_set_h_fptr(file, btop, h_file);
 +      au_update_figen(file);
 +      /* todo: necessary? */
 +      /* file->f_ra = h_file->f_ra; */
@@ -12322,7 +12668,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +                      struct dentry *hi_wh)
 +{
 +      int err;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      struct au_dinfo *dinfo;
 +      struct dentry *h_dentry;
 +      struct au_hdentry *hdp;
@@ -12330,14 +12676,14 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      dinfo = au_di(file->f_path.dentry);
 +      AuRwMustWriteLock(&dinfo->di_rwsem);
 +
-+      bstart = dinfo->di_bstart;
-+      dinfo->di_bstart = btgt;
-+      hdp = dinfo->di_hdentry;
-+      h_dentry = hdp[0 + btgt].hd_dentry;
-+      hdp[0 + btgt].hd_dentry = hi_wh;
++      btop = dinfo->di_btop;
++      dinfo->di_btop = btgt;
++      hdp = au_hdentry(dinfo, btgt);
++      h_dentry = hdp->hd_dentry;
++      hdp->hd_dentry = hi_wh;
 +      err = au_reopen_nondir(file);
-+      hdp[0 + btgt].hd_dentry = h_dentry;
-+      dinfo->di_bstart = bstart;
++      hdp->hd_dentry = h_dentry;
++      dinfo->di_btop = btop;
 +
 +      return err;
 +}
@@ -12356,11 +12702,11 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +              .pin    = pin
 +      };
 +
-+      au_update_dbstart(cpg.dentry);
++      au_update_dbtop(cpg.dentry);
 +      inode = d_inode(cpg.dentry);
 +      h_inode = NULL;
-+      if (au_dbstart(cpg.dentry) <= bcpup
-+          && au_dbend(cpg.dentry) >= bcpup) {
++      if (au_dbtop(cpg.dentry) <= bcpup
++          && au_dbbot(cpg.dentry) >= bcpup) {
 +              h_dentry = au_h_dptr(cpg.dentry, bcpup);
 +              if (h_dentry && d_is_positive(h_dentry))
 +                      h_inode = d_inode(h_dentry);
@@ -12387,7 +12733,7 @@ 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 dbstart;
++      aufs_bindex_t dbtop;
 +      struct dentry *parent;
 +      struct inode *inode;
 +      struct super_block *sb;
@@ -12403,7 +12749,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +
 +      sb = cpg.dentry->d_sb;
 +      inode = d_inode(cpg.dentry);
-+      cpg.bsrc = au_fbstart(file);
++      cpg.bsrc = au_fbtop(file);
 +      err = au_test_ro(sb, cpg.bsrc, inode);
 +      if (!err && (au_hf_top(file)->f_mode & FMODE_WRITE)) {
 +              err = au_pin(pin, cpg.dentry, cpg.bsrc, AuOpt_UDBA_NONE,
@@ -12431,11 +12777,11 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      if (unlikely(err))
 +              goto out_dgrade;
 +
-+      dbstart = au_dbstart(cpg.dentry);
-+      if (dbstart <= cpg.bdst)
++      dbtop = au_dbtop(cpg.dentry);
++      if (dbtop <= cpg.bdst)
 +              cpg.bsrc = cpg.bdst;
 +
-+      if (dbstart <= cpg.bdst         /* just reopen */
++      if (dbtop <= cpg.bdst           /* just reopen */
 +          || !d_unhashed(cpg.dentry)  /* copyup and reopen */
 +              ) {
 +              h_file = au_h_open_pre(cpg.dentry, cpg.bsrc, /*force_wr*/0);
@@ -12443,7 +12789,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +                      err = PTR_ERR(h_file);
 +              else {
 +                      di_downgrade_lock(parent, AuLock_IR);
-+                      if (dbstart > cpg.bdst)
++                      if (dbtop > cpg.bdst)
 +                              err = au_sio_cpup_simple(&cpg);
 +                      if (!err)
 +                              err = au_reopen_nondir(file);
@@ -12524,7 +12870,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      finfo = au_fi(file);
 +      sb = cpg.dentry->d_sb;
 +      inode = d_inode(cpg.dentry);
-+      cpg.bdst = au_ibstart(inode);
++      cpg.bdst = au_ibtop(inode);
 +      if (cpg.bdst == finfo->fi_btop || IS_ROOT(cpg.dentry))
 +              goto out;
 +
@@ -12545,7 +12891,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +          && au_opt_test(au_mntflags(sb), PLINK)
 +          && au_plink_test(inode)
 +          && !d_unhashed(cpg.dentry)
-+          && cpg.bdst < au_dbstart(cpg.dentry)) {
++          && cpg.bdst < au_dbtop(cpg.dentry)) {
 +              err = au_test_and_cpup_dirs(cpg.dentry, cpg.bdst);
 +              if (unlikely(err))
 +                      goto out_unlock;
@@ -12573,7 +12919,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +
 +static void au_do_refresh_dir(struct file *file)
 +{
-+      aufs_bindex_t bindex, bend, new_bindex, brid;
++      aufs_bindex_t bindex, bbot, new_bindex, brid;
 +      struct au_hfile *p, tmp, *q;
 +      struct au_finfo *finfo;
 +      struct super_block *sb;
@@ -12587,8 +12933,8 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      AuDebugOn(!fidir);
 +      p = fidir->fd_hfile + finfo->fi_btop;
 +      brid = p->hf_br->br_id;
-+      bend = fidir->fd_bbot;
-+      for (bindex = finfo->fi_btop; bindex <= bend; bindex++, p++) {
++      bbot = fidir->fd_bbot;
++      for (bindex = finfo->fi_btop; bindex <= bbot; bindex++, p++) {
 +              if (!p->hf_file)
 +                      continue;
 +
@@ -12613,30 +12959,30 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +
 +      p = fidir->fd_hfile;
 +      if (!au_test_mmapped(file) && !d_unlinked(file->f_path.dentry)) {
-+              bend = au_sbend(sb);
-+              for (finfo->fi_btop = 0; finfo->fi_btop <= bend;
++              bbot = au_sbbot(sb);
++              for (finfo->fi_btop = 0; finfo->fi_btop <= bbot;
 +                   finfo->fi_btop++, p++)
 +                      if (p->hf_file) {
 +                              if (file_inode(p->hf_file))
 +                                      break;
-+                              au_hfput(p, file);
++                              au_hfput(p, /*execed*/0);
 +                      }
 +      } else {
-+              bend = au_br_index(sb, brid);
-+              for (finfo->fi_btop = 0; finfo->fi_btop < bend;
++              bbot = au_br_index(sb, brid);
++              for (finfo->fi_btop = 0; finfo->fi_btop < bbot;
 +                   finfo->fi_btop++, p++)
 +                      if (p->hf_file)
-+                              au_hfput(p, file);
-+              bend = au_sbend(sb);
++                              au_hfput(p, /*execed*/0);
++              bbot = au_sbbot(sb);
 +      }
 +
-+      p = fidir->fd_hfile + bend;
-+      for (fidir->fd_bbot = bend; fidir->fd_bbot >= finfo->fi_btop;
++      p = fidir->fd_hfile + bbot;
++      for (fidir->fd_bbot = bbot; fidir->fd_bbot >= finfo->fi_btop;
 +           fidir->fd_bbot--, p--)
 +              if (p->hf_file) {
 +                      if (file_inode(p->hf_file))
 +                              break;
-+                      au_hfput(p, file);
++                      au_hfput(p, /*execed*/0);
 +              }
 +      AuDebugOn(fidir->fd_bbot < finfo->fi_btop);
 +}
@@ -12646,23 +12992,26 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 + */
 +static int refresh_file(struct file *file, int (*reopen)(struct file *file))
 +{
-+      int err, need_reopen;
-+      aufs_bindex_t bend, bindex;
++      int err, need_reopen, nbr;
++      aufs_bindex_t bbot, bindex;
 +      struct dentry *dentry;
++      struct super_block *sb;
 +      struct au_finfo *finfo;
 +      struct au_hfile *hfile;
 +
 +      dentry = file->f_path.dentry;
++      sb = dentry->d_sb;
++      nbr = au_sbbot(sb) + 1;
 +      finfo = au_fi(file);
 +      if (!finfo->fi_hdir) {
 +              hfile = &finfo->fi_htop;
 +              AuDebugOn(!hfile->hf_file);
-+              bindex = au_br_index(dentry->d_sb, hfile->hf_br->br_id);
++              bindex = au_br_index(sb, hfile->hf_br->br_id);
 +              AuDebugOn(bindex < 0);
 +              if (bindex != finfo->fi_btop)
-+                      au_set_fbstart(file, bindex);
++                      au_set_fbtop(file, bindex);
 +      } else {
-+              err = au_fidir_realloc(finfo, au_sbend(dentry->d_sb) + 1);
++              err = au_fidir_realloc(finfo, nbr, /*may_shrink*/0);
 +              if (unlikely(err))
 +                      goto out;
 +              au_do_refresh_dir(file);
@@ -12672,6 +13021,9 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      need_reopen = 1;
 +      if (!au_test_mmapped(file))
 +              err = au_file_refresh_by_inode(file, &need_reopen);
++      if (finfo->fi_hdir)
++              /* harmless if err */
++              au_fidir_realloc(finfo, nbr, /*may_shrink*/1);
 +      if (!err && need_reopen && !d_unlinked(dentry))
 +              err = reopen(file);
 +      if (!err) {
@@ -12681,8 +13033,8 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +
 +      /* error, close all lower files */
 +      if (finfo->fi_hdir) {
-+              bend = au_fbend_dir(file);
-+              for (bindex = au_fbstart(file); bindex <= bend; bindex++)
++              bbot = au_fbbot_dir(file);
++              for (bindex = au_fbtop(file); bindex <= bbot; bindex++)
 +                      au_set_h_fptr(file, bindex, NULL);
 +      }
 +
@@ -12692,11 +13044,11 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +
 +/* common function to regular file and dir */
 +int au_reval_and_lock_fdi(struct file *file, int (*reopen)(struct file *file),
-+                        int wlock)
++                        int wlock, unsigned int fi_lsc)
 +{
 +      int err;
 +      unsigned int sigen, figen;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      unsigned char pseudo_link;
 +      struct dentry *dentry;
 +      struct inode *inode;
@@ -12705,12 +13057,15 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      dentry = file->f_path.dentry;
 +      inode = d_inode(dentry);
 +      sigen = au_sigen(dentry->d_sb);
-+      fi_write_lock(file);
++      fi_write_lock_nested(file, fi_lsc);
 +      figen = au_figen(file);
-+      di_write_lock_child(dentry);
-+      bstart = au_dbstart(dentry);
-+      pseudo_link = (bstart != au_ibstart(inode));
-+      if (sigen == figen && !pseudo_link && au_fbstart(file) == bstart) {
++      if (!fi_lsc)
++              di_write_lock_child(dentry);
++      else
++              di_write_lock_child2(dentry);
++      btop = au_dbtop(dentry);
++      pseudo_link = (btop != au_ibtop(inode));
++      if (sigen == figen && !pseudo_link && au_fbtop(file) == btop) {
 +              if (!wlock) {
 +                      di_downgrade_lock(dentry, AuLock_IR);
 +                      fi_downgrade_lock(file);
@@ -12751,8 +13106,7 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +}
 +
 +/* it will never be called, but necessary to support O_DIRECT */
-+static ssize_t aufs_direct_IO(struct kiocb *iocb, struct iov_iter *iter,
-+                            loff_t offset)
++static ssize_t aufs_direct_IO(struct kiocb *iocb, struct iov_iter *iter)
 +{ BUG(); return 0; }
 +
 +/* they will never be called. */
@@ -12780,6 +13134,10 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +                          struct page *page, enum migrate_mode mode)
 +{ AuUnsupport(); return 0; }
 +#endif
++static bool aufs_isolate_page(struct page *page, isolate_mode_t mode)
++{ AuUnsupport(); return true; }
++static void aufs_putback_page(struct page *page)
++{ AuUnsupport(); }
 +static int aufs_launder_page(struct page *page)
 +{ AuUnsupport(); return 0; }
 +static int aufs_is_partially_uptodate(struct page *page,
@@ -12814,6 +13172,8 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +      .releasepage            = aufs_releasepage,
 +      /* is fallback_migrate_page ok? */
 +      /* .migratepage         = aufs_migratepage, */
++      .isolate_page           = aufs_isolate_page,
++      .putback_page           = aufs_putback_page,
 +      .launder_page           = aufs_launder_page,
 +      .is_partially_uptodate  = aufs_is_partially_uptodate,
 +      .is_dirty_writeback     = aufs_is_dirty_writeback,
@@ -12824,10 +13184,10 @@ diff -urN /usr/share/empty/fs/aufs/file.c linux/fs/aufs/file.c
 +};
 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       2015-09-24 10:47:58.251386326 +0200
-@@ -0,0 +1,291 @@
++++ linux/fs/aufs/file.h       2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,331 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -12854,6 +13214,7 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +
 +#include <linux/file.h>
 +#include <linux/fs.h>
++#include <linux/mm_types.h>
 +#include <linux/poll.h>
 +#include "rwsem.h"
 +
@@ -12913,7 +13274,7 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +struct au_pin;
 +int au_ready_to_write(struct file *file, loff_t len, struct au_pin *pin);
 +int au_reval_and_lock_fdi(struct file *file, int (*reopen)(struct file *file),
-+                        int wlock);
++                        int wlock, unsigned int fi_lsc);
 +int au_do_flush(struct file *file, fl_owner_t id,
 +              int (*flush)(struct file *file, fl_owner_t id));
 +
@@ -12939,16 +13300,16 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +extern const struct file_operations aufs_file_fop;
 +int au_do_open_nondir(struct file *file, int flags, struct file *h_file);
 +int aufs_release_nondir(struct inode *inode __maybe_unused, struct file *file);
-+struct file *au_read_pre(struct file *file, int keep_fi);
++struct file *au_read_pre(struct file *file, int keep_fi, unsigned int lsc);
 +
 +/* finfo.c */
-+void au_hfput(struct au_hfile *hf, struct file *file);
++void au_hfput(struct au_hfile *hf, int execed);
 +void au_set_h_fptr(struct file *file, aufs_bindex_t bindex,
 +                 struct file *h_file);
 +
 +void au_update_figen(struct file *file);
 +struct au_fidir *au_fidir_alloc(struct super_block *sb);
-+int au_fidir_realloc(struct au_finfo *finfo, int nbr);
++int au_fidir_realloc(struct au_finfo *finfo, int nbr, int may_shrink);
 +
 +void au_fi_init_once(void *_fi);
 +void au_finfo_fin(struct file *file);
@@ -12978,6 +13339,45 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 + */
 +AuSimpleRwsemFuncs(fi, struct file *f, &au_fi(f)->fi_rwsem);
 +
++/* lock subclass for finfo */
++enum {
++      AuLsc_FI_1,
++      AuLsc_FI_2
++};
++
++static inline void fi_read_lock_nested(struct file *f, unsigned int lsc)
++{
++      au_rw_read_lock_nested(&au_fi(f)->fi_rwsem, lsc);
++}
++
++static inline void fi_write_lock_nested(struct file *f, unsigned int lsc)
++{
++      au_rw_write_lock_nested(&au_fi(f)->fi_rwsem, lsc);
++}
++
++/*
++ * fi_read_lock_1, fi_write_lock_1,
++ * fi_read_lock_2, fi_write_lock_2
++ */
++#define AuReadLockFunc(name) \
++static inline void fi_read_lock_##name(struct file *f) \
++{ fi_read_lock_nested(f, AuLsc_FI_##name); }
++
++#define AuWriteLockFunc(name) \
++static inline void fi_write_lock_##name(struct file *f) \
++{ fi_write_lock_nested(f, AuLsc_FI_##name); }
++
++#define AuRWLockFuncs(name) \
++      AuReadLockFunc(name) \
++      AuWriteLockFunc(name)
++
++AuRWLockFuncs(1);
++AuRWLockFuncs(2);
++
++#undef AuReadLockFunc
++#undef AuWriteLockFunc
++#undef AuRWLockFuncs
++
 +#define FiMustNoWaiters(f)    AuRwMustNoWaiters(&au_fi(f)->fi_rwsem)
 +#define FiMustAnyLock(f)      AuRwMustAnyLock(&au_fi(f)->fi_rwsem)
 +#define FiMustWriteLock(f)    AuRwMustWriteLock(&au_fi(f)->fi_rwsem)
@@ -12985,13 +13385,13 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +/* ---------------------------------------------------------------------- */
 +
 +/* todo: hard/soft set? */
-+static inline aufs_bindex_t au_fbstart(struct file *file)
++static inline aufs_bindex_t au_fbtop(struct file *file)
 +{
 +      FiMustAnyLock(file);
 +      return au_fi(file)->fi_btop;
 +}
 +
-+static inline aufs_bindex_t au_fbend_dir(struct file *file)
++static inline aufs_bindex_t au_fbbot_dir(struct file *file)
 +{
 +      FiMustAnyLock(file);
 +      AuDebugOn(!au_fi(file)->fi_hdir);
@@ -13005,13 +13405,13 @@ diff -urN /usr/share/empty/fs/aufs/file.h linux/fs/aufs/file.h
 +      return au_fi(file)->fi_hdir->fd_vdir_cache;
 +}
 +
-+static inline void au_set_fbstart(struct file *file, aufs_bindex_t bindex)
++static inline void au_set_fbtop(struct file *file, aufs_bindex_t bindex)
 +{
 +      FiMustWriteLock(file);
 +      au_fi(file)->fi_btop = bindex;
 +}
 +
-+static inline void au_set_fbend_dir(struct file *file, aufs_bindex_t bindex)
++static inline void au_set_fbbot_dir(struct file *file, aufs_bindex_t bindex)
 +{
 +      FiMustWriteLock(file);
 +      AuDebugOn(!au_fi(file)->fi_hdir);
@@ -13119,10 +13519,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      2015-09-24 10:47:58.251386326 +0200
-@@ -0,0 +1,157 @@
++++ linux/fs/aufs/finfo.c      2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,148 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -13144,14 +13544,13 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +
 +#include "aufs.h"
 +
-+void au_hfput(struct au_hfile *hf, struct file *file)
++void au_hfput(struct au_hfile *hf, int execed)
 +{
-+      /* todo: direct access f_flags */
-+      if (vfsub_file_flags(file) & __FMODE_EXEC)
++      if (execed)
 +              allow_write_access(hf->hf_file);
 +      fput(hf->hf_file);
 +      hf->hf_file = NULL;
-+      atomic_dec(&hf->hf_br->br_count);
++      au_br_put(hf->hf_br);
 +      hf->hf_br = NULL;
 +}
 +
@@ -13169,7 +13568,7 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +              hf = fidir->fd_hfile + bindex;
 +
 +      if (hf && hf->hf_file)
-+              au_hfput(hf, file);
++              au_hfput(hf, vfsub_file_execed(file));
 +      if (val) {
 +              FiMustWriteLock(file);
 +              AuDebugOn(IS_ERR_OR_NULL(file->f_path.dentry));
@@ -13191,20 +13590,19 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +      struct au_fidir *fidir;
 +      int nbr;
 +
-+      nbr = au_sbend(sb) + 1;
++      nbr = au_sbbot(sb) + 1;
 +      if (nbr < 2)
 +              nbr = 2; /* initial allocate for 2 branches */
 +      fidir = kzalloc(au_fidir_sz(nbr), GFP_NOFS);
 +      if (fidir) {
 +              fidir->fd_bbot = -1;
 +              fidir->fd_nent = nbr;
-+              fidir->fd_vdir_cache = NULL;
 +      }
 +
 +      return fidir;
 +}
 +
-+int au_fidir_realloc(struct au_finfo *finfo, int nbr)
++int au_fidir_realloc(struct au_finfo *finfo, int nbr, int may_shrink)
 +{
 +      int err;
 +      struct au_fidir *fidir, *p;
@@ -13215,7 +13613,7 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +
 +      err = -ENOMEM;
 +      p = au_kzrealloc(fidir, au_fidir_sz(fidir->fd_nent), au_fidir_sz(nbr),
-+                       GFP_NOFS);
++                       GFP_NOFS, may_shrink);
 +      if (p) {
 +              p->fd_nent = nbr;
 +              finfo->fi_hdir = p;
@@ -13242,10 +13640,8 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +void au_fi_init_once(void *_finfo)
 +{
 +      struct au_finfo *finfo = _finfo;
-+      static struct lock_class_key aufs_fi;
 +
 +      au_rw_init(&finfo->fi_rwsem);
-+      au_rw_class(&finfo->fi_rwsem, &aufs_fi);
 +}
 +
 +int au_finfo_init(struct file *file, struct au_fidir *fidir)
@@ -13262,11 +13658,6 @@ diff -urN /usr/share/empty/fs/aufs/finfo.c linux/fs/aufs/finfo.c
 +
 +      err = 0;
 +      au_nfiles_inc(dentry->d_sb);
-+      /* 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;
@@ -13280,10 +13671,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       2015-09-24 10:47:58.251386326 +0200
-@@ -0,0 +1,738 @@
++++ linux/fs/aufs/f_op.c       2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,817 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -13313,7 +13704,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +{
 +      int err;
 +      aufs_bindex_t bindex;
-+      struct dentry *dentry;
++      struct dentry *dentry, *h_dentry;
 +      struct au_finfo *finfo;
 +      struct inode *h_inode;
 +
@@ -13325,11 +13716,20 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      finfo = au_fi(file);
 +      memset(&finfo->fi_htop, 0, sizeof(finfo->fi_htop));
 +      atomic_set(&finfo->fi_mmapped, 0);
-+      bindex = au_dbstart(dentry);
-+      if (!h_file)
++      bindex = au_dbtop(dentry);
++      if (!h_file) {
++              h_dentry = au_h_dptr(dentry, bindex);
++              err = vfsub_test_mntns(file->f_path.mnt, h_dentry->d_sb);
++              if (unlikely(err))
++                      goto out;
 +              h_file = au_h_open(dentry, bindex, flags, file, /*force_wr*/0);
-+      else
++      } else {
++              h_dentry = h_file->f_path.dentry;
++              err = vfsub_test_mntns(file->f_path.mnt, h_dentry->d_sb);
++              if (unlikely(err))
++                      goto out;
 +              get_file(h_file);
++      }
 +      if (IS_ERR(h_file))
 +              err = PTR_ERR(h_file);
 +      else {
@@ -13340,13 +13740,14 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +                      h_inode->i_state |= I_LINKABLE;
 +                      spin_unlock(&h_inode->i_lock);
 +              }
-+              au_set_fbstart(file, bindex);
++              au_set_fbtop(file, bindex);
 +              au_set_h_fptr(file, bindex, h_file);
 +              au_update_figen(file);
 +              /* todo: necessary? */
 +              /* file->f_ra = h_file->f_ra; */
 +      }
 +
++out:
 +      return err;
 +}
 +
@@ -13414,12 +13815,12 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 + */
 +
 +/* Callers should call au_read_post() or fput() in the end */
-+struct file *au_read_pre(struct file *file, int keep_fi)
++struct file *au_read_pre(struct file *file, int keep_fi, unsigned int lsc)
 +{
 +      struct file *h_file;
 +      int err;
 +
-+      err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/0);
++      err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/0, lsc);
 +      if (!err) {
 +              di_read_unlock(file->f_path.dentry, AuLock_IR);
 +              h_file = au_hf_top(file);
@@ -13440,8 +13841,12 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +}
 +
 +struct au_write_pre {
++      /* input */
++      unsigned int lsc;
++
++      /* output */
 +      blkcnt_t blks;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +};
 +
 +/*
@@ -13455,9 +13860,13 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      struct file *h_file;
 +      struct dentry *dentry;
 +      int err;
++      unsigned int lsc;
 +      struct au_pin pin;
 +
-+      err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/1);
++      lsc = 0;
++      if (wpre)
++              lsc = wpre->lsc;
++      err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/1, lsc);
 +      h_file = ERR_PTR(err);
 +      if (unlikely(err))
 +              goto out;
@@ -13474,7 +13883,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +      di_downgrade_lock(dentry, /*flags*/0);
 +      if (wpre)
-+              wpre->bstart = au_fbstart(file);
++              wpre->btop = au_fbtop(file);
 +      h_file = au_hf_top(file);
 +      get_file(h_file);
 +      if (wpre)
@@ -13495,16 +13904,15 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      struct inode *h_inode;
 +
 +      au_cpup_attr_timesizes(inode);
-+      AuDebugOn(au_ibstart(inode) != wpre->bstart);
++      AuDebugOn(au_ibtop(inode) != wpre->btop);
 +      h_inode = file_inode(h_file);
 +      inode->i_mode = h_inode->i_mode;
 +      ii_write_unlock(inode);
-+      fput(h_file);
-+
 +      /* AuDbg("blks %llu, %llu\n", (u64)blks, (u64)h_inode->i_blocks); */
 +      if (written > 0)
-+              au_fhsm_wrote(inode->i_sb, wpre->bstart,
++              au_fhsm_wrote(inode->i_sb, wpre->btop,
 +                            /*force*/h_inode->i_blocks > wpre->blks);
++      fput(h_file);
 +}
 +
 +static ssize_t aufs_read(struct file *file, char __user *buf, size_t count,
@@ -13519,7 +13927,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      sb = inode->i_sb;
 +      si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW);
 +
-+      h_file = au_read_pre(file, /*keep_fi*/0);
++      h_file = au_read_pre(file, /*keep_fi*/0, /*lsc*/0);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
 +              goto out;
@@ -13547,11 +13955,11 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      struct super_block *sb = inode->i_sb;
 +
 +      while (1) {
-+              mutex_lock(&inode->i_mutex);
++              inode_lock(inode);
 +              err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM);
 +              if (!err)
 +                      break;
-+              mutex_unlock(&inode->i_mutex);
++              inode_unlock(inode);
 +              si_read_lock(sb, AuLock_NOPLMW);
 +              si_read_unlock(sb);
 +      }
@@ -13569,6 +13977,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      inode = file_inode(file);
 +      au_mtx_and_read_lock(inode);
 +
++      wpre.lsc = 0;
 +      h_file = au_write_pre(file, /*do_ready*/1, &wpre);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
@@ -13579,7 +13988,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +out:
 +      si_read_unlock(inode->i_sb);
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +      return err;
 +}
 +
@@ -13628,11 +14037,20 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      sb = inode->i_sb;
 +      si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW);
 +
-+      h_file = au_read_pre(file, /*keep_fi*/0);
++      h_file = au_read_pre(file, /*keep_fi*/1, /*lsc*/0);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
 +              goto out;
 +
++      if (au_test_loopback_kthread()) {
++              au_warn_loopback(h_file->f_path.dentry->d_sb);
++              if (file->f_mapping != h_file->f_mapping) {
++                      file->f_mapping = h_file->f_mapping;
++                      smp_mb(); /* unnecessary? */
++              }
++      }
++      fi_read_unlock(file);
++
 +      err = au_do_iter(h_file, MAY_READ, kio, iov_iter);
 +      /* todo: necessary? */
 +      /* file->f_ra = h_file->f_ra; */
@@ -13654,6 +14072,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      inode = file_inode(file);
 +      au_mtx_and_read_lock(inode);
 +
++      wpre.lsc = 0;
 +      h_file = au_write_pre(file, /*do_ready*/1, &wpre);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
@@ -13664,7 +14083,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +out:
 +      si_read_unlock(inode->i_sb);
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +      return err;
 +}
 +
@@ -13681,20 +14100,11 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      sb = inode->i_sb;
 +      si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW);
 +
-+      h_file = au_read_pre(file, /*keep_fi*/1);
++      h_file = au_read_pre(file, /*keep_fi*/0, /*lsc*/0);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
 +              goto out;
 +
-+      if (au_test_loopback_kthread()) {
-+              au_warn_loopback(h_file->f_path.dentry->d_sb);
-+              if (file->f_mapping != h_file->f_mapping) {
-+                      file->f_mapping = h_file->f_mapping;
-+                      smp_mb(); /* unnecessary? */
-+              }
-+      }
-+      fi_read_unlock(file);
-+
 +      err = vfsub_splice_to(h_file, ppos, pipe, len, flags);
 +      /* todo: necessasry? */
 +      /* file->f_ra = h_file->f_ra; */
@@ -13717,6 +14127,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      inode = file_inode(file);
 +      au_mtx_and_read_lock(inode);
 +
++      wpre.lsc = 0;
 +      h_file = au_write_pre(file, /*do_ready*/1, &wpre);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
@@ -13727,7 +14138,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +out:
 +      si_read_unlock(inode->i_sb);
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +      return err;
 +}
 +
@@ -13742,6 +14153,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      inode = file_inode(file);
 +      au_mtx_and_read_lock(inode);
 +
++      wpre.lsc = 0;
 +      h_file = au_write_pre(file, /*do_ready*/1, &wpre);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
@@ -13754,10 +14166,92 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +out:
 +      si_read_unlock(inode->i_sb);
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +      return err;
 +}
 +
++static ssize_t aufs_copy_file_range(struct file *src, loff_t src_pos,
++                                  struct file *dst, loff_t dst_pos,
++                                  size_t len, unsigned int flags)
++{
++      ssize_t err;
++      struct au_write_pre wpre;
++      enum { SRC, DST };
++      struct {
++              struct inode *inode;
++              struct file *h_file;
++              struct super_block *h_sb;
++      } a[2];
++#define a_src a[SRC]
++#define a_dst a[DST]
++
++      err = -EINVAL;
++      a_src.inode = file_inode(src);
++      if (unlikely(!S_ISREG(a_src.inode->i_mode)))
++              goto out;
++      a_dst.inode = file_inode(dst);
++      if (unlikely(!S_ISREG(a_dst.inode->i_mode)))
++              goto out;
++
++      au_mtx_and_read_lock(a_dst.inode);
++      /*
++       * in order to match the order in di_write_lock2_{child,parent}(),
++       * use f_path.dentry for this comparision.
++       */
++      if (src->f_path.dentry < dst->f_path.dentry) {
++              a_src.h_file = au_read_pre(src, /*keep_fi*/1, AuLsc_FI_1);
++              err = PTR_ERR(a_src.h_file);
++              if (IS_ERR(a_src.h_file))
++                      goto out_si;
++
++              wpre.lsc = AuLsc_FI_2;
++              a_dst.h_file = au_write_pre(dst, /*do_ready*/1, &wpre);
++              err = PTR_ERR(a_dst.h_file);
++              if (IS_ERR(a_dst.h_file)) {
++                      au_read_post(a_src.inode, a_src.h_file);
++                      goto out_si;
++              }
++      } else {
++              wpre.lsc = AuLsc_FI_1;
++              a_dst.h_file = au_write_pre(dst, /*do_ready*/1, &wpre);
++              err = PTR_ERR(a_dst.h_file);
++              if (IS_ERR(a_dst.h_file))
++                      goto out_si;
++
++              a_src.h_file = au_read_pre(src, /*keep_fi*/1, AuLsc_FI_2);
++              err = PTR_ERR(a_src.h_file);
++              if (IS_ERR(a_src.h_file)) {
++                      au_write_post(a_dst.inode, a_dst.h_file, &wpre,
++                                    /*written*/0);
++                      goto out_si;
++              }
++      }
++
++      err = -EXDEV;
++      a_src.h_sb = file_inode(a_src.h_file)->i_sb;
++      a_dst.h_sb = file_inode(a_dst.h_file)->i_sb;
++      if (unlikely(a_src.h_sb != a_dst.h_sb)) {
++              AuDbgFile(src);
++              AuDbgFile(dst);
++              goto out_file;
++      }
++
++      err = vfsub_copy_file_range(a_src.h_file, src_pos, a_dst.h_file,
++                                  dst_pos, len, flags);
++
++out_file:
++      au_write_post(a_dst.inode, a_dst.h_file, &wpre, err);
++      fi_read_unlock(src);
++      au_read_post(a_src.inode, a_src.h_file);
++out_si:
++      si_read_unlock(a_dst.inode->i_sb);
++      inode_unlock(a_dst.inode);
++out:
++      return err;
++#undef a_src
++#undef a_dst
++}
++
 +/* ---------------------------------------------------------------------- */
 +
 +/*
@@ -13848,7 +14342,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +       *                       au_flag_conv(vma->vm_flags));
 +       */
 +      if (!err)
-+              err = h_file->f_op->mmap(h_file, vma);
++              err = call_mmap(h_file, vma);
 +      if (!err) {
 +              au_vm_prfile_set(vma, file);
 +              fsstack_copy_attr_atime(inode, file_inode(h_file));
@@ -13887,6 +14381,7 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      inode = file_inode(file);
 +      au_mtx_and_read_lock(inode);
 +
++      wpre.lsc = 0;
 +      h_file = au_write_pre(file, /*do_ready*/1, &wpre);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
@@ -13897,62 +14392,35 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +
 +out_unlock:
 +      si_read_unlock(inode->i_sb);
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +out:
 +      return err;
 +}
 +
-+/* no one supports this operation, currently */
-+#if 0
-+static int aufs_aio_fsync_nondir(struct kiocb *kio, int datasync)
++static int aufs_fasync(int fd, struct file *file, int flag)
 +{
 +      int err;
-+      struct au_write_pre wpre;
-+      struct inode *inode;
-+      struct file *file, *h_file;
-+
-+      err = 0; /* -EBADF; */ /* posix? */
-+      if (unlikely(!(file->f_mode & FMODE_WRITE)))
-+              goto out;
++      struct file *h_file;
++      struct super_block *sb;
 +
-+      file = kio->ki_filp;
-+      inode = file_inode(file);
-+      au_mtx_and_read_lock(inode);
++      sb = file->f_path.dentry->d_sb;
++      si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW);
 +
-+      h_file = au_write_pre(file, /*do_ready*/1, &wpre);
++      h_file = au_read_pre(file, /*keep_fi*/0, /*lsc*/0);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
-+              goto out_unlock;
-+
-+      err = -ENOSYS;
-+      h_file = au_hf_top(file);
-+      if (h_file->f_op->aio_fsync) {
-+              struct mutex *h_mtx;
++              goto out;
 +
-+              h_mtx = &file_inode(h_file)->i_mutex;
-+              if (!is_sync_kiocb(kio)) {
-+                      get_file(h_file);
-+                      fput(file);
-+              }
-+              kio->ki_filp = h_file;
-+              err = h_file->f_op->aio_fsync(kio, datasync);
-+              mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
-+              if (!err)
-+                      vfsub_update_h_iattr(&h_file->f_path, /*did*/NULL);
-+              /*ignore*/
-+              mutex_unlock(h_mtx);
-+      }
-+      au_write_post(inode, h_file, &wpre, /*written*/0);
++      if (h_file->f_op->fasync)
++              err = h_file->f_op->fasync(fd, h_file, flag);
++      fput(h_file); /* instead of au_read_post() */
 +
-+out_unlock:
-+      si_read_unlock(inode->sb);
-+      mutex_unlock(&inode->i_mutex);
 +out:
++      si_read_unlock(sb);
 +      return err;
 +}
-+#endif
 +
-+static int aufs_fasync(int fd, struct file *file, int flag)
++static int aufs_setfl(struct file *file, unsigned long arg)
 +{
 +      int err;
 +      struct file *h_file;
@@ -13961,13 +14429,14 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      sb = file->f_path.dentry->d_sb;
 +      si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW);
 +
-+      h_file = au_read_pre(file, /*keep_fi*/0);
++      h_file = au_read_pre(file, /*keep_fi*/0, /*lsc*/0);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
 +              goto out;
 +
-+      if (h_file->f_op->fasync)
-+              err = h_file->f_op->fasync(fd, h_file, flag);
++      /* stop calling h_file->fasync */
++      arg |= vfsub_file_flags(file) & FASYNC;
++      err = setfl(/*unused fd*/-1, h_file, arg);
 +      fput(h_file); /* instead of au_read_post() */
 +
 +out:
@@ -14009,23 +14478,24 @@ diff -urN /usr/share/empty/fs/aufs/f_op.c linux/fs/aufs/f_op.c
 +      .flush          = aufs_flush_nondir,
 +      .release        = aufs_release_nondir,
 +      .fsync          = aufs_fsync_nondir,
-+      /* .aio_fsync   = aufs_aio_fsync_nondir, */
 +      .fasync         = aufs_fasync,
 +      /* .sendpage    = aufs_sendpage, */
++      .setfl          = aufs_setfl,
 +      .splice_write   = aufs_splice_write,
 +      .splice_read    = aufs_splice_read,
 +#if 0
 +      .aio_splice_write = aufs_aio_splice_write,
 +      .aio_splice_read  = aufs_aio_splice_read,
 +#endif
-+      .fallocate      = aufs_fallocate
++      .fallocate      = aufs_fallocate,
++      .copy_file_range = aufs_copy_file_range
 +};
 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     2015-12-10 17:59:16.836166410 +0100
++++ linux/fs/aufs/fstype.h     2017-07-29 12:14:25.903042072 +0200
 @@ -0,0 +1,400 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -14067,7 +14537,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_iso9660(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_ISO9660_FS) || defined(CONFIG_ISO9660_FS_MODULE)
++#if IS_ENABLED(CONFIG_ISO9660_FS)
 +      return sb->s_magic == ISOFS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14076,7 +14546,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_romfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_ROMFS_FS) || defined(CONFIG_ROMFS_FS_MODULE)
++#if IS_ENABLED(CONFIG_ROMFS_FS)
 +      return sb->s_magic == ROMFS_MAGIC;
 +#else
 +      return 0;
@@ -14085,7 +14555,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_cramfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_CRAMFS) || defined(CONFIG_CRAMFS_MODULE)
++#if IS_ENABLED(CONFIG_CRAMFS)
 +      return sb->s_magic == CRAMFS_MAGIC;
 +#endif
 +      return 0;
@@ -14093,7 +14563,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_nfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_NFS_FS) || defined(CONFIG_NFS_FS_MODULE)
++#if IS_ENABLED(CONFIG_NFS_FS)
 +      return sb->s_magic == NFS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14102,7 +14572,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_fuse(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_FUSE_FS) || defined(CONFIG_FUSE_FS_MODULE)
++#if IS_ENABLED(CONFIG_FUSE_FS)
 +      return sb->s_magic == FUSE_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14111,7 +14581,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_xfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_XFS_FS) || defined(CONFIG_XFS_FS_MODULE)
++#if IS_ENABLED(CONFIG_XFS_FS)
 +      return sb->s_magic == XFS_SB_MAGIC;
 +#else
 +      return 0;
@@ -14129,7 +14599,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_ecryptfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_ECRYPT_FS) || defined(CONFIG_ECRYPT_FS_MODULE)
++#if IS_ENABLED(CONFIG_ECRYPT_FS)
 +      return !strcmp(au_sbtype(sb), "ecryptfs");
 +#else
 +      return 0;
@@ -14143,7 +14613,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_ubifs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_UBIFS_FS) || defined(CONFIG_UBIFS_FS_MODULE)
++#if IS_ENABLED(CONFIG_UBIFS_FS)
 +      return sb->s_magic == UBIFS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14170,7 +14640,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_configfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_CONFIGFS_FS) || defined(CONFIG_CONFIGFS_FS_MODULE)
++#if IS_ENABLED(CONFIG_CONFIGFS_FS)
 +      return sb->s_magic == CONFIGFS_MAGIC;
 +#else
 +      return 0;
@@ -14179,7 +14649,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_minix(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_MINIX_FS) || defined(CONFIG_MINIX_FS_MODULE)
++#if IS_ENABLED(CONFIG_MINIX_FS)
 +      return sb->s_magic == MINIX3_SUPER_MAGIC
 +              || sb->s_magic == MINIX2_SUPER_MAGIC
 +              || sb->s_magic == MINIX2_SUPER_MAGIC2
@@ -14192,7 +14662,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_fat(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_FAT_FS) || defined(CONFIG_FAT_FS_MODULE)
++#if IS_ENABLED(CONFIG_FAT_FS)
 +      return sb->s_magic == MSDOS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14220,7 +14690,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_squashfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_SQUASHFS) || defined(CONFIG_SQUASHFS_MODULE)
++#if IS_ENABLED(CONFIG_SQUASHFS)
 +      return sb->s_magic == SQUASHFS_MAGIC;
 +#else
 +      return 0;
@@ -14229,7 +14699,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_btrfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_BTRFS_FS) || defined(CONFIG_BTRFS_FS_MODULE)
++#if IS_ENABLED(CONFIG_BTRFS_FS)
 +      return sb->s_magic == BTRFS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14238,7 +14708,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_xenfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_XENFS) || defined(CONFIG_XENFS_MODULE)
++#if IS_ENABLED(CONFIG_XENFS)
 +      return sb->s_magic == XENFS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14256,7 +14726,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_nilfs(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_NILFS) || defined(CONFIG_NILFS_MODULE)
++#if IS_ENABLED(CONFIG_NILFS)
 +      return sb->s_magic == NILFS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14265,7 +14735,7 @@ diff -urN /usr/share/empty/fs/aufs/fstype.h linux/fs/aufs/fstype.h
 +
 +static inline int au_test_hfsplus(struct super_block *sb __maybe_unused)
 +{
-+#if defined(CONFIG_HFSPLUS_FS) || defined(CONFIG_HFSPLUS_FS_MODULE)
++#if IS_ENABLED(CONFIG_HFSPLUS_FS)
 +      return sb->s_magic == HFSPLUS_SUPER_MAGIC;
 +#else
 +      return 0;
@@ -14426,10 +14896,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  2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,288 @@
++++ linux/fs/aufs/hfsnotify.c  2017-07-31 10:27:18.853311720 +0200
+@@ -0,0 +1,289 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -14461,7 +14931,7 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +{
 +      struct au_hnotify *hn = container_of(mark, struct au_hnotify,
 +                                           hn_mark);
-+      AuDbg("here\n");
++      /* AuDbg("here\n"); */
 +      au_cache_free_hnotify(hn);
 +      smp_mb__before_atomic();
 +      if (atomic64_dec_and_test(&au_hfsn_ifree))
@@ -14484,17 +14954,15 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +      AuDebugOn(!br->br_hfsn);
 +
 +      mark = &hn->hn_mark;
-+      fsnotify_init_mark(mark, au_hfsn_free_mark);
++      fsnotify_init_mark(mark, br->br_hfsn->hfsn_group);
 +      mark->mask = AuHfsnMask;
 +      /*
 +       * by udba rename or rmdir, aufs assign a new inode to the known
 +       * h_inode, so specify 1 to allow dups.
 +       */
 +      lockdep_off();
-+      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);
++      err = fsnotify_add_mark(mark, hinode->hi_inode, /*mnt*/NULL,
++                              /*allow_dups*/1);
 +      lockdep_on();
 +
 +      return err;
@@ -14516,6 +14984,7 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +      spin_unlock(&mark->lock);
 +      lockdep_off();
 +      fsnotify_destroy_mark(mark, group);
++      fsnotify_put_mark(mark);
 +      fsnotify_put_group(group);
 +      lockdep_on();
 +
@@ -14586,7 +15055,7 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +{
 +      struct au_br_hfsnotify *hfsn = group->private;
 +
-+      AuDbg("here\n");
++      /* AuDbg("here\n"); */
 +      kfree(hfsn);
 +}
 +
@@ -14594,8 +15063,9 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +                              struct inode *inode,
 +                              struct fsnotify_mark *inode_mark,
 +                              struct fsnotify_mark *vfsmount_mark,
-+                              u32 mask, void *data, int data_type,
-+                              const unsigned char *file_name, u32 cookie)
++                              u32 mask, const void *data, int data_type,
++                              const unsigned char *file_name, u32 cookie,
++                              struct fsnotify_iter_info *iter_info)
 +{
 +      int err;
 +      struct au_hnotify *hnotify;
@@ -14634,7 +15104,8 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +
 +static struct fsnotify_ops au_hfsn_ops = {
 +      .handle_event           = au_hfsn_handle_event,
-+      .free_group_priv        = au_hfsn_free_group
++      .free_group_priv        = au_hfsn_free_group,
++      .free_mark              = au_hfsn_free_mark
 +};
 +
 +/* ---------------------------------------------------------------------- */
@@ -14718,10 +15189,10 @@ diff -urN /usr/share/empty/fs/aufs/hfsnotify.c linux/fs/aufs/hfsnotify.c
 +};
 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    2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/hfsplus.c    2017-07-29 12:14:25.903042072 +0200
 @@ -0,0 +1,56 @@
 +/*
-+ * Copyright (C) 2010-2015 Junjiro R. Okajima
++ * Copyright (C) 2010-2017 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
@@ -14778,10 +15249,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    2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,710 @@
++++ linux/fs/aufs/hnotify.c    2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,711 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -14855,17 +15326,17 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +
 +void au_hn_reset(struct inode *inode, unsigned int flags)
 +{
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct inode *hi;
 +      struct dentry *iwhdentry;
 +
-+      bend = au_ibend(inode);
-+      for (bindex = au_ibstart(inode); bindex <= bend; bindex++) {
++      bbot = au_ibbot(inode);
++      for (bindex = au_ibtop(inode); bindex <= bbot; bindex++) {
 +              hi = au_h_iptr(inode, bindex);
 +              if (!hi)
 +                      continue;
 +
-+              /* mutex_lock_nested(&hi->i_mutex, AuLsc_I_CHILD); */
++              /* inode_lock_nested(hi, AuLsc_I_CHILD); */
 +              iwhdentry = au_hi_wh(inode, bindex);
 +              if (iwhdentry)
 +                      dget(iwhdentry);
@@ -14875,7 +15346,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +                            flags & ~AuHi_XINO);
 +              iput(hi);
 +              dput(iwhdentry);
-+              /* mutex_unlock(&hi->i_mutex); */
++              /* inode_unlock(hi); */
 +      }
 +}
 +
@@ -14884,7 +15355,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +static int hn_xino(struct inode *inode, struct inode *h_inode)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bend, bfound, bstart;
++      aufs_bindex_t bindex, bbot, bfound, btop;
 +      struct inode *h_i;
 +
 +      err = 0;
@@ -14894,15 +15365,15 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +      }
 +
 +      bfound = -1;
-+      bend = au_ibend(inode);
-+      bstart = au_ibstart(inode);
++      bbot = au_ibbot(inode);
++      btop = au_ibtop(inode);
 +#if 0 /* reserved for future use */
-+      if (bindex == bend) {
++      if (bindex == bbot) {
 +              /* keep this ino in rename case */
 +              goto out;
 +      }
 +#endif
-+      for (bindex = bstart; bindex <= bend; bindex++)
++      for (bindex = btop; bindex <= bbot; bindex++)
 +              if (au_h_iptr(inode, bindex) == h_inode) {
 +                      bfound = bindex;
 +                      break;
@@ -14910,7 +15381,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +      if (bfound < 0)
 +              goto out;
 +
-+      for (bindex = bstart; bindex <= bend; bindex++) {
++      for (bindex = btop; bindex <= bbot; bindex++) {
 +              h_i = au_h_iptr(inode, bindex);
 +              if (!h_i)
 +                      continue;
@@ -15104,11 +15575,11 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +      if (au_ftest_hnjob(a->flags, TRYXINO0)
 +          && a->inode
 +          && a->h_inode) {
-+              mutex_lock_nested(&a->h_inode->i_mutex, AuLsc_I_CHILD);
++              vfsub_inode_lock_shared_nested(a->h_inode, AuLsc_I_CHILD);
 +              if (!a->h_inode->i_nlink
 +                  && !(a->h_inode->i_state & I_LINKABLE))
 +                      hn_xino(a->inode, a->h_inode); /* ignore this error */
-+              mutex_unlock(&a->h_inode->i_mutex);
++              inode_unlock_shared(a->h_inode);
 +      }
 +
 +      /* make the generation obsolete */
@@ -15215,7 +15686,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +{
 +      struct au_hnotify_args *a = _args;
 +      struct super_block *sb;
-+      aufs_bindex_t bindex, bend, bfound;
++      aufs_bindex_t bindex, bbot, bfound;
 +      unsigned char xino, try_iput;
 +      int err;
 +      struct inode *inode;
@@ -15246,8 +15717,8 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +
 +      ii_read_lock_parent(a->dir);
 +      bfound = -1;
-+      bend = au_ibend(a->dir);
-+      for (bindex = au_ibstart(a->dir); bindex <= bend; bindex++)
++      bbot = au_ibbot(a->dir);
++      for (bindex = au_ibtop(a->dir); bindex <= bbot; bindex++)
 +              if (au_h_iptr(a->dir, bindex) == a->h_dir) {
 +                      bfound = bindex;
 +                      break;
@@ -15275,7 +15746,7 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +              || au_ftest_hnjob(a->flags[AuHn_CHILD], GEN))) {
 +              inode = lookup_wlock_by_ino(sb, bfound, h_ino);
 +              try_iput = 1;
-+          }
++      }
 +
 +      args.flags = a->flags[AuHn_CHILD];
 +      args.dentry = dentry;
@@ -15461,8 +15932,8 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +
 +static void au_hn_destroy_cache(void)
 +{
-+      kmem_cache_destroy(au_cachep[AuCache_HNOTIFY]);
-+      au_cachep[AuCache_HNOTIFY] = NULL;
++      kmem_cache_destroy(au_cache[AuCache_HNOTIFY]);
++      au_cache[AuCache_HNOTIFY] = NULL;
 +}
 +
 +int __init au_hnotify_init(void)
@@ -15470,8 +15941,8 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +      int err;
 +
 +      err = -ENOMEM;
-+      au_cachep[AuCache_HNOTIFY] = AuCache(au_hnotify);
-+      if (au_cachep[AuCache_HNOTIFY]) {
++      au_cache[AuCache_HNOTIFY] = AuCache(au_hnotify);
++      if (au_cache[AuCache_HNOTIFY]) {
 +              err = 0;
 +              if (au_hnotify_op.init)
 +                      err = au_hnotify_op.init();
@@ -15486,16 +15957,17 @@ diff -urN /usr/share/empty/fs/aufs/hnotify.c linux/fs/aufs/hnotify.c
 +{
 +      if (au_hnotify_op.fin)
 +              au_hnotify_op.fin();
++
 +      /* cf. au_cache_fin() */
-+      if (au_cachep[AuCache_HNOTIFY])
++      if (au_cache[AuCache_HNOTIFY])
 +              au_hn_destroy_cache();
 +}
 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      2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,277 @@
++++ linux/fs/aufs/iinfo.c      2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,285 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -15520,10 +15992,12 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +struct inode *au_h_iptr(struct inode *inode, aufs_bindex_t bindex)
 +{
 +      struct inode *h_inode;
++      struct au_hinode *hinode;
 +
 +      IiMustAnyLock(inode);
 +
-+      h_inode = au_ii(inode)->ii_hinode[0 + bindex].hi_inode;
++      hinode = au_hinode(au_ii(inode), bindex);
++      h_inode = hinode->hi_inode;
 +      AuDebugOn(h_inode && atomic_read(&h_inode->i_count) <= 0);
 +      return h_inode;
 +}
@@ -15558,7 +16032,7 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +
 +      IiMustWriteLock(inode);
 +
-+      hinode = iinfo->ii_hinode + bindex;
++      hinode = au_hinode(iinfo, bindex);
 +      hi = hinode->hi_inode;
 +      AuDebugOn(h_inode && atomic_read(&h_inode->i_count) <= 0);
 +
@@ -15573,7 +16047,7 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +              AuDebugOn(inode->i_mode
 +                        && (h_inode->i_mode & S_IFMT)
 +                        != (inode->i_mode & S_IFMT));
-+              if (bindex == iinfo->ii_bstart)
++              if (bindex == iinfo->ii_btop)
 +                      au_cpup_igen(inode, h_inode);
 +              br = au_sbr(sb, bindex);
 +              hinode->hi_id = br->br_id;
@@ -15600,7 +16074,7 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +
 +      IiMustWriteLock(inode);
 +
-+      hinode = au_ii(inode)->ii_hinode + bindex;
++      hinode = au_hinode(au_ii(inode), bindex);
 +      AuDebugOn(hinode->hi_whdentry);
 +      hinode->hi_whdentry = h_wh;
 +}
@@ -15614,33 +16088,31 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +      sigen = au_sigen(inode->i_sb);
 +      iinfo = au_ii(inode);
 +      iigen = &iinfo->ii_generation;
-+      spin_lock(&iinfo->ii_genspin);
++      spin_lock(&iigen->ig_spin);
 +      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);
++      spin_unlock(&iigen->ig_spin);
 +}
 +
 +/* it may be called at remount time, too */
 +void au_update_ibrange(struct inode *inode, int do_put_zero)
 +{
 +      struct au_iinfo *iinfo;
-+      aufs_bindex_t bindex, bend;
-+
-+      iinfo = au_ii(inode);
-+      if (!iinfo)
-+              return;
++      aufs_bindex_t bindex, bbot;
 +
++      AuDebugOn(au_is_bad_inode(inode));
 +      IiMustWriteLock(inode);
 +
-+      if (do_put_zero && iinfo->ii_bstart >= 0) {
-+              for (bindex = iinfo->ii_bstart; bindex <= iinfo->ii_bend;
++      iinfo = au_ii(inode);
++      if (do_put_zero && iinfo->ii_btop >= 0) {
++              for (bindex = iinfo->ii_btop; bindex <= iinfo->ii_bbot;
 +                   bindex++) {
 +                      struct inode *h_i;
 +
-+                      h_i = iinfo->ii_hinode[0 + bindex].hi_inode;
++                      h_i = au_hinode(iinfo, bindex)->hi_inode;
 +                      if (h_i
 +                          && !h_i->i_nlink
 +                          && !(h_i->i_state & I_LINKABLE))
@@ -15648,21 +16120,21 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +              }
 +      }
 +
-+      iinfo->ii_bstart = -1;
-+      iinfo->ii_bend = -1;
-+      bend = au_sbend(inode->i_sb);
-+      for (bindex = 0; bindex <= bend; bindex++)
-+              if (iinfo->ii_hinode[0 + bindex].hi_inode) {
-+                      iinfo->ii_bstart = bindex;
++      iinfo->ii_btop = -1;
++      iinfo->ii_bbot = -1;
++      bbot = au_sbbot(inode->i_sb);
++      for (bindex = 0; bindex <= bbot; bindex++)
++              if (au_hinode(iinfo, bindex)->hi_inode) {
++                      iinfo->ii_btop = bindex;
 +                      break;
 +              }
-+      if (iinfo->ii_bstart >= 0)
-+              for (bindex = bend; bindex >= iinfo->ii_bstart; bindex--)
-+                      if (iinfo->ii_hinode[0 + bindex].hi_inode) {
-+                              iinfo->ii_bend = bindex;
++      if (iinfo->ii_btop >= 0)
++              for (bindex = bbot; bindex >= iinfo->ii_btop; bindex--)
++                      if (au_hinode(iinfo, bindex)->hi_inode) {
++                              iinfo->ii_bbot = bindex;
 +                              break;
 +                      }
-+      AuDebugOn(iinfo->ii_bstart > iinfo->ii_bend);
++      AuDebugOn(iinfo->ii_btop > iinfo->ii_bbot);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -15671,54 +16143,65 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +{
 +      struct au_icntnr *c = _c;
 +      struct au_iinfo *iinfo = &c->iinfo;
-+      static struct lock_class_key aufs_ii;
 +
-+      spin_lock_init(&iinfo->ii_genspin);
++      spin_lock_init(&iinfo->ii_generation.ig_spin);
 +      au_rw_init(&iinfo->ii_rwsem);
-+      au_rw_class(&iinfo->ii_rwsem, &aufs_ii);
 +      inode_init_once(&c->vfs_inode);
 +}
 +
++void au_hinode_init(struct au_hinode *hinode)
++{
++      hinode->hi_inode = NULL;
++      hinode->hi_id = -1;
++      au_hn_init(hinode);
++      hinode->hi_whdentry = NULL;
++}
++
 +int au_iinfo_init(struct inode *inode)
 +{
 +      struct au_iinfo *iinfo;
 +      struct super_block *sb;
++      struct au_hinode *hi;
 +      int nbr, i;
 +
 +      sb = inode->i_sb;
 +      iinfo = &(container_of(inode, struct au_icntnr, vfs_inode)->iinfo);
-+      nbr = au_sbend(sb) + 1;
++      nbr = au_sbbot(sb) + 1;
 +      if (unlikely(nbr <= 0))
 +              nbr = 1;
-+      iinfo->ii_hinode = kcalloc(nbr, sizeof(*iinfo->ii_hinode), GFP_NOFS);
-+      if (iinfo->ii_hinode) {
++      hi = kmalloc_array(nbr, sizeof(*iinfo->ii_hinode), GFP_NOFS);
++      if (hi) {
 +              au_ninodes_inc(sb);
-+              for (i = 0; i < nbr; i++)
-+                      iinfo->ii_hinode[i].hi_id = -1;
++
++              iinfo->ii_hinode = hi;
++              for (i = 0; i < nbr; i++, hi++)
++                      au_hinode_init(hi);
 +
 +              iinfo->ii_generation.ig_generation = au_sigen(sb);
-+              iinfo->ii_bstart = -1;
-+              iinfo->ii_bend = -1;
++              iinfo->ii_btop = -1;
++              iinfo->ii_bbot = -1;
 +              iinfo->ii_vdir = NULL;
 +              return 0;
 +      }
 +      return -ENOMEM;
 +}
 +
-+int au_ii_realloc(struct au_iinfo *iinfo, int nbr)
++int au_hinode_realloc(struct au_iinfo *iinfo, int nbr, int may_shrink)
 +{
-+      int err, sz;
++      int err, i;
 +      struct au_hinode *hip;
 +
 +      AuRwMustWriteLock(&iinfo->ii_rwsem);
 +
 +      err = -ENOMEM;
-+      sz = sizeof(*hip) * (iinfo->ii_bend + 1);
-+      if (!sz)
-+              sz = sizeof(*hip);
-+      hip = au_kzrealloc(iinfo->ii_hinode, sz, sizeof(*hip) * nbr, GFP_NOFS);
++      hip = au_krealloc(iinfo->ii_hinode, sizeof(*hip) * nbr, GFP_NOFS,
++                        may_shrink);
 +      if (hip) {
 +              iinfo->ii_hinode = hip;
++              i = iinfo->ii_bbot + 1;
++              hip += i;
++              for (; i < nbr; i++, hip++)
++                      au_hinode_init(hip);
 +              err = 0;
 +      }
 +
@@ -15730,13 +16213,10 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +      struct au_iinfo *iinfo;
 +      struct au_hinode *hi;
 +      struct super_block *sb;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      const unsigned char unlinked = !inode->i_nlink;
 +
-+      iinfo = au_ii(inode);
-+      /* bad_inode case */
-+      if (!iinfo)
-+              return;
++      AuDebugOn(au_is_bad_inode(inode));
 +
 +      sb = inode->i_sb;
 +      au_ninodes_dec(sb);
@@ -15754,29 +16234,29 @@ diff -urN /usr/share/empty/fs/aufs/iinfo.c linux/fs/aufs/iinfo.c
 +              lockdep_on();
 +      }
 +
++      iinfo = au_ii(inode);
 +      if (iinfo->ii_vdir)
 +              au_vdir_free(iinfo->ii_vdir);
 +
-+      bindex = iinfo->ii_bstart;
++      bindex = iinfo->ii_btop;
 +      if (bindex >= 0) {
-+              hi = iinfo->ii_hinode + bindex;
-+              bend = iinfo->ii_bend;
-+              while (bindex++ <= bend) {
++              hi = au_hinode(iinfo, bindex);
++              bbot = iinfo->ii_bbot;
++              while (bindex++ <= bbot) {
 +                      if (hi->hi_inode)
 +                              au_hiput(hi);
 +                      hi++;
 +              }
 +      }
 +      kfree(iinfo->ii_hinode);
-+      iinfo->ii_hinode = NULL;
 +      AuRwDestroy(&iinfo->ii_rwsem);
 +}
 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      2015-12-10 17:59:16.836166410 +0100
-@@ -0,0 +1,528 @@
++++ linux/fs/aufs/inode.c      2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,527 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -15817,26 +16297,28 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +
 +static int au_ii_refresh(struct inode *inode, int *update)
 +{
-+      int err, e;
++      int err, e, nbr;
 +      umode_t type;
 +      aufs_bindex_t bindex, new_bindex;
 +      struct super_block *sb;
 +      struct au_iinfo *iinfo;
 +      struct au_hinode *p, *q, tmp;
 +
++      AuDebugOn(au_is_bad_inode(inode));
 +      IiMustWriteLock(inode);
 +
 +      *update = 0;
 +      sb = inode->i_sb;
++      nbr = au_sbbot(sb) + 1;
 +      type = inode->i_mode & S_IFMT;
 +      iinfo = au_ii(inode);
-+      err = au_ii_realloc(iinfo, au_sbend(sb) + 1);
++      err = au_hinode_realloc(iinfo, nbr, /*may_shrink*/0);
 +      if (unlikely(err))
 +              goto out;
 +
-+      AuDebugOn(iinfo->ii_bstart < 0);
-+      p = iinfo->ii_hinode + iinfo->ii_bstart;
-+      for (bindex = iinfo->ii_bstart; bindex <= iinfo->ii_bend;
++      AuDebugOn(iinfo->ii_btop < 0);
++      p = au_hinode(iinfo, iinfo->ii_btop);
++      for (bindex = iinfo->ii_btop; bindex <= iinfo->ii_bbot;
 +           bindex++, p++) {
 +              if (!p->hi_inode)
 +                      continue;
@@ -15853,12 +16335,12 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +                      continue;
 +              }
 +
-+              if (new_bindex < iinfo->ii_bstart)
-+                      iinfo->ii_bstart = new_bindex;
-+              if (iinfo->ii_bend < new_bindex)
-+                      iinfo->ii_bend = new_bindex;
++              if (new_bindex < iinfo->ii_btop)
++                      iinfo->ii_btop = new_bindex;
++              if (iinfo->ii_bbot < new_bindex)
++                      iinfo->ii_bbot = new_bindex;
 +              /* swap two lower inode, and loop again */
-+              q = iinfo->ii_hinode + new_bindex;
++              q = au_hinode(iinfo, new_bindex);
 +              tmp = *q;
 +              *q = *p;
 +              *p = tmp;
@@ -15868,6 +16350,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +              }
 +      }
 +      au_update_ibrange(inode, /*do_put_zero*/0);
++      au_hinode_realloc(iinfo, nbr, /*may_shrink*/1); /* harmless if err */
 +      e = au_dy_irefresh(inode);
 +      if (unlikely(e && !err))
 +              err = e;
@@ -15920,7 +16403,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +      int err, e, update;
 +      unsigned int flags;
 +      umode_t mode;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      unsigned char isdir;
 +      struct au_hinode *p;
 +      struct au_iinfo *iinfo;
@@ -15931,12 +16414,12 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +
 +      update = 0;
 +      iinfo = au_ii(inode);
-+      p = iinfo->ii_hinode + iinfo->ii_bstart;
++      p = au_hinode(iinfo, iinfo->ii_btop);
 +      mode = (inode->i_mode & S_IFMT);
 +      isdir = S_ISDIR(mode);
 +      flags = au_hi_flags(inode, isdir);
-+      bend = au_dbend(dentry);
-+      for (bindex = au_dbstart(dentry); bindex <= bend; bindex++) {
++      bbot = au_dbbot(dentry);
++      for (bindex = au_dbtop(dentry); bindex <= bbot; bindex++) {
 +              struct inode *h_i, *h_inode;
 +              struct dentry *h_d;
 +
@@ -15946,7 +16429,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +
 +              h_inode = d_inode(h_d);
 +              AuDebugOn(mode != (h_inode->i_mode & S_IFMT));
-+              if (iinfo->ii_bstart <= bindex && bindex <= iinfo->ii_bend) {
++              if (iinfo->ii_btop <= bindex && bindex <= iinfo->ii_bbot) {
 +                      h_i = au_h_iptr(inode, bindex);
 +                      if (h_i) {
 +                              if (h_i == h_inode)
@@ -15955,10 +16438,10 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +                              break;
 +                      }
 +              }
-+              if (bindex < iinfo->ii_bstart)
-+                      iinfo->ii_bstart = bindex;
-+              if (iinfo->ii_bend < bindex)
-+                      iinfo->ii_bend = bindex;
++              if (bindex < iinfo->ii_btop)
++                      iinfo->ii_btop = bindex;
++              if (iinfo->ii_bbot < bindex)
++                      iinfo->ii_bbot = bindex;
 +              au_set_h_iptr(inode, bindex, au_igrab(h_inode), flags);
 +              update = 1;
 +      }
@@ -15979,7 +16462,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +      int err;
 +      unsigned int flags;
 +      umode_t mode;
-+      aufs_bindex_t bindex, bstart, btail;
++      aufs_bindex_t bindex, btop, btail;
 +      unsigned char isdir;
 +      struct dentry *h_dentry;
 +      struct inode *h_inode;
@@ -15991,8 +16474,8 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +      err = 0;
 +      isdir = 0;
 +      iop = au_sbi(inode->i_sb)->si_iop_array;
-+      bstart = au_dbstart(dentry);
-+      h_dentry = au_h_dptr(dentry, bstart);
++      btop = au_dbtop(dentry);
++      h_dentry = au_h_dptr(dentry, btop);
 +      h_inode = d_inode(h_dentry);
 +      mode = h_inode->i_mode;
 +      switch (mode & S_IFMT) {
@@ -16000,7 +16483,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +              btail = au_dbtail(dentry);
 +              inode->i_op = iop + AuIop_OTHER;
 +              inode->i_fop = &aufs_file_fop;
-+              err = au_dy_iaop(inode, bstart, h_inode);
++              err = au_dy_iaop(inode, btop, h_inode);
 +              if (unlikely(err))
 +                      goto out;
 +              break;
@@ -16036,9 +16519,9 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +          && !memcmp(dentry->d_name.name, AUFS_WH_PFX, AUFS_WH_PFX_LEN))
 +              au_fclr_hi(flags, HNOTIFY);
 +      iinfo = au_ii(inode);
-+      iinfo->ii_bstart = bstart;
-+      iinfo->ii_bend = btail;
-+      for (bindex = bstart; bindex <= btail; bindex++) {
++      iinfo->ii_btop = btop;
++      iinfo->ii_bbot = btail;
++      for (bindex = btop; bindex <= btail; bindex++) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (h_dentry)
 +                      au_set_h_iptr(inode, bindex,
@@ -16063,9 +16546,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;
++      unsigned int gen, igflags;
++      aufs_bindex_t bindex, bbot;
 +      struct inode *h_inode, *h_dinode;
 +      struct dentry *h_dentry;
 +
@@ -16080,18 +16562,18 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +
 +      err = 1;
 +      ii_write_lock_new_child(inode);
-+      h_dentry = au_h_dptr(dentry, au_dbstart(dentry));
++      h_dentry = au_h_dptr(dentry, au_dbtop(dentry));
 +      h_dinode = d_inode(h_dentry);
-+      bend = au_ibend(inode);
-+      for (bindex = au_ibstart(inode); bindex <= bend; bindex++) {
++      bbot = au_ibbot(inode);
++      for (bindex = au_ibtop(inode); bindex <= bbot; bindex++) {
 +              h_inode = au_h_iptr(inode, bindex);
 +              if (!h_inode || h_inode != h_dinode)
 +                      continue;
 +
 +              err = 0;
-+              gen = au_iigen(inode, &iigen);
++              gen = au_iigen(inode, &igflags);
 +              if (gen == au_digen(dentry)
-+                  && !au_ig_ftest(iigen.ig_flags, HALF_REFRESHED))
++                  && !au_ig_ftest(igflags, HALF_REFRESHED))
 +                      break;
 +
 +              /* fully refresh inode using dentry */
@@ -16110,32 +16592,34 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +int au_ino(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino,
 +         unsigned int d_type, ino_t *ino)
 +{
-+      int err;
-+      struct mutex *mtx;
++      int err, idx;
++      const int isnondir = d_type != DT_DIR;
 +
 +      /* prevent hardlinked inode number from race condition */
-+      mtx = NULL;
-+      if (d_type != DT_DIR) {
-+              mtx = &au_sbr(sb, bindex)->br_xino.xi_nondir_mtx;
-+              mutex_lock(mtx);
++      if (isnondir) {
++              err = au_xinondir_enter(sb, bindex, h_ino, &idx);
++              if (unlikely(err))
++                      goto out;
 +      }
++
 +      err = au_xino_read(sb, bindex, h_ino, ino);
 +      if (unlikely(err))
-+              goto out;
++              goto out_xinondir;
 +
 +      if (!*ino) {
 +              err = -EIO;
 +              *ino = au_xino_new_ino(sb);
 +              if (unlikely(!*ino))
-+                      goto out;
++                      goto out_xinondir;
 +              err = au_xino_write(sb, bindex, h_ino, *ino);
 +              if (unlikely(err))
-+                      goto out;
++                      goto out_xinondir;
 +      }
 +
++out_xinondir:
++      if (isnondir && idx >= 0)
++              au_xinondir_leave(sb, bindex, h_ino, idx);
 +out:
-+      if (mtx)
-+              mutex_unlock(mtx);
 +      return err;
 +}
 +
@@ -16146,38 +16630,39 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +      struct inode *inode, *h_inode;
 +      struct dentry *h_dentry;
 +      struct super_block *sb;
-+      struct mutex *mtx;
 +      ino_t h_ino, ino;
-+      int err;
-+      aufs_bindex_t bstart;
++      int err, idx, hlinked;
++      aufs_bindex_t btop;
 +
 +      sb = dentry->d_sb;
-+      bstart = au_dbstart(dentry);
-+      h_dentry = au_h_dptr(dentry, bstart);
++      btop = au_dbtop(dentry);
++      h_dentry = au_h_dptr(dentry, btop);
 +      h_inode = d_inode(h_dentry);
 +      h_ino = h_inode->i_ino;
++      hlinked = !d_is_dir(h_dentry) && h_inode->i_nlink > 1;
 +
++new_ino:
 +      /*
 +       * stop 'race'-ing between hardlinks under different
 +       * parents.
 +       */
-+      mtx = NULL;
-+      if (!d_is_dir(h_dentry))
-+              mtx = &au_sbr(sb, bstart)->br_xino.xi_nondir_mtx;
++      if (hlinked) {
++              err = au_xinondir_enter(sb, btop, h_ino, &idx);
++              inode = ERR_PTR(err);
++              if (unlikely(err))
++                      goto out;
++      }
 +
-+new_ino:
-+      if (mtx)
-+              mutex_lock(mtx);
-+      err = au_xino_read(sb, bstart, h_ino, &ino);
++      err = au_xino_read(sb, btop, h_ino, &ino);
 +      inode = ERR_PTR(err);
 +      if (unlikely(err))
-+              goto out;
++              goto out_xinondir;
 +
 +      if (!ino) {
 +              ino = au_xino_new_ino(sb);
 +              if (unlikely(!ino)) {
 +                      inode = ERR_PTR(-EIO);
-+                      goto out;
++                      goto out_xinondir;
 +              }
 +      }
 +
@@ -16185,26 +16670,15 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +      inode = au_iget_locked(sb, ino);
 +      err = PTR_ERR(inode);
 +      if (IS_ERR(inode))
-+              goto out;
++              goto out_xinondir;
 +
 +      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(d_is_symlink(h_dentry)))
-+                      au_rw_class(&au_ii(inode)->ii_rwsem,
-+                                  au_lc_key + AuLcSymlink_IIINFO);
-+              else if (unlikely(d_is_dir(h_dentry)))
-+                      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) {
 +                      unlock_new_inode(inode);
-+                      goto out; /* success */
++                      goto out_xinondir; /* success */
 +              }
 +
 +              /*
@@ -16215,7 +16689,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +              atomic_inc(&inode->i_count);
 +              iget_failed(inode);
 +              ii_write_unlock(inode);
-+              au_xino_write(sb, bstart, h_ino, /*ino*/0);
++              au_xino_write(sb, btop, h_ino, /*ino*/0);
 +              /* ignore this error */
 +              goto out_iput;
 +      } else if (!must_new && !IS_DEADDIR(inode) && inode->i_nlink) {
@@ -16223,41 +16697,46 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +               * horrible race condition between lookup, readdir and copyup
 +               * (or something).
 +               */
-+              if (mtx)
-+                      mutex_unlock(mtx);
++              if (hlinked && idx >= 0)
++                      au_xinondir_leave(sb, btop, h_ino, idx);
 +              err = reval_inode(inode, dentry);
 +              if (unlikely(err < 0)) {
-+                      mtx = NULL;
++                      hlinked = 0;
 +                      goto out_iput;
 +              }
-+
-+              if (!err) {
-+                      mtx = NULL;
++              if (!err)
 +                      goto out; /* success */
-+              } else if (mtx)
-+                      mutex_lock(mtx);
++              else if (hlinked && idx >= 0) {
++                      err = au_xinondir_enter(sb, btop, h_ino, &idx);
++                      if (unlikely(err)) {
++                              iput(inode);
++                              inode = ERR_PTR(err);
++                              goto out;
++                      }
++              }
 +      }
 +
 +      if (unlikely(au_test_fs_unique_ino(h_inode)))
 +              AuWarn1("Warning: Un-notified UDBA or repeatedly renamed dir,"
 +                      " b%d, %s, %pd, hi%lu, i%lu.\n",
-+                      bstart, au_sbtype(h_dentry->d_sb), dentry,
++                      btop, au_sbtype(h_dentry->d_sb), dentry,
 +                      (unsigned long)h_ino, (unsigned long)ino);
 +      ino = 0;
-+      err = au_xino_write(sb, bstart, h_ino, /*ino*/0);
++      err = au_xino_write(sb, btop, h_ino, /*ino*/0);
 +      if (!err) {
 +              iput(inode);
-+              if (mtx)
-+                      mutex_unlock(mtx);
++              if (hlinked && idx >= 0)
++                      au_xinondir_leave(sb, btop, h_ino, idx);
 +              goto new_ino;
 +      }
 +
 +out_iput:
 +      iput(inode);
 +      inode = ERR_PTR(err);
++out_xinondir:
++      if (hlinked && idx >= 0)
++              au_xinondir_leave(sb, btop, h_ino, idx);
 +out:
-+      if (mtx)
-+              mutex_unlock(mtx);
 +      return inode;
 +}
 +
@@ -16274,8 +16753,8 @@ diff -urN /usr/share/empty/fs/aufs/inode.c linux/fs/aufs/inode.c
 +      /* pseudo-link after flushed may happen out of bounds */
 +      if (!err
 +          && inode
-+          && au_ibstart(inode) <= bindex
-+          && bindex <= au_ibend(inode)) {
++          && au_ibtop(inode) <= bindex
++          && bindex <= au_ibbot(inode)) {
 +              /*
 +               * permission check is unnecessary since vfsub routine
 +               * will be called later
@@ -16305,10 +16784,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      2015-12-10 17:59:16.836166410 +0100
-@@ -0,0 +1,681 @@
++++ linux/fs/aufs/inode.h      2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,694 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -16335,6 +16814,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +
 +#include <linux/fsnotify.h>
 +#include "rwsem.h"
++#include "vfsub.h"
 +
 +struct vfsmount;
 +
@@ -16344,7 +16824,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +      /* never use fsnotify_add_vfsmount_mark() */
 +      struct fsnotify_mark            hn_mark;
 +#endif
-+      struct inode                    *hn_aufs_inode; /* no get/put */
++      struct inode            *hn_aufs_inode; /* no get/put */
 +#endif
 +} ____cacheline_aligned_in_smp;
 +
@@ -16368,17 +16848,17 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +      do { (flags) &= ~AuIG_##name; } while (0)
 +
 +struct au_iigen {
++      spinlock_t      ig_spin;
 +      __u32           ig_generation, ig_flags;
 +};
 +
 +struct au_vdir;
 +struct au_iinfo {
-+      spinlock_t              ii_genspin;
 +      struct au_iigen         ii_generation;
 +      struct super_block      *ii_hsb1;       /* no get/put */
 +
 +      struct au_rwsem         ii_rwsem;
-+      aufs_bindex_t           ii_bstart, ii_bend;
++      aufs_bindex_t           ii_btop, ii_bbot;
 +      __u32                   ii_higen;
 +      struct au_hinode        *ii_hinode;
 +      struct au_vdir          *ii_vdir;
@@ -16387,6 +16867,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +struct au_icntnr {
 +      struct au_iinfo iinfo;
 +      struct inode vfs_inode;
++      struct hlist_node plink;
 +} ____cacheline_aligned_in_smp;
 +
 +/* au_pin flags */
@@ -16419,7 +16900,6 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +void au_pin_hdir_unlock(struct au_pin *p);
 +int au_pin_hdir_lock(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);
 +
@@ -16427,12 +16907,8 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +
 +static inline struct au_iinfo *au_ii(struct inode *inode)
 +{
-+      struct au_iinfo *iinfo;
-+
-+      iinfo = &(container_of(inode, struct au_icntnr, vfs_inode)->iinfo);
-+      if (iinfo->ii_hinode)
-+              return iinfo;
-+      return NULL; /* debugging bad_inode case */
++      BUG_ON(is_bad_inode(inode));
++      return &(container_of(inode, struct au_icntnr, vfs_inode)->iinfo);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -16517,7 +16993,8 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +int au_pin_and_icpup(struct dentry *dentry, struct iattr *ia,
 +                   struct au_icpup_args *a);
 +
-+int au_h_path_getattr(struct dentry *dentry, int force, struct path *h_path);
++int au_h_path_getattr(struct dentry *dentry, int force, struct path *h_path,
++                    int locked);
 +
 +/* i_op_add.c */
 +int au_may_add(struct dentry *dentry, aufs_bindex_t bindex,
@@ -16545,7 +17022,8 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +/* i_op_ren.c */
 +int au_wbr(struct dentry *dentry, aufs_bindex_t btgt);
 +int aufs_rename(struct inode *src_dir, struct dentry *src_dentry,
-+              struct inode *dir, struct dentry *dentry);
++              struct inode *dir, struct dentry *dentry,
++              unsigned int flags);
 +
 +/* iinfo.c */
 +struct inode *au_h_iptr(struct inode *inode, aufs_bindex_t bindex);
@@ -16575,9 +17053,10 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +void au_update_ibrange(struct inode *inode, int do_put_zero);
 +
 +void au_icntnr_init_once(void *_c);
++void au_hinode_init(struct au_hinode *hinode);
 +int au_iinfo_init(struct inode *inode);
 +void au_iinfo_fin(struct inode *inode);
-+int au_ii_realloc(struct au_iinfo *iinfo, int nbr);
++int au_hinode_realloc(struct au_iinfo *iinfo, int nbr, int may_shrink);
 +
 +#ifdef CONFIG_PROC_FS
 +/* plink.c */
@@ -16617,17 +17096,11 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +int au_cpup_xattr(struct dentry *h_dst, struct dentry *h_src, int ignore_flags,
 +                unsigned int verbose);
 +ssize_t aufs_listxattr(struct dentry *dentry, char *list, size_t size);
-+ssize_t aufs_getxattr(struct dentry *dentry, const char *name, void *value,
-+                    size_t size);
-+int aufs_setxattr(struct dentry *dentry, const char *name, const void *value,
-+                size_t size, int flags);
-+int aufs_removexattr(struct dentry *dentry, const char *name);
-+
-+/* void au_xattr_init(struct super_block *sb); */
++void au_xattr_init(struct super_block *sb);
 +#else
 +AuStubInt0(au_cpup_xattr, struct dentry *h_dst, struct dentry *h_src,
 +         int ignore_flags, unsigned int verbose);
-+/* AuStubVoid(au_xattr_init, struct super_block *sb); */
++AuStubVoid(au_xattr_init, struct super_block *sb);
 +#endif
 +
 +#ifdef CONFIG_FS_POSIX_ACL
@@ -16638,11 +17111,10 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +#if IS_ENABLED(CONFIG_AUFS_XATTR) || IS_ENABLED(CONFIG_FS_POSIX_ACL)
 +enum {
 +      AU_XATTR_SET,
-+      AU_XATTR_REMOVE,
 +      AU_ACL_SET
 +};
 +
-+struct au_srxattr {
++struct au_sxattr {
 +      int type;
 +      union {
 +              struct {
@@ -16652,15 +17124,13 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +                      int             flags;
 +              } set;
 +              struct {
-+                      const char      *name;
-+              } remove;
-+              struct {
 +                      struct posix_acl *acl;
 +                      int             type;
 +              } acl_set;
 +      } u;
 +};
-+ssize_t au_srxattr(struct dentry *dentry, struct au_srxattr *arg);
++ssize_t au_sxattr(struct dentry *dentry, struct inode *inode,
++                struct au_sxattr *arg);
 +#endif
 +
 +/* ---------------------------------------------------------------------- */
@@ -16731,17 +17201,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, struct au_iigen *iigen)
++static inline unsigned int au_iigen(struct inode *inode, unsigned int *igflags)
 +{
 +      unsigned int gen;
 +      struct au_iinfo *iinfo;
++      struct au_iigen *iigen;
 +
 +      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);
++      iigen = &iinfo->ii_generation;
++      spin_lock(&iigen->ig_spin);
++      if (igflags)
++              *igflags = iigen->ig_flags;
++      gen = iigen->ig_generation;
++      spin_unlock(&iigen->ig_spin);
 +
 +      return gen;
 +}
@@ -16761,11 +17233,13 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +static inline void au_iigen_dec(struct inode *inode)
 +{
 +      struct au_iinfo *iinfo;
++      struct au_iigen *iigen;
 +
 +      iinfo = au_ii(inode);
-+      spin_lock(&iinfo->ii_genspin);
-+      iinfo->ii_generation.ig_generation--;
-+      spin_unlock(&iinfo->ii_genspin);
++      iigen = &iinfo->ii_generation;
++      spin_lock(&iigen->ig_spin);
++      iigen->ig_generation--;
++      spin_unlock(&iigen->ig_spin);
 +}
 +
 +static inline int au_iigen_test(struct inode *inode, unsigned int sigen)
@@ -16781,23 +17255,34 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +
 +/* ---------------------------------------------------------------------- */
 +
++static inline struct au_hinode *au_hinode(struct au_iinfo *iinfo,
++                                        aufs_bindex_t bindex)
++{
++      return iinfo->ii_hinode + bindex;
++}
++
++static inline int au_is_bad_inode(struct inode *inode)
++{
++      return !!(is_bad_inode(inode) || !au_hinode(au_ii(inode), 0));
++}
++
 +static inline aufs_bindex_t au_ii_br_id(struct inode *inode,
 +                                      aufs_bindex_t bindex)
 +{
 +      IiMustAnyLock(inode);
-+      return au_ii(inode)->ii_hinode[0 + bindex].hi_id;
++      return au_hinode(au_ii(inode), bindex)->hi_id;
 +}
 +
-+static inline aufs_bindex_t au_ibstart(struct inode *inode)
++static inline aufs_bindex_t au_ibtop(struct inode *inode)
 +{
 +      IiMustAnyLock(inode);
-+      return au_ii(inode)->ii_bstart;
++      return au_ii(inode)->ii_btop;
 +}
 +
-+static inline aufs_bindex_t au_ibend(struct inode *inode)
++static inline aufs_bindex_t au_ibbot(struct inode *inode)
 +{
 +      IiMustAnyLock(inode);
-+      return au_ii(inode)->ii_bend;
++      return au_ii(inode)->ii_bbot;
 +}
 +
 +static inline struct au_vdir *au_ivdir(struct inode *inode)
@@ -16809,19 +17294,19 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +static inline struct dentry *au_hi_wh(struct inode *inode, aufs_bindex_t bindex)
 +{
 +      IiMustAnyLock(inode);
-+      return au_ii(inode)->ii_hinode[0 + bindex].hi_whdentry;
++      return au_hinode(au_ii(inode), bindex)->hi_whdentry;
 +}
 +
-+static inline void au_set_ibstart(struct inode *inode, aufs_bindex_t bindex)
++static inline void au_set_ibtop(struct inode *inode, aufs_bindex_t bindex)
 +{
 +      IiMustWriteLock(inode);
-+      au_ii(inode)->ii_bstart = bindex;
++      au_ii(inode)->ii_btop = bindex;
 +}
 +
-+static inline void au_set_ibend(struct inode *inode, aufs_bindex_t bindex)
++static inline void au_set_ibbot(struct inode *inode, aufs_bindex_t bindex)
 +{
 +      IiMustWriteLock(inode);
-+      au_ii(inode)->ii_bend = bindex;
++      au_ii(inode)->ii_bbot = bindex;
 +}
 +
 +static inline void au_set_ivdir(struct inode *inode, struct au_vdir *vdir)
@@ -16833,7 +17318,7 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +static inline struct au_hinode *au_hi(struct inode *inode, aufs_bindex_t bindex)
 +{
 +      IiMustAnyLock(inode);
-+      return au_ii(inode)->ii_hinode + bindex;
++      return au_hinode(au_ii(inode), bindex);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -16967,33 +17452,40 @@ diff -urN /usr/share/empty/fs/aufs/inode.h linux/fs/aufs/inode.h
 +      au_hn_ctl(hdir, /*do_set*/1);
 +}
 +
-+static inline void au_hn_imtx_lock(struct au_hinode *hdir)
++static inline void au_hn_inode_lock(struct au_hinode *hdir)
 +{
-+      mutex_lock(&hdir->hi_inode->i_mutex);
++      inode_lock(hdir->hi_inode);
 +      au_hn_suspend(hdir);
 +}
 +
-+static inline void au_hn_imtx_lock_nested(struct au_hinode *hdir,
++static inline void au_hn_inode_lock_nested(struct au_hinode *hdir,
 +                                        unsigned int sc __maybe_unused)
 +{
-+      mutex_lock_nested(&hdir->hi_inode->i_mutex, sc);
++      inode_lock_nested(hdir->hi_inode, sc);
 +      au_hn_suspend(hdir);
 +}
 +
-+static inline void au_hn_imtx_unlock(struct au_hinode *hdir)
++static inline void au_hn_inode_lock_shared_nested(struct au_hinode *hdir,
++                                                unsigned int sc)
++{
++      vfsub_inode_lock_shared_nested(hdir->hi_inode, sc);
++      au_hn_suspend(hdir);
++}
++
++static inline void au_hn_inode_unlock(struct au_hinode *hdir)
 +{
 +      au_hn_resume(hdir);
-+      mutex_unlock(&hdir->hi_inode->i_mutex);
++      inode_unlock(hdir->hi_inode);
 +}
 +
 +#endif /* __KERNEL__ */
 +#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      2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/ioctl.c      2017-07-29 12:14:25.903042072 +0200
 @@ -0,0 +1,219 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -17024,7 +17516,7 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 +static int au_wbr_fd(struct path *path, struct aufs_wbr_fd __user *arg)
 +{
 +      int err, fd;
-+      aufs_bindex_t wbi, bindex, bend;
++      aufs_bindex_t wbi, bindex, bbot;
 +      struct file *h_file;
 +      struct super_block *sb;
 +      struct dentry *root;
@@ -17064,10 +17556,10 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 +      sb = path->dentry->d_sb;
 +      root = sb->s_root;
 +      aufs_read_lock(root, AuLock_IR);
-+      bend = au_sbend(sb);
++      bbot = au_sbbot(sb);
 +      if (wbrfd.brid >= 0) {
 +              wbi = au_br_index(sb, wbrfd.brid);
-+              if (unlikely(wbi < 0 || wbi > bend))
++              if (unlikely(wbi < 0 || wbi > bbot))
 +                      goto out_unlock;
 +      }
 +
@@ -17079,7 +17571,7 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 +
 +              bindex = wbi + 1;
 +              wbi = -1;
-+              for (; bindex <= bend; bindex++) {
++              for (; bindex <= bbot; bindex++) {
 +                      br = au_sbr(sb, bindex);
 +                      if (au_br_writable(br->br_perm)) {
 +                              wbi = bindex;
@@ -17099,7 +17591,7 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 +      if (IS_ERR(h_file))
 +              goto out_fd;
 +
-+      atomic_dec(&br->br_count); /* cf. au_h_open() */
++      au_br_put(br); /* cf. au_h_open() */
 +      fd_install(fd, h_file);
 +      err = fd;
 +      goto out; /* success */
@@ -17213,10 +17705,10 @@ diff -urN /usr/share/empty/fs/aufs/ioctl.c linux/fs/aufs/ioctl.c
 +#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   2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,932 @@
++++ linux/fs/aufs/i_op_add.c   2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,920 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -17397,7 +17889,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +
 +      h_parent = au_pinned_h_parent(pin);
 +      if (udba != AuOpt_UDBA_NONE
-+          && au_dbstart(dentry) == bcpup)
++          && au_dbtop(dentry) == bcpup)
 +              err = au_may_add(dentry, bcpup, h_parent,
 +                               au_ftest_wrdir(wr_dir_args->flags, ISDIR));
 +      else if (unlikely(dentry->d_name.len > AUFS_MAX_NAMELEN))
@@ -17459,7 +17951,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +                    struct simple_arg *arg)
 +{
 +      int err, rerr;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      unsigned char created;
 +      const unsigned char try_aopen
 +              = (arg->type == Creat && arg->u.c.try_aopen);
@@ -17502,10 +17994,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      if (IS_ERR(wh_dentry))
 +              goto out_parent;
 +
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      sb = dentry->d_sb;
-+      br = au_sbr(sb, bstart);
-+      a->h_path.dentry = au_h_dptr(dentry, bstart);
++      br = au_sbr(sb, btop);
++      a->h_path.dentry = au_h_dptr(dentry, btop);
 +      a->h_path.mnt = au_br_mnt(br);
 +      h_dir = au_pinned_h_dir(&a->pin);
 +      switch (arg->type) {
@@ -17530,7 +18022,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      }
 +      created = !err;
 +      if (!err)
-+              err = epilog(dir, bstart, wh_dentry, dentry);
++              err = epilog(dir, btop, wh_dentry, dentry);
 +
 +      /* revert */
 +      if (unlikely(created && err && d_is_positive(a->h_path.dentry))) {
@@ -17556,7 +18048,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              di_write_unlock(parent);
 +out_unlock:
 +      if (unlikely(err)) {
-+              au_update_dbstart(dentry);
++              au_update_dbtop(dentry);
 +              d_drop(dentry);
 +      }
 +      if (!try_aopen)
@@ -17631,7 +18123,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      };
 +
 +      /* copy-up may happen */
-+      mutex_lock(&dir->i_mutex);
++      inode_lock(dir);
 +
 +      sb = dir->i_sb;
 +      err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM);
@@ -17653,9 +18145,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      if (unlikely(err))
 +              goto out_parent;
 +
-+      bindex = au_dbstart(parent);
-+      au_set_dbstart(dentry, bindex);
-+      au_set_dbend(dentry, bindex);
++      bindex = au_dbtop(parent);
++      au_set_dbtop(dentry, bindex);
++      au_set_dbbot(dentry, bindex);
 +      err = au_wr_dir(dentry, /*src_dentry*/NULL, &wr_dir_args);
 +      bindex = err;
 +      if (unlikely(err < 0))
@@ -17672,28 +18164,21 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              goto out_parent;
 +
 +      h_parent = au_h_dptr(parent, bindex);
-+      err = inode_permission(d_inode(h_parent), MAY_WRITE | MAY_EXEC);
-+      if (unlikely(err))
-+              goto out_mnt;
-+
-+      err = -ENOMEM;
-+      h_dentry = d_alloc(h_parent, &dentry->d_name);
-+      if (unlikely(!h_dentry))
++      h_dentry = vfs_tmpfile(h_parent, mode, /*open_flag*/0);
++      if (IS_ERR(h_dentry)) {
++              err = PTR_ERR(h_dentry);
 +              goto out_mnt;
++      }
 +
-+      err = h_dir->i_op->tmpfile(h_dir, h_dentry, mode);
-+      if (unlikely(err))
-+              goto out_dentry;
-+
-+      au_set_dbstart(dentry, bindex);
-+      au_set_dbend(dentry, bindex);
++      au_set_dbtop(dentry, bindex);
++      au_set_dbbot(dentry, bindex);
 +      au_set_h_dptr(dentry, bindex, dget(h_dentry));
 +      inode = au_new_inode(dentry, /*must_new*/1);
 +      if (IS_ERR(inode)) {
 +              err = PTR_ERR(inode);
 +              au_set_h_dptr(dentry, bindex, NULL);
-+              au_set_dbstart(dentry, -1);
-+              au_set_dbend(dentry, -1);
++              au_set_dbtop(dentry, -1);
++              au_set_dbbot(dentry, -1);
 +      } else {
 +              if (!inode->i_nlink)
 +                      set_nlink(inode, 1);
@@ -17701,34 +18186,25 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              au_di(dentry)->di_tmpfile = 1;
 +
 +              /* update without i_mutex */
-+              if (au_ibstart(dir) == au_dbstart(dentry))
++              if (au_ibtop(dir) == au_dbtop(dentry))
 +                      au_cpup_attr_timesizes(dir);
 +      }
-+
-+out_dentry:
 +      dput(h_dentry);
++
 +out_mnt:
 +      vfsub_mnt_drop_write(h_mnt);
 +out_parent:
 +      di_write_unlock(parent);
 +      dput(parent);
 +      di_write_unlock(dentry);
-+      if (!err)
-+#if 0
-+              /* verbose coding for lock class name */
-+              au_rw_class(&au_di(dentry)->di_rwsem,
-+                          au_lc_key + AuLcNonDir_DIINFO);
-+#else
-+              ;
-+#endif
-+      else {
++      if (unlikely(err)) {
 +              au_di_fin(dentry);
 +              dentry->d_fsdata = NULL;
 +      }
 +out_si:
 +      si_read_unlock(sb);
 +out:
-+      mutex_unlock(&dir->i_mutex);
++      inode_unlock(dir);
 +      return err;
 +}
 +
@@ -17780,7 +18256,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +{
 +      int err;
 +      unsigned char plink;
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +      struct dentry *h_src_dentry;
 +      struct inode *h_inode, *inode, *delegated;
 +      struct super_block *sb;
@@ -17790,13 +18266,13 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      h_inode = NULL;
 +      sb = src_dentry->d_sb;
 +      inode = d_inode(src_dentry);
-+      if (au_ibstart(inode) <= a->bdst)
++      if (au_ibtop(inode) <= a->bdst)
 +              h_inode = au_h_iptr(inode, a->bdst);
 +      if (!h_inode || !h_inode->i_nlink) {
 +              /* copyup src_dentry as the name of dentry. */
-+              bend = au_dbend(dentry);
-+              if (bend < a->bsrc)
-+                      au_set_dbend(dentry, a->bsrc);
++              bbot = au_dbbot(dentry);
++              if (bbot < a->bsrc)
++                      au_set_dbbot(dentry, a->bsrc);
 +              au_set_h_dptr(dentry, a->bsrc,
 +                            dget(au_h_dptr(src_dentry, a->bsrc)));
 +              dget(a->h_path.dentry);
@@ -17831,7 +18307,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              spin_unlock(&dentry->d_lock);
 +              AuDbg("temporary d_inode...done\n");
 +              au_set_h_dptr(dentry, a->bsrc, NULL);
-+              au_set_dbend(dentry, bend);
++              au_set_dbbot(dentry, bbot);
 +      } else {
 +              /* the inode of src_dentry already exists on a.bdst branch */
 +              h_src_dentry = d_find_alias(h_inode);
@@ -17909,7 +18385,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              goto out_unlock;
 +
 +      a->src_parent = dget_parent(src_dentry);
-+      wr_dir_args.force_btgt = au_ibstart(inode);
++      wr_dir_args.force_btgt = au_ibtop(inode);
 +
 +      di_write_lock_parent(a->parent);
 +      wr_dir_args.force_btgt = au_wbr(dentry, wr_dir_args.force_btgt);
@@ -17921,15 +18397,15 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +
 +      err = 0;
 +      sb = dentry->d_sb;
-+      a->bdst = au_dbstart(dentry);
++      a->bdst = au_dbtop(dentry);
 +      a->h_path.dentry = au_h_dptr(dentry, a->bdst);
 +      a->h_path.mnt = au_sbr_mnt(sb, a->bdst);
-+      a->bsrc = au_ibstart(inode);
++      a->bsrc = au_ibtop(inode);
 +      h_src_dentry = au_h_d_alias(src_dentry, a->bsrc);
 +      if (!h_src_dentry && au_di(src_dentry)->di_tmpfile)
 +              h_src_dentry = dget(au_hi_wh(inode, a->bsrc));
 +      if (!h_src_dentry) {
-+              a->bsrc = au_dbstart(src_dentry);
++              a->bsrc = au_dbtop(src_dentry);
 +              h_src_dentry = au_h_d_alias(src_dentry, a->bsrc);
 +              AuDebugOn(!h_src_dentry);
 +      } else if (IS_ERR(h_src_dentry)) {
@@ -17937,6 +18413,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              goto out_parent;
 +      }
 +
++      /*
++       * aufs doesn't touch the credential so
++       * security_dentry_create_files_as() is unnecrssary.
++       */
 +      if (au_opt_test(au_mntflags(sb), PLINK)) {
 +              if (a->bdst < a->bsrc
 +                  /* && h_src_dentry->d_sb != a->h_path.dentry->d_sb */)
@@ -18029,7 +18509,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      dput(a->src_parent);
 +out_unlock:
 +      if (unlikely(err)) {
-+              au_update_dbstart(dentry);
++              au_update_dbtop(dentry);
 +              d_drop(dentry);
 +      }
 +      aufs_read_and_write_unlock2(dentry, src_dentry);
@@ -18047,7 +18527,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      unsigned char diropq;
 +      struct path h_path;
 +      struct dentry *wh_dentry, *parent, *opq_dentry;
-+      struct mutex *h_mtx;
++      struct inode *h_inode;
 +      struct super_block *sb;
 +      struct {
 +              struct au_pin pin;
@@ -18081,7 +18561,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +              goto out_parent;
 +
 +      sb = dentry->d_sb;
-+      bindex = au_dbstart(dentry);
++      bindex = au_dbtop(dentry);
 +      h_path.dentry = au_h_dptr(dentry, bindex);
 +      h_path.mnt = au_sbr_mnt(sb, bindex);
 +      err = vfsub_mkdir(au_pinned_h_dir(&a->pin), &h_path, mode);
@@ -18090,12 +18570,12 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +
 +      /* make the dir opaque */
 +      diropq = 0;
-+      h_mtx = &d_inode(h_path.dentry)->i_mutex;
++      h_inode = d_inode(h_path.dentry);
 +      if (wh_dentry
 +          || au_opt_test(au_mntflags(sb), ALWAYS_DIROPQ)) {
-+              mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
++              inode_lock_nested(h_inode, AuLsc_I_CHILD);
 +              opq_dentry = au_diropq_create(dentry, bindex);
-+              mutex_unlock(h_mtx);
++              inode_unlock(h_inode);
 +              err = PTR_ERR(opq_dentry);
 +              if (IS_ERR(opq_dentry))
 +                      goto out_dir;
@@ -18112,9 +18592,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      /* revert */
 +      if (diropq) {
 +              AuLabel(revert opq);
-+              mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
++              inode_lock_nested(h_inode, AuLsc_I_CHILD);
 +              rerr = au_diropq_remove(dentry, bindex);
-+              mutex_unlock(h_mtx);
++              inode_unlock(h_inode);
 +              if (rerr) {
 +                      AuIOErr("%pd reverting diropq failed(%d, %d)\n",
 +                              dentry, err, rerr);
@@ -18138,7 +18618,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_add.c linux/fs/aufs/i_op_add.c
 +      di_write_unlock(parent);
 +out_unlock:
 +      if (unlikely(err)) {
-+              au_update_dbstart(dentry);
++              au_update_dbtop(dentry);
 +              d_drop(dentry);
 +      }
 +      aufs_read_unlock(dentry, AuLock_DW);
@@ -18149,10 +18629,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       2015-12-10 17:59:16.836166410 +0100
-@@ -0,0 +1,1484 @@
++++ linux/fs/aufs/i_op.c       2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,1452 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -18184,12 +18664,15 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      int err;
 +      const unsigned char write_mask = !!(mask & (MAY_WRITE | MAY_APPEND));
 +
++      err = -EPERM;
++      if (write_mask && IS_IMMUTABLE(h_inode))
++              goto out;
++
 +      err = -EACCES;
-+      if ((write_mask && IS_IMMUTABLE(h_inode))
-+          || ((mask & MAY_EXEC)
-+              && S_ISREG(h_inode->i_mode)
-+              && (path_noexec(h_path)
-+                  || !(h_inode->i_mode & S_IXUGO))))
++      if (((mask & MAY_EXEC)
++           && S_ISREG(h_inode->i_mode)
++           && (path_noexec(h_path)
++               || !(h_inode->i_mode & S_IXUGO))))
 +              goto out;
 +
 +      /*
@@ -18240,7 +18723,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +static int aufs_permission(struct inode *inode, int mask)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      const unsigned char isdir = !!S_ISDIR(inode->i_mode),
 +              write_mask = !!(mask & (MAY_WRITE | MAY_APPEND));
 +      struct inode *h_inode;
@@ -18264,14 +18747,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +          || write_mask
 +          || au_opt_test(au_mntflags(sb), DIRPERM1)) {
 +              err = au_busy_or_stale();
-+              h_inode = au_h_iptr(inode, au_ibstart(inode));
++              h_inode = au_h_iptr(inode, au_ibtop(inode));
 +              if (unlikely(!h_inode
 +                           || (h_inode->i_mode & S_IFMT)
 +                           != (inode->i_mode & S_IFMT)))
 +                      goto out;
 +
 +              err = 0;
-+              bindex = au_ibstart(inode);
++              bindex = au_ibtop(inode);
 +              br = au_sbr(sb, bindex);
 +              err = h_permission(h_inode, mask, &br->br_path, br->br_perm);
 +              if (write_mask
@@ -18290,8 +18773,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +      /* non-write to dir */
 +      err = 0;
-+      bend = au_ibend(inode);
-+      for (bindex = au_ibstart(inode); !err && bindex <= bend; bindex++) {
++      bbot = au_ibbot(inode);
++      for (bindex = au_ibtop(inode); !err && bindex <= bbot; bindex++) {
 +              h_inode = au_h_iptr(inode, bindex);
 +              if (h_inode) {
 +                      err = au_busy_or_stale();
@@ -18350,8 +18833,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      if (!err)
 +              err = au_digen_test(parent, au_sigen(sb));
 +      if (!err) {
-+              npositive = au_lkup_dentry(dentry, au_dbstart(parent),
-+                                         /*type*/0);
++              /* regardless LOOKUP_CREATE, always ALLOW_NEG */
++              npositive = au_lkup_dentry(dentry, au_dbtop(parent),
++                                         AuLkup_ALLOW_NEG);
 +              err = npositive;
 +      }
 +      di_read_unlock(parent, AuLock_IR);
@@ -18392,18 +18876,6 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +out_unlock:
 +      di_write_unlock(dentry);
-+      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);
 +out:
@@ -18444,8 +18916,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +                          umode_t create_mode, int *opened)
 +{
 +      int err, h_opened = *opened;
-+      struct dentry *parent;
-+      struct dentry *d;
++      unsigned int lkup_flags;
++      struct dentry *parent, *d;
 +      struct au_sphlhead *aopen;
 +      struct vfsub_aopen_args args = {
 +              .open_flag      = open_flag,
@@ -18457,14 +18929,18 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      };
 +
 +      IMustLock(dir);
-+      AuDbg("open_flag 0x%x\n", open_flag);
++      AuDbg("open_flag 0%o\n", open_flag);
 +      AuDbgDentry(dentry);
 +
 +      err = 0;
 +      if (!au_di(dentry)) {
-+              d = aufs_lookup(dir, dentry, /*flags*/0);
++              lkup_flags = LOOKUP_OPEN;
++              if (open_flag & O_CREAT)
++                      lkup_flags |= LOOKUP_CREATE;
++              d = aufs_lookup(dir, dentry, lkup_flags);
 +              if (IS_ERR(d)) {
 +                      err = PTR_ERR(d);
++                      AuTraceErr(err);
 +                      goto out;
 +              } else if (d) {
 +                      /*
@@ -18472,8 +18948,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +                       * another error will be returned later.
 +                       */
 +                      d_drop(d);
-+                      dput(d);
 +                      AuDbgDentry(d);
++                      dput(d);
 +              }
 +              AuDbgDentry(dentry);
 +      }
@@ -18490,7 +18966,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +      parent = dentry->d_parent;      /* dir is locked */
 +      di_write_lock_parent(parent);
-+      err = au_lkup_dentry(dentry, /*bstart*/0, /*type*/0);
++      err = au_lkup_dentry(dentry, /*btop*/0, AuLkup_ALLOW_NEG);
 +      if (unlikely(err))
 +              goto out_unlock;
 +
@@ -18536,10 +19012,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      di_write_unlock(parent);
 +      aufs_read_unlock(dentry, AuLock_DW);
 +      AuDbgDentry(dentry);
-+      if (unlikely(err))
++      if (unlikely(err < 0))
 +              goto out;
 +out_no_open:
-+      if (!err && !(*opened & FILE_CREATED)) {
++      if (err >= 0 && !(*opened & FILE_CREATED)) {
 +              AuLabel(out_no_open);
 +              dget(dentry);
 +              err = finish_no_open(file, dentry);
@@ -18557,7 +19033,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +static int au_wr_dir_cpup(struct dentry *dentry, struct dentry *parent,
 +                        const unsigned char add_entry, aufs_bindex_t bcpup,
-+                        aufs_bindex_t bstart)
++                        aufs_bindex_t btop)
 +{
 +      int err;
 +      struct dentry *h_parent;
@@ -18570,9 +19046,9 @@ 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 (btop > bcpup)
 +                      err = au_cpup_dirs(dentry, bcpup);
-+              else if (bstart < bcpup)
++              else if (btop < bcpup)
 +                      err = au_cpdown_dirs(dentry, bcpup);
 +              else
 +                      BUG();
@@ -18580,15 +19056,15 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      if (!err && add_entry && !au_ftest_wrdir(add_entry, TMPFILE)) {
 +              h_parent = au_h_dptr(parent, bcpup);
 +              h_dir = d_inode(h_parent);
-+              mutex_lock_nested(&h_dir->i_mutex, AuLsc_I_PARENT);
++              vfsub_inode_lock_shared_nested(h_dir, AuLsc_I_PARENT);
 +              err = au_lkup_neg(dentry, bcpup, /*wh*/0);
 +              /* todo: no unlock here */
-+              mutex_unlock(&h_dir->i_mutex);
++              inode_unlock_shared(h_dir);
 +
 +              AuDbg("bcpup %d\n", bcpup);
 +              if (!err) {
 +                      if (d_really_is_negative(dentry))
-+                              au_set_h_dptr(dentry, bstart, NULL);
++                              au_set_h_dptr(dentry, btop, NULL);
 +                      au_update_dbrange(dentry, /*do_put_zero*/0);
 +              }
 +      }
@@ -18612,7 +19088,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +{
 +      int err;
 +      unsigned int flags;
-+      aufs_bindex_t bcpup, bstart, src_bstart;
++      aufs_bindex_t bcpup, btop, src_btop;
 +      const unsigned char add_entry
 +              = au_ftest_wrdir(args->flags, ADD_ENTRY)
 +              | au_ftest_wrdir(args->flags, TMPFILE);
@@ -18623,13 +19099,13 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      sb = dentry->d_sb;
 +      sbinfo = au_sbi(sb);
 +      parent = dget_parent(dentry);
-+      bstart = au_dbstart(dentry);
-+      bcpup = bstart;
++      btop = au_dbtop(dentry);
++      bcpup = btop;
 +      if (args->force_btgt < 0) {
 +              if (src_dentry) {
-+                      src_bstart = au_dbstart(src_dentry);
-+                      if (src_bstart < bstart)
-+                              bcpup = src_bstart;
++                      src_btop = au_dbtop(src_dentry);
++                      if (src_btop < btop)
++                              bcpup = src_btop;
 +              } else if (add_entry) {
 +                      flags = 0;
 +                      if (au_ftest_wrdir(args->flags, ISDIR))
@@ -18658,18 +19134,18 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              AuDebugOn(au_test_ro(sb, bcpup, d_inode(dentry)));
 +      }
 +
-+      AuDbg("bstart %d, bcpup %d\n", bstart, bcpup);
++      AuDbg("btop %d, bcpup %d\n", btop, bcpup);
 +      err = bcpup;
-+      if (bcpup == bstart)
++      if (bcpup == btop)
 +              goto out; /* success */
 +
 +      /* copyup the new parent into the branch we process */
-+      err = au_wr_dir_cpup(dentry, parent, add_entry, bcpup, bstart);
++      err = au_wr_dir_cpup(dentry, parent, add_entry, bcpup, btop);
 +      if (err >= 0) {
 +              if (d_really_is_negative(dentry)) {
-+                      au_set_h_dptr(dentry, bstart, NULL);
-+                      au_set_dbstart(dentry, bcpup);
-+                      au_set_dbend(dentry, bcpup);
++                      au_set_h_dptr(dentry, btop, NULL);
++                      au_set_dbtop(dentry, bcpup);
++                      au_set_dbbot(dentry, bcpup);
 +              }
 +              AuDebugOn(add_entry
 +                        && !au_ftest_wrdir(args->flags, TMPFILE)
@@ -18686,7 +19162,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +void au_pin_hdir_unlock(struct au_pin *p)
 +{
 +      if (p->hdir)
-+              au_hn_imtx_unlock(p->hdir);
++              au_hn_inode_unlock(p->hdir);
 +}
 +
 +int au_pin_hdir_lock(struct au_pin *p)
@@ -18698,7 +19174,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              goto out;
 +
 +      /* even if an error happens later, keep this lock */
-+      au_hn_imtx_lock_nested(p->hdir, p->lsc_hi);
++      au_hn_inode_lock_nested(p->hdir, p->lsc_hi);
 +
 +      err = -EBUSY;
 +      if (unlikely(p->hdir->hi_inode != d_inode(p->h_parent)))
@@ -18739,17 +19215,17 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      return err;
 +}
 +
-+void au_pin_hdir_set_owner(struct au_pin *p, struct task_struct *task)
++static 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;
++#if !defined(CONFIG_RWSEM_GENERIC_SPINLOCK) && defined(CONFIG_RWSEM_SPIN_ON_OWNER)
++      p->hdir->hi_inode->i_rwsem.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,
++              rwsem_acquire_nest(&p->hdir->hi_inode->i_rwsem.dep_map,
 +                                 p->lsc_hi, 0, NULL, _RET_IP_);
 +              au_pin_hdir_set_owner(p, current);
 +      }
@@ -18759,7 +19235,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +{
 +      if (p->hdir) {
 +              au_pin_hdir_set_owner(p, p->task);
-+              mutex_release(&p->hdir->hi_inode->i_mutex.dep_map, 1, _RET_IP_);
++              rwsem_release(&p->hdir->hi_inode->i_rwsem.dep_map, 1, _RET_IP_);
 +      }
 +}
 +
@@ -18811,7 +19287,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      }
 +
 +      p->h_dentry = NULL;
-+      if (p->bindex <= au_dbend(p->dentry))
++      if (p->bindex <= au_dbbot(p->dentry))
 +              p->h_dentry = au_h_dptr(p->dentry, p->bindex);
 +
 +      p->parent = dget_parent(p->dentry);
@@ -18927,7 +19403,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +{
 +      int err;
 +      loff_t sz;
-+      aufs_bindex_t bstart, ibstart;
++      aufs_bindex_t btop, ibtop;
 +      struct dentry *hi_wh, *parent;
 +      struct inode *inode;
 +      struct au_wr_dir_args wr_dir_args = {
@@ -18938,16 +19414,16 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      if (d_is_dir(dentry))
 +              au_fset_wrdir(wr_dir_args.flags, ISDIR);
 +      /* plink or hi_wh() case */
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      inode = d_inode(dentry);
-+      ibstart = au_ibstart(inode);
-+      if (bstart != ibstart && !au_test_ro(inode->i_sb, ibstart, inode))
-+              wr_dir_args.force_btgt = ibstart;
++      ibtop = au_ibtop(inode);
++      if (btop != ibtop && !au_test_ro(inode->i_sb, ibtop, inode))
++              wr_dir_args.force_btgt = ibtop;
 +      err = au_wr_dir(dentry, /*src_dentry*/NULL, &wr_dir_args);
 +      if (unlikely(err < 0))
 +              goto out;
 +      a->btgt = err;
-+      if (err != bstart)
++      if (err != btop)
 +              au_fset_icpup(a->flags, DID_CPUP);
 +
 +      err = 0;
@@ -18963,14 +19439,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      if (unlikely(err))
 +              goto out_parent;
 +
-+      a->h_path.dentry = au_h_dptr(dentry, bstart);
 +      sz = -1;
++      a->h_path.dentry = au_h_dptr(dentry, btop);
 +      a->h_inode = d_inode(a->h_path.dentry);
 +      if (ia && (ia->ia_valid & ATTR_SIZE)) {
-+              mutex_lock_nested(&a->h_inode->i_mutex, AuLsc_I_CHILD);
++              vfsub_inode_lock_shared_nested(a->h_inode, AuLsc_I_CHILD);
 +              if (ia->ia_size < i_size_read(a->h_inode))
 +                      sz = ia->ia_size;
-+              mutex_unlock(&a->h_inode->i_mutex);
++              inode_unlock_shared(a->h_inode);
 +      }
 +
 +      hi_wh = NULL;
@@ -19005,7 +19481,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              struct au_cp_generic cpg = {
 +                      .dentry = dentry,
 +                      .bdst   = a->btgt,
-+                      .bsrc   = bstart,
++                      .bsrc   = btop,
 +                      .len    = sz,
 +                      .pin    = &a->pin,
 +                      .flags  = AuCpup_DTIME | AuCpup_HOPEN
@@ -19030,7 +19506,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      }
 +out:
 +      if (!err)
-+              mutex_lock_nested(&a->h_inode->i_mutex, AuLsc_I_CHILD);
++              inode_lock_nested(a->h_inode, AuLsc_I_CHILD);
 +      return err;
 +}
 +
@@ -19045,6 +19521,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      inode = d_inode(dentry);
 +      IMustLock(inode);
 +
++      err = setattr_prepare(dentry, ia);
++      if (unlikely(err))
++              goto out;
++
 +      err = -ENOMEM;
 +      a = kzalloc(sizeof(*a), GFP_NOFS);
 +      if (unlikely(!a))
@@ -19063,7 +19543,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              /* currently ftruncate(2) only */
 +              AuDebugOn(!d_is_reg(dentry));
 +              file = ia->ia_file;
-+              err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/1);
++              err = au_reval_and_lock_fdi(file, au_reopen_nondir, /*wlock*/1,
++                                          /*fi_lsc*/0);
 +              if (unlikely(err))
 +                      goto out_si;
 +              ia->ia_file = au_hf_top(file);
@@ -19114,9 +19595,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              f = NULL;
 +              if (ia->ia_valid & ATTR_FILE)
 +                      f = ia->ia_file;
-+              mutex_unlock(&a->h_inode->i_mutex);
++              inode_unlock(a->h_inode);
 +              err = vfsub_trunc(&a->h_path, ia->ia_size, ia->ia_valid, f);
-+              mutex_lock_nested(&a->h_inode->i_mutex, AuLsc_I_CHILD);
++              inode_lock_nested(a->h_inode, AuLsc_I_CHILD);
 +      } else {
 +              delegated = NULL;
 +              while (1) {
@@ -19129,14 +19610,20 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +                      break;
 +              }
 +      }
++      /*
++       * regardless aufs 'acl' option setting.
++       * why don't all acl-aware fs call this func from their ->setattr()?
++       */
++      if (!err && (ia->ia_valid & ATTR_MODE))
++              err = vfsub_acl_chmod(a->h_inode, ia->ia_mode);
 +      if (!err)
 +              au_cpup_attr_changeable(inode);
 +
 +out_unlock:
-+      mutex_unlock(&a->h_inode->i_mutex);
++      inode_unlock(a->h_inode);
 +      au_unpin(&a->pin);
 +      if (unlikely(err))
-+              au_update_dbstart(dentry);
++              au_update_dbtop(dentry);
 +out_dentry:
 +      di_write_unlock(dentry);
 +      if (file) {
@@ -19182,15 +19669,15 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      return err;
 +}
 +
-+ssize_t au_srxattr(struct dentry *dentry, struct au_srxattr *arg)
++ssize_t au_sxattr(struct dentry *dentry, struct inode *inode,
++                struct au_sxattr *arg)
 +{
 +      int err;
 +      struct path h_path;
 +      struct super_block *sb;
 +      struct au_icpup_args *a;
-+      struct inode *inode, *h_inode;
++      struct inode *h_inode;
 +
-+      inode = d_inode(dentry);
 +      IMustLock(inode);
 +
 +      err = -ENOMEM;
@@ -19209,20 +19696,19 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      if (unlikely(err))
 +              goto out_di;
 +
-+      mutex_unlock(&a->h_inode->i_mutex);
++      inode_unlock(a->h_inode);
 +      switch (arg->type) {
 +      case AU_XATTR_SET:
++              AuDebugOn(d_is_negative(h_path.dentry));
 +              err = vfsub_setxattr(h_path.dentry,
 +                                   arg->u.set.name, arg->u.set.value,
 +                                   arg->u.set.size, arg->u.set.flags);
 +              break;
-+      case AU_XATTR_REMOVE:
-+              err = vfsub_removexattr(h_path.dentry, arg->u.remove.name);
-+              break;
 +      case AU_ACL_SET:
 +              err = -EOPNOTSUPP;
 +              h_inode = d_inode(h_path.dentry);
 +              if (h_inode->i_op->set_acl)
++                      /* this will call posix_acl_update_mode */
 +                      err = h_inode->i_op->set_acl(h_inode,
 +                                                   arg->u.acl_set.acl,
 +                                                   arg->u.acl_set.type);
@@ -19233,7 +19719,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +      au_unpin(&a->pin);
 +      if (unlikely(err))
-+              au_update_dbstart(dentry);
++              au_update_dbtop(dentry);
 +
 +out_di:
 +      di_write_unlock(dentry);
@@ -19276,11 +19762,12 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +}
 +
 +/*
-+ * common routine for aufs_getattr() and aufs_getxattr().
++ * common routine for aufs_getattr() and au_getxattr().
 + * returns zero or negative (an error).
 + * @dentry will be read-locked in success.
 + */
-+int au_h_path_getattr(struct dentry *dentry, int force, struct path *h_path)
++int au_h_path_getattr(struct dentry *dentry, int force, struct path *h_path,
++                    int locked)
 +{
 +      int err;
 +      unsigned int mnt_flags, sigen;
@@ -19297,6 +19784,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      mnt_flags = au_mntflags(sb);
 +      udba_none = !!au_opt_test(mnt_flags, UDBA_NONE);
 +
++      if (unlikely(locked))
++              goto body; /* skip locking dinfo */
++
 +      /* support fstat(2) */
 +      if (!d_unlinked(dentry) && !udba_none) {
 +              sigen = au_sigen(sb);
@@ -19324,8 +19814,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      } else
 +              di_read_lock_child(dentry, AuLock_IR);
 +
++body:
 +      inode = d_inode(dentry);
-+      bindex = au_ibstart(inode);
++      bindex = au_ibtop(inode);
 +      h_path->mnt = au_sbr_mnt(sb, bindex);
 +      h_sb = h_path->mnt->mnt_sb;
 +      if (!force
@@ -19333,7 +19824,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +          && udba_none)
 +              goto out; /* success */
 +
-+      if (au_dbstart(dentry) == bindex)
++      if (au_dbtop(dentry) == bindex)
 +              h_path->dentry = au_h_dptr(dentry, bindex);
 +      else if (au_opt_test(mnt_flags, PLINK) && au_plink_test(inode)) {
 +              h_path->dentry = au_plink_lkup(inode, bindex);
@@ -19348,21 +19839,23 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      return err;
 +}
 +
-+static int aufs_getattr(struct vfsmount *mnt __maybe_unused,
-+                      struct dentry *dentry, struct kstat *st)
++static int aufs_getattr(const struct path *path, struct kstat *st,
++                      u32 request, unsigned int query)
 +{
 +      int err;
 +      unsigned char positive;
 +      struct path h_path;
++      struct dentry *dentry;
 +      struct inode *inode;
 +      struct super_block *sb;
 +
++      dentry = path->dentry;
 +      inode = d_inode(dentry);
 +      sb = dentry->d_sb;
 +      err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM);
 +      if (unlikely(err))
 +              goto out;
-+      err = au_h_path_getattr(dentry, /*force*/0, &h_path);
++      err = au_h_path_getattr(dentry, /*force*/0, &h_path, /*locked*/0);
 +      if (unlikely(err))
 +              goto out_si;
 +      if (unlikely(!h_path.dentry))
@@ -19371,7 +19864,8 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +      positive = d_is_positive(h_path.dentry);
 +      if (positive)
-+              err = vfs_getattr(&h_path, st);
++              /* no vfsub version */
++              err = vfs_getattr(&h_path, st, request, query);
 +      if (!err) {
 +              if (positive)
 +                      au_refresh_iattr(inode, st,
@@ -19394,62 +19888,20 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +/* ---------------------------------------------------------------------- */
 +
-+/*
-+ * Assumption:
-+ * - the number of symlinks is not so many.
-+ *
-+ * Structure:
-+ * - sbinfo (instead of iinfo) contains an hlist of struct au_symlink.
-+ *   If iinfo contained the hlist, then it would be rather large waste of memory
-+ *   I am afraid.
-+ * - struct au_symlink contains the necessary info for h_inode follow_link() and
-+ *   put_link().
-+ */
-+
-+struct au_symlink {
-+      union {
-+              struct hlist_node hlist;
-+              struct rcu_head rcu;
-+      };
-+
-+      struct inode *h_inode;
-+      void *h_cookie;
-+};
-+
-+static void au_symlink_add(struct super_block *sb, struct au_symlink *slink,
-+                         struct inode *h_inode, void *cookie)
-+{
-+      struct au_sbinfo *sbinfo;
-+
-+      ihold(h_inode);
-+      slink->h_inode = h_inode;
-+      slink->h_cookie = cookie;
-+      sbinfo = au_sbi(sb);
-+      au_sphl_add(&slink->hlist, &sbinfo->si_symlink);
-+}
-+
-+static void au_symlink_del(struct super_block *sb, struct au_symlink *slink)
-+{
-+      struct au_sbinfo *sbinfo;
-+
-+      /* do not iput() within rcu */
-+      iput(slink->h_inode);
-+      slink->h_inode = NULL;
-+      sbinfo = au_sbi(sb);
-+      au_sphl_del_rcu(&slink->hlist, &sbinfo->si_symlink);
-+      kfree_rcu(slink, rcu);
-+}
-+
-+static const char *aufs_follow_link(struct dentry *dentry, void **cookie)
++static const char *aufs_get_link(struct dentry *dentry, struct inode *inode,
++                               struct delayed_call *done)
 +{
 +      const char *ret;
-+      struct inode *inode, *h_inode;
 +      struct dentry *h_dentry;
-+      struct au_symlink *slink;
++      struct inode *h_inode;
 +      int err;
 +      aufs_bindex_t bindex;
 +
 +      ret = NULL; /* suppress a warning */
++      err = -ECHILD;
++      if (!dentry)
++              goto out;
++
 +      err = aufs_read_lock(dentry, AuLock_IR | AuLock_GEN);
 +      if (unlikely(err))
 +              goto out;
@@ -19460,19 +19912,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +
 +      err = -EINVAL;
 +      inode = d_inode(dentry);
-+      bindex = au_ibstart(inode);
++      bindex = au_ibtop(inode);
 +      h_inode = au_h_iptr(inode, bindex);
-+      if (unlikely(!h_inode->i_op->follow_link))
-+              goto out_unlock;
-+
-+      err = -ENOMEM;
-+      slink = kmalloc(sizeof(*slink), GFP_NOFS);
-+      if (unlikely(!slink))
++      if (unlikely(!h_inode->i_op->get_link))
 +              goto out_unlock;
 +
 +      err = -EBUSY;
 +      h_dentry = NULL;
-+      if (au_dbstart(dentry) <= bindex) {
++      if (au_dbtop(dentry) <= bindex) {
 +              h_dentry = au_h_dptr(dentry, bindex);
 +              if (h_dentry)
 +                      dget(h_dentry);
@@ -19481,28 +19928,20 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              h_dentry = d_find_any_alias(h_inode);
 +              if (IS_ERR(h_dentry)) {
 +                      err = PTR_ERR(h_dentry);
-+                      goto out_free;
++                      goto out_unlock;
 +              }
 +      }
 +      if (unlikely(!h_dentry))
-+              goto out_free;
++              goto out_unlock;
 +
 +      err = 0;
-+      AuDbg("%pf\n", h_inode->i_op->follow_link);
++      AuDbg("%pf\n", h_inode->i_op->get_link);
 +      AuDbgDentry(h_dentry);
-+      ret = h_inode->i_op->follow_link(h_dentry, cookie);
++      ret = vfs_get_link(h_dentry, done);
 +      dput(h_dentry);
++      if (IS_ERR(ret))
++              err = PTR_ERR(ret);
 +
-+      if (!IS_ERR_OR_NULL(ret)) {
-+              au_symlink_add(inode->i_sb, slink, h_inode, *cookie);
-+              *cookie = slink;
-+              AuDbg("slink %p\n", slink);
-+              goto out_unlock; /* success */
-+      }
-+
-+out_free:
-+      slink->h_inode = NULL;
-+      kfree_rcu(slink, rcu);
 +out_unlock:
 +      aufs_read_unlock(dentry, AuLock_IR);
 +out:
@@ -19512,37 +19951,57 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +      return ret;
 +}
 +
-+static void aufs_put_link(struct inode *inode, void *cookie)
-+{
-+      struct au_symlink *slink;
-+      struct inode *h_inode;
++/* ---------------------------------------------------------------------- */
 +
-+      slink = cookie;
-+      AuDbg("slink %p\n", slink);
-+      h_inode = slink->h_inode;
-+      AuDbg("%pf\n", h_inode->i_op->put_link);
-+      AuDbgInode(h_inode);
-+      if (h_inode->i_op->put_link)
-+              h_inode->i_op->put_link(h_inode, slink->h_cookie);
-+      au_symlink_del(inode->i_sb, slink);
++static int au_is_special(struct inode *inode)
++{
++      return (inode->i_mode & (S_IFBLK | S_IFCHR | S_IFIFO | S_IFSOCK));
 +}
 +
-+/* ---------------------------------------------------------------------- */
-+
 +static int aufs_update_time(struct inode *inode, struct timespec *ts, int flags)
 +{
 +      int err;
++      aufs_bindex_t bindex;
 +      struct super_block *sb;
 +      struct inode *h_inode;
++      struct vfsmount *h_mnt;
 +
 +      sb = inode->i_sb;
++      WARN_ONCE((flags & S_ATIME) && !IS_NOATIME(inode),
++                "unexpected s_flags 0x%lx", sb->s_flags);
++
 +      /* 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);
++
++      err = 0;
++      bindex = au_ibtop(inode);
++      h_inode = au_h_iptr(inode, bindex);
++      if (!au_test_ro(sb, bindex, inode)) {
++              h_mnt = au_sbr_mnt(sb, bindex);
++              err = vfsub_mnt_want_write(h_mnt);
++              if (!err) {
++                      err = vfsub_update_time(h_inode, ts, flags);
++                      vfsub_mnt_drop_write(h_mnt);
++              }
++      } else if (au_is_special(h_inode)) {
++              /*
++               * Never copy-up here.
++               * These special files may already be opened and used for
++               * communicating. If we copied it up, then the communication
++               * would be corrupted.
++               */
++              AuWarn1("timestamps for i%lu are ignored "
++                      "since it is on readonly branch (hi%lu).\n",
++                      inode->i_ino, h_inode->i_ino);
++      } else if (flags & ~S_ATIME) {
++              err = -EIO;
++              AuIOErr1("unexpected flags 0x%x\n", flags);
++              AuDebugOn(1);
++      }
++
 +      lockdep_off();
 +      if (!err)
 +              au_cpup_attr_timesizes(inode);
@@ -19572,15 +20031,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              .getattr        = aufs_getattr,
 +
 +#ifdef CONFIG_AUFS_XATTR
-+              .setxattr       = aufs_setxattr,
-+              .getxattr       = aufs_getxattr,
 +              .listxattr      = aufs_listxattr,
-+              .removexattr    = aufs_removexattr,
 +#endif
 +
-+              .readlink       = generic_readlink,
-+              .follow_link    = aufs_follow_link,
-+              .put_link       = aufs_put_link,
++              .get_link       = aufs_get_link,
 +
 +              /* .update_time = aufs_update_time */
 +      },
@@ -19605,10 +20059,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              .getattr        = aufs_getattr,
 +
 +#ifdef CONFIG_AUFS_XATTR
-+              .setxattr       = aufs_setxattr,
-+              .getxattr       = aufs_getxattr,
 +              .listxattr      = aufs_listxattr,
-+              .removexattr    = aufs_removexattr,
 +#endif
 +
 +              .update_time    = aufs_update_time,
@@ -19626,10 +20077,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +              .getattr        = aufs_getattr,
 +
 +#ifdef CONFIG_AUFS_XATTR
-+              .setxattr       = aufs_setxattr,
-+              .getxattr       = aufs_getxattr,
 +              .listxattr      = aufs_listxattr,
-+              .removexattr    = aufs_removexattr,
 +#endif
 +
 +              .update_time    = aufs_update_time
@@ -19637,10 +20085,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op.c linux/fs/aufs/i_op.c
 +};
 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   2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,510 @@
++++ linux/fs/aufs/i_op_del.c   2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,511 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -19675,25 +20123,25 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +int au_wr_dir_need_wh(struct dentry *dentry, int isdir, aufs_bindex_t *bcpup)
 +{
 +      int need_wh, err;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +      struct super_block *sb;
 +
 +      sb = dentry->d_sb;
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      if (*bcpup < 0) {
-+              *bcpup = bstart;
-+              if (au_test_ro(sb, bstart, d_inode(dentry))) {
++              *bcpup = btop;
++              if (au_test_ro(sb, btop, d_inode(dentry))) {
 +                      err = AuWbrCopyup(au_sbi(sb), dentry);
 +                      *bcpup = err;
 +                      if (unlikely(err < 0))
 +                              goto out;
 +              }
 +      } else
-+              AuDebugOn(bstart < *bcpup
++              AuDebugOn(btop < *bcpup
 +                        || au_test_ro(sb, *bcpup, d_inode(dentry)));
-+      AuDbg("bcpup %d, bstart %d\n", *bcpup, bstart);
++      AuDbg("bcpup %d, btop %d\n", *bcpup, btop);
 +
-+      if (*bcpup != bstart) {
++      if (*bcpup != btop) {
 +              err = au_cpup_dirs(dentry, *bcpup);
 +              if (unlikely(err))
 +                      goto out;
@@ -19708,7 +20156,8 @@ 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);
++                      need_wh = au_lkup_dentry(dentry, btop + 1,
++                                               /* AuLkup_IGNORE_PERM */ 0);
 +                      au_di_swap(tmp, dinfo);
 +                      au_rw_write_unlock(&tmp->di_rwsem);
 +                      au_di_free(tmp);
@@ -19819,7 +20268,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +
 +      h_path.dentry = au_pinned_h_parent(pin);
 +      if (udba != AuOpt_UDBA_NONE
-+          && au_dbstart(dentry) == bcpup) {
++          && au_dbtop(dentry) == bcpup) {
 +              err = au_may_del(dentry, bcpup, h_path.dentry, isdir);
 +              wh_dentry = ERR_PTR(err);
 +              if (unlikely(err))
@@ -19941,7 +20390,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +int aufs_unlink(struct inode *dir, struct dentry *dentry)
 +{
 +      int err;
-+      aufs_bindex_t bwh, bindex, bstart;
++      aufs_bindex_t bwh, bindex, btop;
 +      struct inode *inode, *h_dir, *delegated;
 +      struct dentry *parent, *wh_dentry;
 +      /* to reuduce stack size */
@@ -19970,7 +20419,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      if (unlikely(d_is_dir(dentry)))
 +              goto out_unlock; /* possible? */
 +
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      bwh = au_dbwh(dentry);
 +      bindex = -1;
 +      parent = dentry->d_parent; /* dir inode is locked */
@@ -19981,10 +20430,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      if (IS_ERR(wh_dentry))
 +              goto out_parent;
 +
-+      a->h_path.mnt = au_sbr_mnt(dentry->d_sb, bstart);
-+      a->h_path.dentry = au_h_dptr(dentry, bstart);
++      a->h_path.mnt = au_sbr_mnt(dentry->d_sb, btop);
++      a->h_path.dentry = au_h_dptr(dentry, btop);
 +      dget(a->h_path.dentry);
-+      if (bindex == bstart) {
++      if (bindex == btop) {
 +              h_dir = au_pinned_h_dir(&a->pin);
 +              delegated = NULL;
 +              err = vfsub_unlink(h_dir, &a->h_path, &delegated, /*force*/0);
@@ -20005,7 +20454,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +              epilog(dir, dentry, bindex);
 +
 +              /* update target timestamps */
-+              if (bindex == bstart) {
++              if (bindex == btop) {
 +                      vfsub_update_h_iattr(&a->h_path, /*did*/NULL);
 +                      /*ignore*/
 +                      inode->i_ctime = d_inode(a->h_path.dentry)->i_ctime;
@@ -20042,7 +20491,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +int aufs_rmdir(struct inode *dir, struct dentry *dentry)
 +{
 +      int err, rmdir_later;
-+      aufs_bindex_t bwh, bindex, bstart;
++      aufs_bindex_t bwh, bindex, btop;
 +      struct inode *inode;
 +      struct dentry *parent, *wh_dentry, *h_dentry;
 +      struct au_whtmp_rmdir *args;
@@ -20082,7 +20531,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      if (unlikely(err))
 +              goto out_parent;
 +
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      bwh = au_dbwh(dentry);
 +      bindex = -1;
 +      wh_dentry = lock_hdir_create_wh(dentry, /*isdir*/1, &bindex, &a->dt,
@@ -20091,18 +20540,18 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +      if (IS_ERR(wh_dentry))
 +              goto out_parent;
 +
-+      h_dentry = au_h_dptr(dentry, bstart);
++      h_dentry = au_h_dptr(dentry, btop);
 +      dget(h_dentry);
 +      rmdir_later = 0;
-+      if (bindex == bstart) {
-+              err = renwh_and_rmdir(dentry, bstart, &args->whlist, dir);
++      if (bindex == btop) {
++              err = renwh_and_rmdir(dentry, btop, &args->whlist, dir);
 +              if (err > 0) {
 +                      rmdir_later = err;
 +                      err = 0;
 +              }
 +      } else {
 +              /* stop monitoring */
-+              au_hn_free(au_hi(inode, bstart));
++              au_hn_free(au_hi(inode, btop));
 +
 +              /* dir inode is locked */
 +              IMustLock(d_inode(wh_dentry->d_parent));
@@ -20115,7 +20564,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +              epilog(dir, dentry, bindex);
 +
 +              if (rmdir_later) {
-+                      au_whtmp_kick_rmdir(dir, bstart, h_dentry, args);
++                      au_whtmp_kick_rmdir(dir, btop, h_dentry, args);
 +                      args = NULL;
 +              }
 +
@@ -20151,10 +20600,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_del.c linux/fs/aufs/i_op_del.c
 +}
 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   2015-12-10 17:59:16.836166410 +0100
-@@ -0,0 +1,1015 @@
++++ linux/fs/aufs/i_op_ren.c   2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,1165 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -20180,13 +20629,15 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +enum { AuSRC, AuDST, AuSrcDst };
 +enum { AuPARENT, AuCHILD, AuParentChild };
 +
-+#define AuRen_ISDIR   1
-+#define AuRen_ISSAMEDIR       (1 << 1)
-+#define AuRen_WHSRC   (1 << 2)
-+#define AuRen_WHDST   (1 << 3)
-+#define AuRen_MNT_WRITE       (1 << 4)
-+#define AuRen_DT_DSTDIR       (1 << 5)
-+#define AuRen_DIROPQ  (1 << 6)
++#define AuRen_ISDIR_SRC               1
++#define AuRen_ISDIR_DST               (1 << 1)
++#define AuRen_ISSAMEDIR               (1 << 2)
++#define AuRen_WHSRC           (1 << 3)
++#define AuRen_WHDST           (1 << 4)
++#define AuRen_MNT_WRITE               (1 << 5)
++#define AuRen_DT_DSTDIR               (1 << 6)
++#define AuRen_DIROPQ_SRC      (1 << 7)
++#define AuRen_DIROPQ_DST      (1 << 8)
 +#define au_ftest_ren(flags, name)     ((flags) & AuRen_##name)
 +#define au_fset_ren(flags, name) \
 +      do { (flags) |= AuRen_##name; } while (0)
@@ -20198,9 +20649,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              struct dentry *dentry, *h_dentry, *parent, *h_parent,
 +                      *wh_dentry;
 +              struct inode *dir, *inode;
-+              struct au_hinode *hdir;
++              struct au_hinode *hdir, *hinode;
 +              struct au_dtime dt[AuParentChild];
-+              aufs_bindex_t bstart;
++              aufs_bindex_t btop, bdiropq;
 +      } sd[AuSrcDst];
 +
 +#define src_dentry    sd[AuSRC].dentry
@@ -20211,9 +20662,11 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +#define src_h_parent  sd[AuSRC].h_parent
 +#define src_wh_dentry sd[AuSRC].wh_dentry
 +#define src_hdir      sd[AuSRC].hdir
++#define src_hinode    sd[AuSRC].hinode
 +#define src_h_dir     sd[AuSRC].hdir->hi_inode
 +#define src_dt                sd[AuSRC].dt
-+#define src_bstart    sd[AuSRC].bstart
++#define src_btop      sd[AuSRC].btop
++#define src_bdiropq   sd[AuSRC].bdiropq
 +
 +#define dst_dentry    sd[AuDST].dentry
 +#define dst_dir               sd[AuDST].dir
@@ -20223,18 +20676,23 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +#define dst_h_parent  sd[AuDST].h_parent
 +#define dst_wh_dentry sd[AuDST].wh_dentry
 +#define dst_hdir      sd[AuDST].hdir
++#define dst_hinode    sd[AuDST].hinode
 +#define dst_h_dir     sd[AuDST].hdir->hi_inode
 +#define dst_dt                sd[AuDST].dt
-+#define dst_bstart    sd[AuDST].bstart
++#define dst_btop      sd[AuDST].btop
++#define dst_bdiropq   sd[AuDST].bdiropq
 +
 +      struct dentry *h_trap;
 +      struct au_branch *br;
-+      struct au_hinode *src_hinode;
 +      struct path h_path;
 +      struct au_nhash whlist;
-+      aufs_bindex_t btgt, src_bwh, src_bdiropq;
++      aufs_bindex_t btgt, src_bwh;
 +
-+      unsigned int flags;
++      struct {
++              unsigned short auren_flags;
++              unsigned char flags;    /* syscall parameter */
++              unsigned char exchange;
++      } __packed;
 +
 +      struct au_whtmp_rmdir *thargs;
 +      struct dentry *h_dst;
@@ -20256,16 +20714,29 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      err = -EIO; \
 +} while (0)
 +
-+static void au_ren_rev_diropq(int err, struct au_ren_args *a)
++static void au_ren_do_rev_diropq(int err, struct au_ren_args *a, int idx)
 +{
 +      int rerr;
++      struct dentry *d;
++#define src_or_dst(member) a->sd[idx].member
 +
-+      au_hn_imtx_lock_nested(a->src_hinode, AuLsc_I_CHILD);
-+      rerr = au_diropq_remove(a->src_dentry, a->btgt);
-+      au_hn_imtx_unlock(a->src_hinode);
-+      au_set_dbdiropq(a->src_dentry, a->src_bdiropq);
++      d = src_or_dst(dentry); /* {src,dst}_dentry */
++      au_hn_inode_lock_nested(src_or_dst(hinode), AuLsc_I_CHILD);
++      rerr = au_diropq_remove(d, a->btgt);
++      au_hn_inode_unlock(src_or_dst(hinode));
++      au_set_dbdiropq(d, src_or_dst(bdiropq));
 +      if (rerr)
-+              RevertFailure("remove diropq %pd", a->src_dentry);
++              RevertFailure("remove diropq %pd", d);
++
++#undef src_or_dst_
++}
++
++static void au_ren_rev_diropq(int err, struct au_ren_args *a)
++{
++      if (au_ftest_ren(a->auren_flags, DIROPQ_SRC))
++              au_ren_do_rev_diropq(err, a, AuSRC);
++      if (au_ftest_ren(a->auren_flags, DIROPQ_DST))
++              au_ren_do_rev_diropq(err, a, AuDST);
 +}
 +
 +static void au_ren_rev_rename(int err, struct au_ren_args *a)
@@ -20284,7 +20755,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      delegated = NULL;
 +      rerr = vfsub_rename(a->dst_h_dir,
 +                          au_h_dptr(a->src_dentry, a->btgt),
-+                          a->src_h_dir, &a->h_path, &delegated);
++                          a->src_h_dir, &a->h_path, &delegated, a->flags);
 +      if (unlikely(rerr == -EWOULDBLOCK)) {
 +              pr_warn("cannot retry for NFSv4 delegation"
 +                      " for an internal rename\n");
@@ -20317,7 +20788,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +
 +      delegated = NULL;
 +      rerr = vfsub_rename(a->dst_h_dir, a->h_dst, a->dst_h_dir, &a->h_path,
-+                          &delegated);
++                          &delegated, a->flags);
 +      if (unlikely(rerr == -EWOULDBLOCK)) {
 +              pr_warn("cannot retry for NFSv4 delegation"
 +                      " for an internal rename\n");
@@ -20357,15 +20828,13 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      struct inode *delegated;
 +
 +      d = a->src_dentry;
-+      if (au_dbstart(d) == a->btgt) {
++      if (au_dbtop(d) == a->btgt) {
 +              a->h_path.dentry = a->dst_h_dentry;
-+              if (au_ftest_ren(a->flags, DIROPQ)
-+                  && au_dbdiropq(d) == a->btgt)
-+                      au_fclr_ren(a->flags, DIROPQ);
-+              AuDebugOn(au_dbstart(d) != a->btgt);
++              AuDebugOn(au_dbtop(d) != a->btgt);
 +              delegated = NULL;
 +              err = vfsub_rename(a->src_h_dir, au_h_dptr(d, a->btgt),
-+                                 a->dst_h_dir, &a->h_path, &delegated);
++                                 a->dst_h_dir, &a->h_path, &delegated,
++                                 a->flags);
 +              if (unlikely(err == -EWOULDBLOCK)) {
 +                      pr_warn("cannot retry for NFSv4 delegation"
 +                              " for an internal rename\n");
@@ -20409,127 +20878,179 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +}
 +
 +/* make it 'opaque' dir. */
-+static int au_ren_diropq(struct au_ren_args *a)
++static int au_ren_do_diropq(struct au_ren_args *a, int idx)
 +{
 +      int err;
-+      struct dentry *diropq;
++      struct dentry *d, *diropq;
++#define src_or_dst(member) a->sd[idx].member
 +
 +      err = 0;
-+      a->src_bdiropq = au_dbdiropq(a->src_dentry);
-+      a->src_hinode = au_hi(a->src_inode, a->btgt);
-+      au_hn_imtx_lock_nested(a->src_hinode, AuLsc_I_CHILD);
-+      diropq = au_diropq_create(a->src_dentry, a->btgt);
-+      au_hn_imtx_unlock(a->src_hinode);
++      d = src_or_dst(dentry); /* {src,dst}_dentry */
++      src_or_dst(bdiropq) = au_dbdiropq(d);
++      src_or_dst(hinode) = au_hi(src_or_dst(inode), a->btgt);
++      au_hn_inode_lock_nested(src_or_dst(hinode), AuLsc_I_CHILD);
++      diropq = au_diropq_create(d, a->btgt);
++      au_hn_inode_unlock(src_or_dst(hinode));
 +      if (IS_ERR(diropq))
 +              err = PTR_ERR(diropq);
 +      else
 +              dput(diropq);
 +
++#undef src_or_dst_
 +      return err;
 +}
 +
-+static int do_rename(struct au_ren_args *a)
++static int au_ren_diropq(struct au_ren_args *a)
 +{
 +      int err;
-+      struct dentry *d, *h_d;
++      unsigned char always;
++      struct dentry *d;
 +
-+      /* prepare workqueue args for asynchronous rmdir */
-+      h_d = a->dst_h_dentry;
-+      if (au_ftest_ren(a->flags, ISDIR) && d_is_positive(h_d)) {
-+              err = -ENOMEM;
-+              a->thargs = au_whtmp_rmdir_alloc(a->src_dentry->d_sb, GFP_NOFS);
-+              if (unlikely(!a->thargs))
++      err = 0;
++      d = a->dst_dentry; /* already renamed on the branch */
++      always = !!au_opt_test(au_mntflags(d->d_sb), ALWAYS_DIROPQ);
++      if (au_ftest_ren(a->auren_flags, ISDIR_SRC)
++          && a->btgt != au_dbdiropq(a->src_dentry)
++          && (a->dst_wh_dentry
++              || a->btgt <= au_dbdiropq(d)
++              /* hide the lower to keep xino */
++              /* the lowers may not be a dir, but we hide them anyway */
++              || a->btgt < au_dbbot(d)
++              || always)) {
++              AuDbg("here\n");
++              err = au_ren_do_diropq(a, AuSRC);
++              if (unlikely(err))
 +                      goto out;
-+              a->h_dst = dget(h_d);
-+      }
-+
-+      /* create whiteout for src_dentry */
-+      if (au_ftest_ren(a->flags, WHSRC)) {
-+              a->src_bwh = au_dbwh(a->src_dentry);
-+              AuDebugOn(a->src_bwh >= 0);
-+              a->src_wh_dentry
-+                      = au_wh_create(a->src_dentry, a->btgt, a->src_h_parent);
-+              err = PTR_ERR(a->src_wh_dentry);
-+              if (IS_ERR(a->src_wh_dentry))
-+                      goto out_thargs;
-+      }
-+
-+      /* lookup whiteout for dentry */
-+      if (au_ftest_ren(a->flags, WHDST)) {
-+              h_d = au_wh_lkup(a->dst_h_parent, &a->dst_dentry->d_name,
-+                               a->br);
-+              err = PTR_ERR(h_d);
-+              if (IS_ERR(h_d))
-+                      goto out_whsrc;
-+              if (d_is_negative(h_d))
-+                      dput(h_d);
-+              else
-+                      a->dst_wh_dentry = h_d;
++              au_fset_ren(a->auren_flags, DIROPQ_SRC);
 +      }
++      if (!a->exchange)
++              goto out; /* success */
 +
-+      /* rename dentry to tmpwh */
-+      if (a->thargs) {
-+              err = au_whtmp_ren(a->dst_h_dentry, a->br);
++      d = a->src_dentry; /* already renamed on the branch */
++      if (au_ftest_ren(a->auren_flags, ISDIR_DST)
++          && a->btgt != au_dbdiropq(a->dst_dentry)
++          && (a->btgt < au_dbdiropq(d)
++              || a->btgt < au_dbbot(d)
++              || always)) {
++              AuDbgDentry(a->src_dentry);
++              AuDbgDentry(a->dst_dentry);
++              err = au_ren_do_diropq(a, AuDST);
 +              if (unlikely(err))
-+                      goto out_whdst;
++                      goto out_rev_src;
++              au_fset_ren(a->auren_flags, DIROPQ_DST);
++      }
++      goto out; /* success */
 +
-+              d = a->dst_dentry;
-+              au_set_h_dptr(d, a->btgt, NULL);
-+              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);
++out_rev_src:
++      AuDbg("err %d, reverting src\n", err);
++      au_ren_rev_diropq(err, a);
++out:
++      return err;
++}
++
++static int do_rename(struct au_ren_args *a)
++{
++      int err;
++      struct dentry *d, *h_d;
++
++      if (!a->exchange) {
++              /* prepare workqueue args for asynchronous rmdir */
++              h_d = a->dst_h_dentry;
++              if (au_ftest_ren(a->auren_flags, ISDIR_DST)
++                  && d_is_positive(h_d)) {
++                      err = -ENOMEM;
++                      a->thargs = au_whtmp_rmdir_alloc(a->src_dentry->d_sb,
++                                                       GFP_NOFS);
++                      if (unlikely(!a->thargs))
++                              goto out;
++                      a->h_dst = dget(h_d);
++              }
++
++              /* create whiteout for src_dentry */
++              if (au_ftest_ren(a->auren_flags, WHSRC)) {
++                      a->src_bwh = au_dbwh(a->src_dentry);
++                      AuDebugOn(a->src_bwh >= 0);
++                      a->src_wh_dentry = au_wh_create(a->src_dentry, a->btgt,
++                                                      a->src_h_parent);
++                      err = PTR_ERR(a->src_wh_dentry);
++                      if (IS_ERR(a->src_wh_dentry))
++                              goto out_thargs;
++              }
++
++              /* lookup whiteout for dentry */
++              if (au_ftest_ren(a->auren_flags, WHDST)) {
++                      h_d = au_wh_lkup(a->dst_h_parent,
++                                       &a->dst_dentry->d_name, a->br);
++                      err = PTR_ERR(h_d);
++                      if (IS_ERR(h_d))
++                              goto out_whsrc;
++                      if (d_is_negative(h_d))
++                              dput(h_d);
++                      else
++                              a->dst_wh_dentry = h_d;
++              }
++
++              /* rename dentry to tmpwh */
++              if (a->thargs) {
++                      err = au_whtmp_ren(a->dst_h_dentry, a->br);
++                      if (unlikely(err))
++                              goto out_whdst;
++
++                      d = a->dst_dentry;
++                      au_set_h_dptr(d, a->btgt, NULL);
++                      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);
++              }
 +      }
 +
-+      BUG_ON(d_is_positive(a->dst_h_dentry) && a->src_bstart != a->btgt);
++      BUG_ON(d_is_positive(a->dst_h_dentry) && a->src_btop != a->btgt);
 +
 +      /* rename by vfs_rename or cpup */
-+      d = a->dst_dentry;
-+      if (au_ftest_ren(a->flags, ISDIR)
-+          && (a->dst_wh_dentry
-+              || au_dbdiropq(d) == a->btgt
-+              /* hide the lower to keep xino */
-+              || a->btgt < au_dbend(d)
-+              || au_opt_test(au_mntflags(d->d_sb), ALWAYS_DIROPQ)))
-+              au_fset_ren(a->flags, DIROPQ);
 +      err = au_ren_or_cpup(a);
 +      if (unlikely(err))
 +              /* leave the copied-up one */
 +              goto out_whtmp;
 +
 +      /* make dir opaque */
-+      if (au_ftest_ren(a->flags, DIROPQ)) {
-+              err = au_ren_diropq(a);
-+              if (unlikely(err))
-+                      goto out_rename;
-+      }
++      err = au_ren_diropq(a);
++      if (unlikely(err))
++              goto out_rename;
 +
 +      /* update target timestamps */
-+      AuDebugOn(au_dbstart(a->src_dentry) != a->btgt);
++      if (a->exchange) {
++              AuDebugOn(au_dbtop(a->dst_dentry) != a->btgt);
++              a->h_path.dentry = au_h_dptr(a->dst_dentry, a->btgt);
++              vfsub_update_h_iattr(&a->h_path, /*did*/NULL); /*ignore*/
++              a->dst_inode->i_ctime = d_inode(a->h_path.dentry)->i_ctime;
++      }
++      AuDebugOn(au_dbtop(a->src_dentry) != a->btgt);
 +      a->h_path.dentry = au_h_dptr(a->src_dentry, a->btgt);
 +      vfsub_update_h_iattr(&a->h_path, /*did*/NULL); /*ignore*/
 +      a->src_inode->i_ctime = d_inode(a->h_path.dentry)->i_ctime;
 +
-+      /* remove whiteout for dentry */
-+      if (a->dst_wh_dentry) {
-+              a->h_path.dentry = a->dst_wh_dentry;
-+              err = au_wh_unlink_dentry(a->dst_h_dir, &a->h_path,
-+                                        a->dst_dentry);
-+              if (unlikely(err))
-+                      goto out_diropq;
-+      }
++      if (!a->exchange) {
++              /* remove whiteout for dentry */
++              if (a->dst_wh_dentry) {
++                      a->h_path.dentry = a->dst_wh_dentry;
++                      err = au_wh_unlink_dentry(a->dst_h_dir, &a->h_path,
++                                                a->dst_dentry);
++                      if (unlikely(err))
++                              goto out_diropq;
++              }
 +
-+      /* remove whtmp */
-+      if (a->thargs)
-+              au_ren_del_whtmp(a); /* ignore this error */
++              /* remove whtmp */
++              if (a->thargs)
++                      au_ren_del_whtmp(a); /* ignore this error */
 +
-+      au_fhsm_wrote(a->src_dentry->d_sb, a->btgt, /*force*/0);
++              au_fhsm_wrote(a->src_dentry->d_sb, a->btgt, /*force*/0);
++      }
 +      err = 0;
 +      goto out_success;
 +
 +out_diropq:
-+      if (au_ftest_ren(a->flags, DIROPQ))
-+              au_ren_rev_diropq(err, a);
++      au_ren_rev_diropq(err, a);
 +out_rename:
 +      au_ren_rev_rename(err, a);
 +      dput(a->h_dst);
@@ -20578,10 +21099,10 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +{
 +      int err;
 +      unsigned int rdhash;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +
-+      bstart = au_dbstart(dentry);
-+      if (bstart != btgt) {
++      btop = au_dbtop(dentry);
++      if (btop != btgt) {
 +              struct au_nhash whlist;
 +
 +              SiMustAnyLock(dentry->d_sb);
@@ -20597,7 +21118,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              goto out;
 +      }
 +
-+      if (bstart == au_dbtaildir(dentry))
++      if (btop == au_dbtaildir(dentry))
 +              return 0; /* success */
 +
 +      err = au_test_empty_lower(dentry);
@@ -20622,7 +21143,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      SiMustAnyLock(d->d_sb);
 +
 +      err = 0;
-+      if (au_ftest_ren(a->flags, ISDIR) && a->dst_inode) {
++      if (au_ftest_ren(a->auren_flags, ISDIR_DST) && a->dst_inode) {
 +              rdhash = au_sbi(d->d_sb)->si_rdhash;
 +              if (!rdhash)
 +                      rdhash = au_rdhash_est(au_dir_size(/*file*/NULL, d));
@@ -20630,17 +21151,20 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              if (unlikely(err))
 +                      goto out;
 +
-+              au_set_dbstart(d, a->dst_bstart);
-+              err = may_rename_dstdir(d, &a->whlist);
-+              au_set_dbstart(d, a->btgt);
++              if (!a->exchange) {
++                      au_set_dbtop(d, a->dst_btop);
++                      err = may_rename_dstdir(d, &a->whlist);
++                      au_set_dbtop(d, a->btgt);
++              } else
++                      err = may_rename_srcdir(d, a->btgt);
 +      }
-+      a->dst_h_dentry = au_h_dptr(d, au_dbstart(d));
++      a->dst_h_dentry = au_h_dptr(d, au_dbtop(d));
 +      if (unlikely(err))
 +              goto out;
 +
 +      d = a->src_dentry;
-+      a->src_h_dentry = au_h_dptr(d, au_dbstart(d));
-+      if (au_ftest_ren(a->flags, ISDIR)) {
++      a->src_h_dentry = au_h_dptr(d, au_dbtop(d));
++      if (au_ftest_ren(a->auren_flags, ISDIR_SRC)) {
 +              err = may_rename_srcdir(d, a->btgt);
 +              if (unlikely(err)) {
 +                      au_nhash_wh_free(&a->whlist);
@@ -20662,9 +21186,9 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      int err, isdir;
 +      struct inode *h_inode;
 +
-+      if (a->src_bstart == a->btgt) {
++      if (a->src_btop == a->btgt) {
 +              err = au_may_del(a->src_dentry, a->btgt, a->src_h_parent,
-+                               au_ftest_ren(a->flags, ISDIR));
++                               au_ftest_ren(a->auren_flags, ISDIR_SRC));
 +              if (unlikely(err))
 +                      goto out;
 +              err = -EINVAL;
@@ -20673,7 +21197,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      }
 +
 +      err = 0;
-+      if (a->dst_bstart != a->btgt)
++      if (a->dst_btop != a->btgt)
 +              goto out;
 +
 +      err = -ENOTEMPTY;
@@ -20681,7 +21205,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              goto out;
 +
 +      err = -EIO;
-+      isdir = !!au_ftest_ren(a->flags, ISDIR);
++      isdir = !!au_ftest_ren(a->auren_flags, ISDIR_DST);
 +      if (d_really_is_negative(a->dst_dentry)) {
 +              if (d_is_negative(a->dst_h_dentry))
 +                      err = au_may_add(a->dst_dentry, a->btgt,
@@ -20731,7 +21255,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +{
 +      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))
++      if (au_ftest_ren(a->auren_flags, MNT_WRITE))
 +              vfsub_mnt_drop_write(au_br_mnt(a->br));
 +}
 +
@@ -20749,18 +21273,18 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      err = vfsub_mnt_want_write(au_br_mnt(a->br));
 +      if (unlikely(err))
 +              goto out;
-+      au_fset_ren(a->flags, MNT_WRITE);
++      au_fset_ren(a->auren_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);
 +      if (unlikely(a->src_hdir->hi_inode != d_inode(a->src_h_parent)
 +                   || a->dst_hdir->hi_inode != d_inode(a->dst_h_parent)))
 +              err = au_busy_or_stale();
-+      if (!err && au_dbstart(a->src_dentry) == a->btgt)
++      if (!err && au_dbtop(a->src_dentry) == a->btgt)
 +              err = au_h_verify(a->src_h_dentry, udba,
 +                                d_inode(a->src_h_parent), a->src_h_parent,
 +                                a->br);
-+      if (!err && au_dbstart(a->dst_dentry) == a->btgt)
++      if (!err && au_dbtop(a->dst_dentry) == a->btgt)
 +              err = au_h_verify(a->dst_h_dentry, udba,
 +                                d_inode(a->dst_h_parent), a->dst_h_parent,
 +                                a->br);
@@ -20782,27 +21306,37 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +
 +      dir = a->dst_dir;
 +      dir->i_version++;
-+      if (au_ftest_ren(a->flags, ISDIR)) {
++      if (au_ftest_ren(a->auren_flags, ISDIR_SRC)) {
 +              /* is this updating defined in POSIX? */
 +              au_cpup_attr_timesizes(a->src_inode);
 +              au_cpup_attr_nlink(dir, /*force*/1);
 +      }
-+
 +      au_dir_ts(dir, a->btgt);
 +
-+      if (au_ftest_ren(a->flags, ISSAMEDIR))
++      if (a->exchange) {
++              dir = a->src_dir;
++              dir->i_version++;
++              if (au_ftest_ren(a->auren_flags, ISDIR_DST)) {
++                      /* is this updating defined in POSIX? */
++                      au_cpup_attr_timesizes(a->dst_inode);
++                      au_cpup_attr_nlink(dir, /*force*/1);
++              }
++              au_dir_ts(dir, a->btgt);
++      }
++
++      if (au_ftest_ren(a->auren_flags, ISSAMEDIR))
 +              return;
 +
 +      dir = a->src_dir;
 +      dir->i_version++;
-+      if (au_ftest_ren(a->flags, ISDIR))
++      if (au_ftest_ren(a->auren_flags, ISDIR_SRC))
 +              au_cpup_attr_nlink(dir, /*force*/1);
 +      au_dir_ts(dir, a->btgt);
 +}
 +
 +static void au_ren_refresh(struct au_ren_args *a)
 +{
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +      struct dentry *d, *h_d;
 +      struct inode *i, *h_i;
 +      struct super_block *sb;
@@ -20815,48 +21349,54 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +
 +      i = a->dst_inode;
 +      if (i) {
-+              if (!au_ftest_ren(a->flags, ISDIR))
-+                      vfsub_drop_nlink(i);
-+              else {
-+                      vfsub_dead_dir(i);
-+                      au_cpup_attr_timesizes(i);
-+              }
-+              au_update_dbrange(d, /*do_put_zero*/1);
++              if (!a->exchange) {
++                      if (!au_ftest_ren(a->auren_flags, ISDIR_DST))
++                              vfsub_drop_nlink(i);
++                      else {
++                              vfsub_dead_dir(i);
++                              au_cpup_attr_timesizes(i);
++                      }
++                      au_update_dbrange(d, /*do_put_zero*/1);
++              } else
++                      au_cpup_attr_nlink(i, /*force*/1);
 +      } else {
-+              bend = a->btgt;
-+              for (bindex = au_dbstart(d); bindex < bend; bindex++)
++              bbot = a->btgt;
++              for (bindex = au_dbtop(d); bindex < bbot; bindex++)
 +                      au_set_h_dptr(d, bindex, NULL);
-+              bend = au_dbend(d);
-+              for (bindex = a->btgt + 1; bindex <= bend; bindex++)
++              bbot = au_dbbot(d);
++              for (bindex = a->btgt + 1; bindex <= bbot; bindex++)
 +                      au_set_h_dptr(d, bindex, NULL);
 +              au_update_dbrange(d, /*do_put_zero*/0);
 +      }
 +
 +      d = a->src_dentry;
-+      au_set_dbwh(d, -1);
-+      bend = au_dbend(d);
-+      for (bindex = a->btgt + 1; bindex <= bend; bindex++) {
-+              h_d = au_h_dptr(d, bindex);
-+              if (h_d)
-+                      au_set_h_dptr(d, bindex, NULL);
-+      }
-+      au_set_dbend(d, a->btgt);
-+
-+      sb = d->d_sb;
-+      i = a->src_inode;
-+      if (au_opt_test(au_mntflags(sb), PLINK) && au_plink_test(i))
-+              return; /* success */
-+
-+      bend = au_ibend(i);
-+      for (bindex = a->btgt + 1; bindex <= bend; bindex++) {
-+              h_i = au_h_iptr(i, bindex);
-+              if (h_i) {
-+                      au_xino_write(sb, bindex, h_i->i_ino, /*ino*/0);
-+                      /* ignore this error */
-+                      au_set_h_iptr(i, bindex, NULL, 0);
++      if (!a->exchange) {
++              au_set_dbwh(d, -1);
++              bbot = au_dbbot(d);
++              for (bindex = a->btgt + 1; bindex <= bbot; bindex++) {
++                      h_d = au_h_dptr(d, bindex);
++                      if (h_d)
++                              au_set_h_dptr(d, bindex, NULL);
++              }
++              au_set_dbbot(d, a->btgt);
++
++              sb = d->d_sb;
++              i = a->src_inode;
++              if (au_opt_test(au_mntflags(sb), PLINK) && au_plink_test(i))
++                      return; /* success */
++
++              bbot = au_ibbot(i);
++              for (bindex = a->btgt + 1; bindex <= bbot; bindex++) {
++                      h_i = au_h_iptr(i, bindex);
++                      if (h_i) {
++                              au_xino_write(sb, bindex, h_i->i_ino, /*ino*/0);
++                              /* ignore this error */
++                              au_set_h_iptr(i, bindex, NULL, 0);
++                      }
 +              }
++              au_set_ibbot(i, a->btgt);
 +      }
-+      au_set_ibend(i, a->btgt);
++              d_drop(a->src_dentry);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -20883,7 +21423,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      return btgt;
 +}
 +
-+/* sets src_bstart, dst_bstart and btgt */
++/* sets src_btop, dst_btop and btgt */
 +static int au_ren_wbr(struct au_ren_args *a)
 +{
 +      int err;
@@ -20892,16 +21432,19 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              .flags          = AuWrDir_ADD_ENTRY
 +      };
 +
-+      a->src_bstart = au_dbstart(a->src_dentry);
-+      a->dst_bstart = au_dbstart(a->dst_dentry);
-+      if (au_ftest_ren(a->flags, ISDIR))
++      a->src_btop = au_dbtop(a->src_dentry);
++      a->dst_btop = au_dbtop(a->dst_dentry);
++      if (au_ftest_ren(a->auren_flags, ISDIR_SRC)
++          || au_ftest_ren(a->auren_flags, ISDIR_DST))
 +              au_fset_wrdir(wr_dir_args.flags, ISDIR);
-+      wr_dir_args.force_btgt = a->src_bstart;
-+      if (a->dst_inode && a->dst_bstart < a->src_bstart)
-+              wr_dir_args.force_btgt = a->dst_bstart;
++      wr_dir_args.force_btgt = a->src_btop;
++      if (a->dst_inode && a->dst_btop < a->src_btop)
++              wr_dir_args.force_btgt = a->dst_btop;
 +      wr_dir_args.force_btgt = au_wbr(a->dst_dentry, wr_dir_args.force_btgt);
 +      err = au_wr_dir(a->dst_dentry, a->src_dentry, &wr_dir_args);
 +      a->btgt = err;
++      if (a->exchange)
++              au_update_dbtop(a->dst_dentry);
 +
 +      return err;
 +}
@@ -20910,19 +21453,20 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +{
 +      a->h_path.dentry = a->src_h_parent;
 +      au_dtime_store(a->src_dt + AuPARENT, a->src_parent, &a->h_path);
-+      if (!au_ftest_ren(a->flags, ISSAMEDIR)) {
++      if (!au_ftest_ren(a->auren_flags, ISSAMEDIR)) {
 +              a->h_path.dentry = a->dst_h_parent;
 +              au_dtime_store(a->dst_dt + AuPARENT, a->dst_parent, &a->h_path);
 +      }
 +
-+      au_fclr_ren(a->flags, DT_DSTDIR);
-+      if (!au_ftest_ren(a->flags, ISDIR))
++      au_fclr_ren(a->auren_flags, DT_DSTDIR);
++      if (!au_ftest_ren(a->auren_flags, ISDIR_SRC)
++          && !a->exchange)
 +              return;
 +
 +      a->h_path.dentry = a->src_h_dentry;
 +      au_dtime_store(a->src_dt + AuCHILD, a->src_dentry, &a->h_path);
 +      if (d_is_positive(a->dst_h_dentry)) {
-+              au_fset_ren(a->flags, DT_DSTDIR);
++              au_fset_ren(a->auren_flags, DT_DSTDIR);
 +              a->h_path.dentry = a->dst_h_dentry;
 +              au_dtime_store(a->dst_dt + AuCHILD, a->dst_dentry, &a->h_path);
 +      }
@@ -20931,25 +21475,25 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +static void au_ren_rev_dt(int err, struct au_ren_args *a)
 +{
 +      struct dentry *h_d;
-+      struct mutex *h_mtx;
++      struct inode *h_inode;
 +
 +      au_dtime_revert(a->src_dt + AuPARENT);
-+      if (!au_ftest_ren(a->flags, ISSAMEDIR))
++      if (!au_ftest_ren(a->auren_flags, ISSAMEDIR))
 +              au_dtime_revert(a->dst_dt + AuPARENT);
 +
-+      if (au_ftest_ren(a->flags, ISDIR) && err != -EIO) {
++      if (au_ftest_ren(a->auren_flags, ISDIR_SRC) && err != -EIO) {
 +              h_d = a->src_dt[AuCHILD].dt_h_path.dentry;
-+              h_mtx = &d_inode(h_d)->i_mutex;
-+              mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
++              h_inode = d_inode(h_d);
++              inode_lock_nested(h_inode, AuLsc_I_CHILD);
 +              au_dtime_revert(a->src_dt + AuCHILD);
-+              mutex_unlock(h_mtx);
++              inode_unlock(h_inode);
 +
-+              if (au_ftest_ren(a->flags, DT_DSTDIR)) {
++              if (au_ftest_ren(a->auren_flags, DT_DSTDIR)) {
 +                      h_d = a->dst_dt[AuCHILD].dt_h_path.dentry;
-+                      h_mtx = &d_inode(h_d)->i_mutex;
-+                      mutex_lock_nested(h_mtx, AuLsc_I_CHILD);
++                      h_inode = d_inode(h_d);
++                      inode_lock_nested(h_inode, AuLsc_I_CHILD);
 +                      au_dtime_revert(a->dst_dt + AuCHILD);
-+                      mutex_unlock(h_mtx);
++                      inode_unlock(h_inode);
 +              }
 +      }
 +}
@@ -20957,22 +21501,30 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +/* ---------------------------------------------------------------------- */
 +
 +int aufs_rename(struct inode *_src_dir, struct dentry *_src_dentry,
-+              struct inode *_dst_dir, struct dentry *_dst_dentry)
++              struct inode *_dst_dir, struct dentry *_dst_dentry,
++              unsigned int _flags)
 +{
-+      int err, flags;
++      int err, lock_flags;
 +      /* reduce stack space */
 +      struct au_ren_args *a;
++      struct au_pin pin;
 +
-+      AuDbg("%pd, %pd\n", _src_dentry, _dst_dentry);
++      AuDbg("%pd, %pd, 0x%x\n", _src_dentry, _dst_dentry, _flags);
 +      IMustLock(_src_dir);
 +      IMustLock(_dst_dir);
 +
++      err = -EINVAL;
++      if (unlikely(_flags & RENAME_WHITEOUT))
++              goto out;
++
 +      err = -ENOMEM;
 +      BUILD_BUG_ON(sizeof(*a) > PAGE_SIZE);
 +      a = kzalloc(sizeof(*a), GFP_NOFS);
 +      if (unlikely(!a))
 +              goto out;
 +
++      a->flags = _flags;
++      a->exchange = _flags & RENAME_EXCHANGE;
 +      a->src_dir = _src_dir;
 +      a->src_dentry = _src_dentry;
 +      a->src_inode = NULL;
@@ -20986,20 +21538,33 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              a->dst_inode = d_inode(a->dst_dentry);
 +      a->dst_parent = a->dst_dentry->d_parent; /* dir inode is locked */
 +      if (a->dst_inode) {
-+              IMustLock(a->dst_inode);
++              /*
++               * if EXCHANGE && src is non-dir && dst is dir,
++               * dst is not locked.
++               */
++              /* IMustLock(a->dst_inode); */
 +              au_igrab(a->dst_inode);
 +      }
 +
 +      err = -ENOTDIR;
-+      flags = AuLock_FLUSH | AuLock_NOPLM | AuLock_GEN;
++      lock_flags = AuLock_FLUSH | AuLock_NOPLM | AuLock_GEN;
 +      if (d_is_dir(a->src_dentry)) {
-+              au_fset_ren(a->flags, ISDIR);
-+              if (unlikely(d_really_is_positive(a->dst_dentry)
++              au_fset_ren(a->auren_flags, ISDIR_SRC);
++              if (unlikely(!a->exchange
++                           && d_really_is_positive(a->dst_dentry)
 +                           && !d_is_dir(a->dst_dentry)))
 +                      goto out_free;
-+              flags |= AuLock_DIRS;
++              lock_flags |= AuLock_DIRS;
++      }
++      if (a->dst_inode && d_is_dir(a->dst_dentry)) {
++              au_fset_ren(a->auren_flags, ISDIR_DST);
++              if (unlikely(!a->exchange
++                           && d_really_is_positive(a->src_dentry)
++                           && !d_is_dir(a->src_dentry)))
++                      goto out_free;
++              lock_flags |= AuLock_DIRS;
 +      }
-+      err = aufs_read_and_write_lock2(a->dst_dentry, a->src_dentry, flags);
++      err = aufs_read_and_write_lock2(a->dst_dentry, a->src_dentry, lock_flags);
 +      if (unlikely(err))
 +              goto out_free;
 +
@@ -21009,14 +21574,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      err = -ENOENT;
 +      if (a->dst_inode) {
 +              /*
-+               * If it is a dir, VFS unhash dst_dentry before this
++               * If it is a dir, VFS unhash it before this
 +               * function. It means we cannot rely upon d_unhashed().
 +               */
 +              if (unlikely(!a->dst_inode->i_nlink))
 +                      goto out_unlock;
-+              if (!S_ISDIR(a->dst_inode->i_mode)) {
++              if (!au_ftest_ren(a->auren_flags, ISDIR_DST)) {
 +                      err = au_d_hashed_positive(a->dst_dentry);
-+                      if (unlikely(err))
++                      if (unlikely(err && !a->exchange))
 +                              goto out_unlock;
 +              } else if (unlikely(IS_DEADDIR(a->dst_inode)))
 +                      goto out_unlock;
@@ -21032,7 +21597,7 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      if (unlikely(d_inode(a->dst_parent) == d_inode(a->src_dentry)))
 +              goto out_unlock;
 +
-+      au_fset_ren(a->flags, ISSAMEDIR); /* temporary */
++      au_fset_ren(a->auren_flags, ISSAMEDIR); /* temporary */
 +      di_write_lock_parent(a->dst_parent);
 +
 +      /* which branch we process */
@@ -21048,40 +21613,44 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              goto out_children;
 +
 +      /* prepare the writable parent dir on the same branch */
-+      if (a->dst_bstart == a->btgt) {
-+              au_fset_ren(a->flags, WHDST);
++      if (a->dst_btop == a->btgt) {
++              au_fset_ren(a->auren_flags, WHDST);
 +      } else {
 +              err = au_cpup_dirs(a->dst_dentry, a->btgt);
 +              if (unlikely(err))
 +                      goto out_children;
 +      }
 +
-+      if (a->src_dir != a->dst_dir) {
-+              /*
-+               * this temporary unlock is safe,
-+               * because both dir->i_mutex are locked.
-+               */
-+              di_write_unlock(a->dst_parent);
-+              di_write_lock_parent(a->src_parent);
-+              err = au_wr_dir_need_wh(a->src_dentry,
-+                                      au_ftest_ren(a->flags, ISDIR),
-+                                      &a->btgt);
-+              di_write_unlock(a->src_parent);
-+              di_write_lock2_parent(a->src_parent, a->dst_parent, /*isdir*/1);
-+              au_fclr_ren(a->flags, ISSAMEDIR);
-+      } else
-+              err = au_wr_dir_need_wh(a->src_dentry,
-+                                      au_ftest_ren(a->flags, ISDIR),
-+                                      &a->btgt);
++      err = 0;
++      if (!a->exchange) {
++              if (a->src_dir != a->dst_dir) {
++                      /*
++                       * this temporary unlock is safe,
++                       * because both dir->i_mutex are locked.
++                       */
++                      di_write_unlock(a->dst_parent);
++                      di_write_lock_parent(a->src_parent);
++                      err = au_wr_dir_need_wh(a->src_dentry,
++                                              au_ftest_ren(a->auren_flags,
++                                                           ISDIR_SRC),
++                                              &a->btgt);
++                      di_write_unlock(a->src_parent);
++                      di_write_lock2_parent(a->src_parent, a->dst_parent,
++                                            /*isdir*/1);
++                      au_fclr_ren(a->auren_flags, ISSAMEDIR);
++              } else
++                      err = au_wr_dir_need_wh(a->src_dentry,
++                                              au_ftest_ren(a->auren_flags,
++                                                           ISDIR_SRC),
++                                              &a->btgt);
++      }
 +      if (unlikely(err < 0))
 +              goto out_children;
 +      if (err)
-+              au_fset_ren(a->flags, WHSRC);
++              au_fset_ren(a->auren_flags, WHSRC);
 +
 +      /* cpup src */
-+      if (a->src_bstart != a->btgt) {
-+              struct au_pin pin;
-+
++      if (a->src_btop != a->btgt) {
 +              err = au_pin(&pin, a->src_dentry, a->btgt,
 +                           au_opt_udba(a->src_dentry->d_sb),
 +                           AuPin_DI_LOCKED | AuPin_MNT_WRITE);
@@ -21089,20 +21658,45 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +                      struct au_cp_generic cpg = {
 +                              .dentry = a->src_dentry,
 +                              .bdst   = a->btgt,
-+                              .bsrc   = a->src_bstart,
++                              .bsrc   = a->src_btop,
 +                              .len    = -1,
 +                              .pin    = &pin,
 +                              .flags  = AuCpup_DTIME | AuCpup_HOPEN
 +                      };
-+                      AuDebugOn(au_dbstart(a->src_dentry) != a->src_bstart);
++                      AuDebugOn(au_dbtop(a->src_dentry) != a->src_btop);
 +                      err = au_sio_cpup_simple(&cpg);
 +                      au_unpin(&pin);
 +              }
 +              if (unlikely(err))
 +                      goto out_children;
-+              a->src_bstart = a->btgt;
++              a->src_btop = a->btgt;
 +              a->src_h_dentry = au_h_dptr(a->src_dentry, a->btgt);
-+              au_fset_ren(a->flags, WHSRC);
++              if (!a->exchange)
++                      au_fset_ren(a->auren_flags, WHSRC);
++      }
++
++      /* cpup dst */
++      if (a->exchange && a->dst_inode
++          && a->dst_btop != a->btgt) {
++              err = au_pin(&pin, a->dst_dentry, a->btgt,
++                           au_opt_udba(a->dst_dentry->d_sb),
++                           AuPin_DI_LOCKED | AuPin_MNT_WRITE);
++              if (!err) {
++                      struct au_cp_generic cpg = {
++                              .dentry = a->dst_dentry,
++                              .bdst   = a->btgt,
++                              .bsrc   = a->dst_btop,
++                              .len    = -1,
++                              .pin    = &pin,
++                              .flags  = AuCpup_DTIME | AuCpup_HOPEN
++                      };
++                      err = au_sio_cpup_simple(&cpg);
++                      au_unpin(&pin);
++              }
++              if (unlikely(err))
++                      goto out_children;
++              a->dst_btop = a->btgt;
++              a->dst_h_dentry = au_h_dptr(a->dst_dentry, a->btgt);
 +      }
 +
 +      /* lock them all */
@@ -21111,12 +21705,14 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +              /* leave the copied-up one */
 +              goto out_children;
 +
-+      if (!au_opt_test(au_mntflags(a->dst_dir->i_sb), UDBA_NONE))
-+              err = au_may_ren(a);
-+      else if (unlikely(a->dst_dentry->d_name.len > AUFS_MAX_NAMELEN))
-+              err = -ENAMETOOLONG;
-+      if (unlikely(err))
-+              goto out_hdir;
++      if (!a->exchange) {
++              if (!au_opt_test(au_mntflags(a->dst_dir->i_sb), UDBA_NONE))
++                      err = au_may_ren(a);
++              else if (unlikely(a->dst_dentry->d_name.len > AUFS_MAX_NAMELEN))
++                      err = -ENAMETOOLONG;
++              if (unlikely(err))
++                      goto out_hdir;
++      }
 +
 +      /* store timestamps to be revertible */
 +      au_ren_dt(a);
@@ -21140,20 +21736,23 @@ diff -urN /usr/share/empty/fs/aufs/i_op_ren.c linux/fs/aufs/i_op_ren.c
 +      au_ren_unlock(a);
 +out_children:
 +      au_nhash_wh_free(&a->whlist);
-+      if (err && a->dst_inode && a->dst_bstart != a->btgt) {
-+              AuDbg("bstart %d, btgt %d\n", a->dst_bstart, a->btgt);
++      if (err && a->dst_inode && a->dst_btop != a->btgt) {
++              AuDbg("btop %d, btgt %d\n", a->dst_btop, a->btgt);
 +              au_set_h_dptr(a->dst_dentry, a->btgt, NULL);
-+              au_set_dbstart(a->dst_dentry, a->dst_bstart);
++              au_set_dbtop(a->dst_dentry, a->dst_btop);
 +      }
 +out_parent:
-+      if (!err)
-+              d_move(a->src_dentry, a->dst_dentry);
-+      else {
-+              au_update_dbstart(a->dst_dentry);
++      if (!err) {
++              if (!a->exchange)
++                      d_move(a->src_dentry, a->dst_dentry);
++              else
++                      d_exchange(a->src_dentry, a->dst_dentry);
++      } else {
++              au_update_dbtop(a->dst_dentry);
 +              if (!a->dst_inode)
 +                      d_drop(a->dst_dentry);
 +      }
-+      if (au_ftest_ren(a->flags, ISSAMEDIR))
++      if (au_ftest_ren(a->auren_flags, ISSAMEDIR))
 +              di_write_unlock(a->dst_parent);
 +      else
 +              di_write_unlock2(a->src_parent, a->dst_parent);
@@ -21170,7 +21769,7 @@ 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      2015-09-24 10:47:58.248052907 +0200
++++ linux/fs/aufs/Kconfig      2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,185 @@
 +config AUFS_FS
 +      tristate "Aufs (Advanced multi layered unification filesystem) support"
@@ -21359,10 +21958,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       2015-11-11 17:21:46.918863802 +0100
-@@ -0,0 +1,146 @@
++++ linux/fs/aufs/loop.c       2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,147 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -21467,7 +22066,8 @@ diff -urN /usr/share/empty/fs/aufs/loop.c linux/fs/aufs/loop.c
 +      new_nelem = au_warn_loopback_nelem + au_warn_loopback_step;
 +      a = au_kzrealloc(au_warn_loopback_array,
 +                       au_warn_loopback_nelem * sizeof(unsigned long),
-+                       new_nelem * sizeof(unsigned long), GFP_ATOMIC);
++                       new_nelem * sizeof(unsigned long), GFP_ATOMIC,
++                       /*may_shrink*/0);
 +      if (a) {
 +              au_warn_loopback_nelem = new_nelem;
 +              au_warn_loopback_array = a;
@@ -21509,10 +22109,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       2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/loop.h       2017-07-29 12:14:25.903042072 +0200
 @@ -0,0 +1,52 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -21565,7 +22165,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     2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/magic.mk     2017-07-29 12:14:25.903042072 +0200
 @@ -0,0 +1,30 @@
 +
 +# defined in ${srctree}/fs/fuse/inode.c
@@ -21599,7 +22199,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     2015-09-24 10:47:58.248052907 +0200
++++ linux/fs/aufs/Makefile     2017-07-29 12:14:25.896375188 +0200
 @@ -0,0 +1,44 @@
 +
 +include ${src}/magic.mk
@@ -21647,10 +22247,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     2015-12-10 17:59:16.839499823 +0100
-@@ -0,0 +1,221 @@
++++ linux/fs/aufs/module.c     2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,266 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -21674,42 +22274,66 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +#include <linux/seq_file.h>
 +#include "aufs.h"
 +
-+void *au_kzrealloc(void *p, unsigned int nused, unsigned int new_sz, gfp_t gfp)
++/* shrinkable realloc */
++void *au_krealloc(void *p, unsigned int new_sz, gfp_t gfp, int may_shrink)
 +{
-+      if (new_sz <= nused)
-+              return p;
++      size_t sz;
++      int diff;
 +
-+      p = krealloc(p, new_sz, gfp);
-+      if (p)
++      sz = 0;
++      diff = -1;
++      if (p) {
++#if 0 /* unused */
++              if (!new_sz) {
++                      kfree(p);
++                      p = NULL;
++                      goto out;
++              }
++#else
++              AuDebugOn(!new_sz);
++#endif
++              sz = ksize(p);
++              diff = au_kmidx_sub(sz, new_sz);
++      }
++      if (sz && !diff)
++              goto out;
++
++      if (sz < new_sz)
++              /* expand or SLOB */
++              p = krealloc(p, new_sz, gfp);
++      else if (new_sz < sz && may_shrink) {
++              /* shrink */
++              void *q;
++
++              q = kmalloc(new_sz, gfp);
++              if (q) {
++                      if (p) {
++                              memcpy(q, p, new_sz);
++                              kfree(p);
++                      }
++                      p = q;
++              } else
++                      p = NULL;
++      }
++
++out:
++      return p;
++}
++
++void *au_kzrealloc(void *p, unsigned int nused, unsigned int new_sz, gfp_t gfp,
++                 int may_shrink)
++{
++      p = au_krealloc(p, new_sz, gfp, may_shrink);
++      if (p && new_sz > nused)
 +              memset(p + nused, 0, new_sz - nused);
 +      return p;
 +}
 +
 +/* ---------------------------------------------------------------------- */
-+
 +/*
 + * aufs caches
 + */
-+struct kmem_cache *au_cachep[AuCache_Last];
-+static int __init au_cache_init(void)
-+{
-+      au_cachep[AuCache_DINFO] = AuCacheCtor(au_dinfo, au_di_init_once);
-+      if (au_cachep[AuCache_DINFO])
-+              /* SLAB_DESTROY_BY_RCU */
-+              au_cachep[AuCache_ICNTNR] = AuCacheCtor(au_icntnr,
-+                                                      au_icntnr_init_once);
-+      if (au_cachep[AuCache_ICNTNR])
-+              au_cachep[AuCache_FINFO] = AuCacheCtor(au_finfo,
-+                                                     au_fi_init_once);
-+      if (au_cachep[AuCache_FINFO])
-+              au_cachep[AuCache_VDIR] = AuCache(au_vdir);
-+      if (au_cachep[AuCache_VDIR])
-+              au_cachep[AuCache_DEHSTR] = AuCache(au_vdir_dehstr);
-+      if (au_cachep[AuCache_DEHSTR])
-+              return 0;
-+
-+      return -ENOMEM;
-+}
++struct kmem_cache *au_cache[AuCache_Last];
 +
 +static void au_cache_fin(void)
 +{
@@ -21724,11 +22348,32 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +      /* excluding AuCache_HNOTIFY */
 +      BUILD_BUG_ON(AuCache_HNOTIFY + 1 != AuCache_Last);
 +      for (i = 0; i < AuCache_HNOTIFY; i++) {
-+              kmem_cache_destroy(au_cachep[i]);
-+              au_cachep[i] = NULL;
++              kmem_cache_destroy(au_cache[i]);
++              au_cache[i] = NULL;
 +      }
 +}
 +
++static int __init au_cache_init(void)
++{
++      au_cache[AuCache_DINFO] = AuCacheCtor(au_dinfo, au_di_init_once);
++      if (au_cache[AuCache_DINFO])
++              /* SLAB_DESTROY_BY_RCU */
++              au_cache[AuCache_ICNTNR] = AuCacheCtor(au_icntnr,
++                                                     au_icntnr_init_once);
++      if (au_cache[AuCache_ICNTNR])
++              au_cache[AuCache_FINFO] = AuCacheCtor(au_finfo,
++                                                    au_fi_init_once);
++      if (au_cache[AuCache_FINFO])
++              au_cache[AuCache_VDIR] = AuCache(au_vdir);
++      if (au_cache[AuCache_VDIR])
++              au_cache[AuCache_DEHSTR] = AuCache(au_vdir_dehstr);
++      if (au_cache[AuCache_DEHSTR])
++              return 0;
++
++      au_cache_fin();
++      return -ENOMEM;
++}
++
 +/* ---------------------------------------------------------------------- */
 +
 +int au_dir_roflags;
@@ -21738,11 +22383,9 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 + * iterate_supers_type() doesn't protect us from
 + * remounting (branch management)
 + */
-+struct au_splhead au_sbilist;
++struct au_sphlhead au_sbilist;
 +#endif
 +
-+struct lock_class_key au_lc_key[AuLcKey_Last];
-+
 +/*
 + * functions for module interface.
 + */
@@ -21760,7 +22403,7 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +module_param_named(brs, sysaufs_brs, int, S_IRUGO);
 +
 +/* this module parameter has no meaning when USER_NS is disabled */
-+static bool au_userns;
++bool au_userns;
 +MODULE_PARM_DESC(allow_userns, "allow unprivileged to mount under userns");
 +module_param_named(allow_userns, au_userns, bool, S_IRUGO);
 +
@@ -21773,9 +22416,9 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +      int err;
 +
 +      err = seq_path(seq, path, au_esc_chars);
-+      if (err > 0)
++      if (err >= 0)
 +              err = 0;
-+      else if (err < 0)
++      else
 +              err = -ENOMEM;
 +
 +      return err;
@@ -21801,6 +22444,8 @@ diff -urN /usr/share/empty/fs/aufs/module.c linux/fs/aufs/module.c
 +      for (i = 0; i < AuIop_Last; i++)
 +              aufs_iop_nogetattr[i].getattr = NULL;
 +
++      memset(au_cache, 0, sizeof(au_cache));  /* including hnotify */
++
 +      au_sbilist_init();
 +      sysaufs_brs_init();
 +      au_debug_init();
@@ -21872,10 +22517,10 @@ 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     2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,104 @@
++++ linux/fs/aufs/module.h     2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,101 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -21907,28 +22552,25 @@ diff -urN /usr/share/empty/fs/aufs/module.h linux/fs/aufs/module.h
 +
 +/* module parameters */
 +extern int sysaufs_brs;
++extern bool au_userns;
 +
 +/* ---------------------------------------------------------------------- */
 +
 +extern int au_dir_roflags;
 +
-+enum {
-+      AuLcNonDir_FIINFO,
-+      AuLcNonDir_DIINFO,
-+      AuLcNonDir_IIINFO,
-+
-+      AuLcDir_FIINFO,
-+      AuLcDir_DIINFO,
-+      AuLcDir_IIINFO,
++void *au_krealloc(void *p, unsigned int new_sz, gfp_t gfp, int may_shrink);
++void *au_kzrealloc(void *p, unsigned int nused, unsigned int new_sz, gfp_t gfp,
++                 int may_shrink);
 +
-+      AuLcSymlink_DIINFO,
-+      AuLcSymlink_IIINFO,
-+
-+      AuLcKey_Last
-+};
-+extern struct lock_class_key au_lc_key[AuLcKey_Last];
++static inline int au_kmidx_sub(size_t sz, size_t new_sz)
++{
++#ifndef CONFIG_SLOB
++      return kmalloc_index(sz) - kmalloc_index(new_sz);
++#else
++      return -1; /* SLOB is untested */
++#endif
++}
 +
-+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
@@ -21953,19 +22595,19 @@ diff -urN /usr/share/empty/fs/aufs/module.h linux/fs/aufs/module.h
 +      AuCache_Last
 +};
 +
++extern struct kmem_cache *au_cache[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); } \
++{ return kmem_cache_alloc(au_cache[AuCache_##index], GFP_NOFS); } \
 +static inline void au_cache_free_##name(struct au_##name *p) \
-+{ kmem_cache_free(au_cachep[AuCache_##index], p); }
++{ kmem_cache_free(au_cache[AuCache_##index], p); }
 +
 +AuCacheFuncs(dinfo, DINFO);
 +AuCacheFuncs(icntnr, ICNTNR);
@@ -21980,10 +22622,10 @@ diff -urN /usr/share/empty/fs/aufs/module.h linux/fs/aufs/module.h
 +#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     2015-12-10 17:59:16.839499823 +0100
-@@ -0,0 +1,703 @@
++++ linux/fs/aufs/mvdown.c     2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,704 @@
 +/*
-+ * Copyright (C) 2011-2015 Junjiro R. Okajima
++ * Copyright (C) 2011-2017 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
@@ -22050,27 +22692,27 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +static int find_lower_writable(struct au_mvd_args *a)
 +{
 +      struct super_block *sb;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct au_branch *br;
 +
 +      sb = a->sb;
 +      bindex = a->mvd_bsrc;
-+      bend = au_sbend(sb);
++      bbot = au_sbbot(sb);
 +      if (a->mvdown.flags & AUFS_MVDOWN_FHSM_LOWER)
-+              for (bindex++; bindex <= bend; bindex++) {
++              for (bindex++; bindex <= bbot; bindex++) {
 +                      br = au_sbr(sb, bindex);
 +                      if (au_br_fhsm(br->br_perm)
 +                          && (!(au_br_sb(br)->s_flags & MS_RDONLY)))
 +                              return bindex;
 +              }
 +      else if (!(a->mvdown.flags & AUFS_MVDOWN_ROLOWER))
-+              for (bindex++; bindex <= bend; bindex++) {
++              for (bindex++; bindex <= bbot; bindex++) {
 +                      br = au_sbr(sb, bindex);
 +                      if (!au_br_rdonly(br))
 +                              return bindex;
 +              }
 +      else
-+              for (bindex++; bindex <= bend; bindex++) {
++              for (bindex++; bindex <= bbot; bindex++) {
 +                      br = au_sbr(sb, bindex);
 +                      if (!(au_br_sb(br)->s_flags & MS_RDONLY)) {
 +                              if (au_br_rdonly(br))
@@ -22093,7 +22735,7 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +      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)
++      if (au_dbbot(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);
@@ -22347,20 +22989,20 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +      /* maintain internal array */
 +      if (!(a->mvdown.flags & AUFS_MVDOWN_KUPPER)) {
 +              au_set_h_dptr(a->dentry, a->mvd_bsrc, NULL);
-+              au_set_dbstart(a->dentry, a->mvd_bdst);
++              au_set_dbtop(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);
++              au_set_ibtop(a->inode, a->mvd_bdst);
 +      } else {
 +              /* hide the lower */
 +              au_set_h_dptr(a->dentry, a->mvd_bdst, NULL);
-+              au_set_dbend(a->dentry, a->mvd_bsrc);
++              au_set_dbbot(a->dentry, a->mvd_bsrc);
 +              au_set_h_iptr(a->inode, a->mvd_bdst, NULL, /*flags*/0);
-+              au_set_ibend(a->inode, a->mvd_bsrc);
++              au_set_ibbot(a->inode, a->mvd_bsrc);
 +      }
-+      if (au_dbend(a->dentry) < a->mvd_bdst)
-+              au_set_dbend(a->dentry, a->mvd_bdst);
-+      if (au_ibend(a->inode) < a->mvd_bdst)
-+              au_set_ibend(a->inode, a->mvd_bdst);
++      if (au_dbbot(a->dentry) < a->mvd_bdst)
++              au_set_dbbot(a->dentry, a->mvd_bdst);
++      if (au_ibbot(a->inode) < a->mvd_bdst)
++              au_set_ibbot(a->inode, a->mvd_bdst);
 +
 +out_unlock:
 +      au_do_unlock(dmsg, a);
@@ -22378,7 +23020,7 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +
 +      err = 0;
 +      plinked = !!au_opt_test(au_mntflags(a->sb), PLINK);
-+      if (au_dbstart(a->dentry) == a->mvd_bsrc
++      if (au_dbtop(a->dentry) == a->mvd_bsrc
 +          && au_dcount(a->dentry) == 1
 +          && atomic_read(&a->inode->i_count) == 1
 +          /* && a->mvd_h_src_inode->i_nlink == 1 */
@@ -22389,7 +23031,7 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +      err = -EBUSY;
 +      AU_MVD_PR(dmsg,
 +                "b%d, d{b%d, c%d?}, i{c%d?, l%u}, hi{l%u}, p{%d, %d}\n",
-+                a->mvd_bsrc, au_dbstart(a->dentry), au_dcount(a->dentry),
++                a->mvd_bsrc, au_dbtop(a->dentry), au_dcount(a->dentry),
 +                atomic_read(&a->inode->i_count), a->inode->i_nlink,
 +                a->mvd_h_src_inode->i_nlink,
 +                plinked, plinked ? au_plink_test(a->inode) : 0);
@@ -22448,11 +23090,12 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +      au_di_swap(tmp, dinfo);
 +
 +      /* returns the number of positive dentries */
-+      err = au_lkup_dentry(a->dentry, a->mvd_bsrc + 1, /*type*/0);
++      err = au_lkup_dentry(a->dentry, a->mvd_bsrc + 1,
++                           /* AuLkup_IGNORE_PERM */ 0);
 +      if (!err)
 +              a->bwh = au_dbwh(a->dentry);
 +      else if (err > 0)
-+              a->bfound = au_dbstart(a->dentry);
++              a->bfound = au_dbtop(a->dentry);
 +
 +      au_di_swap(tmp, dinfo);
 +      au_rw_write_unlock(&tmp->di_rwsem);
@@ -22539,22 +23182,22 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +
 +      err = -EINVAL;
 +      if (!(a->mvdown.flags & AUFS_MVDOWN_BRID_UPPER))
-+              a->mvd_bsrc = au_ibstart(a->inode);
++              a->mvd_bsrc = au_ibtop(a->inode);
 +      else {
 +              a->mvd_bsrc = au_br_index(a->sb, a->mvd_src_brid);
 +              if (unlikely(a->mvd_bsrc < 0
-+                           || (a->mvd_bsrc < au_dbstart(a->dentry)
-+                               || au_dbend(a->dentry) < a->mvd_bsrc
++                           || (a->mvd_bsrc < au_dbtop(a->dentry)
++                               || au_dbbot(a->dentry) < a->mvd_bsrc
 +                               || !au_h_dptr(a->dentry, a->mvd_bsrc))
-+                           || (a->mvd_bsrc < au_ibstart(a->inode)
-+                               || au_ibend(a->inode) < a->mvd_bsrc
++                           || (a->mvd_bsrc < au_ibtop(a->inode)
++                               || au_ibbot(a->inode) < a->mvd_bsrc
 +                               || !au_h_iptr(a->inode, a->mvd_bsrc)))) {
 +                      a->mvd_errno = EAU_MVDOWN_NOUPPER;
 +                      AU_MVD_PR(dmsg, "no upper\n");
 +                      goto out;
 +              }
 +      }
-+      if (unlikely(a->mvd_bsrc == au_sbend(a->sb))) {
++      if (unlikely(a->mvd_bsrc == au_sbbot(a->sb))) {
 +              a->mvd_errno = EAU_MVDOWN_BOTTOM;
 +              AU_MVD_PR(dmsg, "on the bottom\n");
 +              goto out;
@@ -22584,7 +23227,7 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +      } else {
 +              a->mvd_bdst = au_br_index(a->sb, a->mvd_dst_brid);
 +              if (unlikely(a->mvd_bdst < 0
-+                           || au_sbend(a->sb) < a->mvd_bdst)) {
++                           || au_sbbot(a->sb) < a->mvd_bdst)) {
 +                      a->mvd_errno = EAU_MVDOWN_NOLOWERBR;
 +                      AU_MVD_PR(dmsg, "no lower brid\n");
 +                      goto out;
@@ -22642,14 +23285,14 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +      dmsg = !!(args->mvdown.flags & AUFS_MVDOWN_DMSG);
 +      args->parent = dget_parent(dentry);
 +      args->dir = d_inode(args->parent);
-+      mutex_lock_nested(&args->dir->i_mutex, I_MUTEX_PARENT);
++      inode_lock_nested(args->dir, I_MUTEX_PARENT);
 +      dput(args->parent);
 +      if (unlikely(args->parent != dentry->d_parent)) {
 +              AU_MVD_PR(dmsg, "parent dir is moved\n");
 +              goto out_dir;
 +      }
 +
-+      mutex_lock_nested(&inode->i_mutex, I_MUTEX_CHILD);
++      inode_lock_nested(inode, I_MUTEX_CHILD);
 +      err = aufs_read_lock(dentry, AuLock_DW | AuLock_FLUSH | AuLock_NOPLMW);
 +      if (unlikely(err))
 +              goto out_inode;
@@ -22673,9 +23316,9 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +      di_write_unlock(args->parent);
 +      aufs_read_unlock(dentry, AuLock_DW);
 +out_inode:
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +out_dir:
-+      mutex_unlock(&args->dir->i_mutex);
++      inode_unlock(args->dir);
 +out_free:
 +      e = copy_to_user(uarg, &args->mvdown, sizeof(args->mvdown));
 +      if (unlikely(e))
@@ -22687,10 +23330,10 @@ diff -urN /usr/share/empty/fs/aufs/mvdown.c linux/fs/aufs/mvdown.c
 +}
 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       2015-12-10 17:59:16.839499823 +0100
-@@ -0,0 +1,1859 @@
++++ linux/fs/aufs/opts.c       2017-07-29 12:14:25.903042072 +0200
+@@ -0,0 +1,1846 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -23115,6 +23758,10 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      {AuWbrCreate_MFSV, "mfs:%d"},
 +      {AuWbrCreate_MFSV, "most-free-space:%d"},
 +
++      /* top-down regardless the parent, and then mfs */
++      {AuWbrCreate_TDMFS, "tdmfs:%d"},
++      {AuWbrCreate_TDMFSV, "tdmfs:%d:%d"},
++
 +      {AuWbrCreate_MFSRR, "mfsrr:%d"},
 +      {AuWbrCreate_MFSRRV, "mfsrr:%d:%d"},
 +      {AuWbrCreate_PMFS, "pmfs"},
@@ -23125,28 +23772,6 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      {-1, NULL}
 +};
 +
-+/*
-+ * cf. linux/lib/parser.c and cmdline.c
-+ * gave up calling memparse() since it uses simple_strtoull() instead of
-+ * kstrto...().
-+ */
-+static int noinline_for_stack
-+au_match_ull(substring_t *s, unsigned long long *result)
-+{
-+      int err;
-+      unsigned int len;
-+      char a[32];
-+
-+      err = -ERANGE;
-+      len = s->to - s->from;
-+      if (len + 1 <= sizeof(a)) {
-+              memcpy(a, s->from, len);
-+              a[len] = '\0';
-+              err = kstrtoull(a, 0, result);
-+      }
-+      return err;
-+}
-+
 +static int au_wbr_mfs_wmark(substring_t *arg, char *str,
 +                          struct au_opt_wbr_create *create)
 +{
@@ -23154,7 +23779,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      unsigned long long ull;
 +
 +      err = 0;
-+      if (!au_match_ull(arg, &ull))
++      if (!match_u64(arg, &ull))
 +              create->mfsrr_watermark = ull;
 +      else {
 +              pr_err("bad integer in %s\n", str);
@@ -23190,6 +23815,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      create->wbr_create = err;
 +      switch (err) {
 +      case AuWbrCreate_MFSRRV:
++      case AuWbrCreate_TDMFSV:
 +      case AuWbrCreate_PMFSRRV:
 +              e = au_wbr_mfs_wmark(&args[0], str, create);
 +              if (!e)
@@ -23198,6 +23824,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                      err = e;
 +              break;
 +      case AuWbrCreate_MFSRR:
++      case AuWbrCreate_TDMFS:
 +      case AuWbrCreate_PMFSRR:
 +              e = au_wbr_mfs_wmark(&args[0], str, create);
 +              if (unlikely(e)) {
@@ -23408,10 +24035,12 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                              AuDbg("%d sec\n", u.create->mfs_second);
 +                              break;
 +                      case AuWbrCreate_MFSRR:
++                      case AuWbrCreate_TDMFS:
 +                              AuDbg("%llu watermark\n",
 +                                        u.create->mfsrr_watermark);
 +                              break;
 +                      case AuWbrCreate_MFSRRV:
++                      case AuWbrCreate_TDMFSV:
 +                      case AuWbrCreate_PMFSRRV:
 +                              AuDbg("%llu watermark, %d sec\n",
 +                                        u.create->mfsrr_watermark,
@@ -23528,7 +24157,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      err = -EINVAL;
 +      root = sb->s_root;
 +      aufs_read_lock(root, AuLock_FLUSH);
-+      if (bindex < 0 || au_sbend(sb) < bindex) {
++      if (bindex < 0 || au_sbbot(sb) < bindex) {
 +              pr_err("out of bounds, %d\n", bindex);
 +              goto out;
 +      }
@@ -23584,7 +24213,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      err = -EINVAL;
 +      root = sb->s_root;
 +      aufs_read_lock(root, AuLock_FLUSH);
-+      if (bindex < 0 || au_sbend(sb) < bindex) {
++      if (bindex < 0 || au_sbbot(sb) < bindex) {
 +              pr_err("out of bounds, %d\n", bindex);
 +              goto out;
 +      }
@@ -23633,7 +24262,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                             substring_t args[])
 +{
 +      int err;
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +      struct path path;
 +      struct dentry *root;
 +
@@ -23646,8 +24275,8 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      xino_itrunc->bindex = -1;
 +      root = sb->s_root;
 +      aufs_read_lock(root, AuLock_FLUSH);
-+      bend = au_sbend(sb);
-+      for (bindex = 0; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (bindex = 0; bindex <= bbot; bindex++) {
 +              if (au_h_dptr(root, bindex) == path.dentry) {
 +                      xino_itrunc->bindex = bindex;
 +                      break;
@@ -23791,7 +24420,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                      }
 +                      u.xino_itrunc->bindex = n;
 +                      aufs_read_lock(root, AuLock_FLUSH);
-+                      if (n < 0 || au_sbend(sb) < n) {
++                      if (n < 0 || au_sbbot(sb) < n) {
 +                              pr_err("out of bounds, %d\n", n);
 +                              aufs_read_unlock(root, !AuLock_IR);
 +                              break;
@@ -23977,6 +24606,8 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      switch (create->wbr_create) {
 +      case AuWbrCreate_MFSRRV:
 +      case AuWbrCreate_MFSRR:
++      case AuWbrCreate_TDMFS:
++      case AuWbrCreate_TDMFSV:
 +      case AuWbrCreate_PMFSRR:
 +      case AuWbrCreate_PMFSRRV:
 +              sbinfo->si_wbr_mfs.mfsrr_watermark = create->mfsrr_watermark;
@@ -24169,7 +24800,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      err = 0;
 +      switch (opt->type) {
 +      case Opt_append:
-+              opt->add.bindex = au_sbend(sb) + 1;
++              opt->add.bindex = au_sbbot(sb) + 1;
 +              if (opt->add.bindex < 0)
 +                      opt->add.bindex = 0;
 +              goto add;
@@ -24208,7 +24839,6 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +              }
 +              break;
 +      }
-+
 +      return err;
 +}
 +
@@ -24217,7 +24847,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                     struct au_opts *opts)
 +{
 +      int err;
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +      struct dentry *root, *parent, *h_root;
 +
 +      err = 0;
@@ -24234,8 +24864,8 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +              /* safe d_parent access */
 +              parent = opt->xino.file->f_path.dentry->d_parent;
 +              root = sb->s_root;
-+              bend = au_sbend(sb);
-+              for (bindex = 0; bindex <= bend; bindex++) {
++              bbot = au_sbbot(sb);
++              for (bindex = 0; bindex <= bbot; bindex++) {
 +                      h_root = au_h_dptr(root, bindex);
 +                      if (h_root == parent) {
 +                              au_xino_brid_set(sb, au_sbr_id(sb, bindex));
@@ -24258,7 +24888,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                 unsigned int pending)
 +{
 +      int err, fhsm;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      unsigned char do_plink, skip, do_free, can_no_dreval;
 +      struct au_branch *br;
 +      struct au_wbr *wbr;
@@ -24276,16 +24906,16 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +              if (unlikely(!au_br_writable(au_sbr_perm(sb, 0))))
 +                      pr_warn("first branch should be rw\n");
 +              if (unlikely(au_opt_test(sbinfo->si_mntflags, SHWH)))
-+                      pr_warn("shwh should be used with ro\n");
++                      pr_warn_once("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_warn("udba=*notify requires xino\n");
++              pr_warn_once("udba=*notify requires xino\n");
 +
 +      if (au_opt_test(sbinfo->si_mntflags, DIRPERM1))
-+              pr_warn("dirperm1 breaks the protection"
-+                      " by the permission bits on the lower branch\n");
++              pr_warn_once("dirperm1 breaks the protection"
++                           " by the permission bits on the lower branch\n");
 +
 +      err = 0;
 +      fhsm = 0;
@@ -24294,8 +24924,8 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      do_plink = !!au_opt_test(sbinfo->si_mntflags, PLINK);
 +      can_no_dreval = !!au_opt_test((sbinfo->si_mntflags | pending),
 +                                    UDBA_NONE);
-+      bend = au_sbend(sb);
-+      for (bindex = 0; !err && bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (bindex = 0; !err && bindex <= bbot; bindex++) {
 +              skip = 0;
 +              h_dir = au_h_iptr(dir, bindex);
 +              br = au_sbr(sb, bindex);
@@ -24360,13 +24990,13 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +                      continue;
 +
 +              hdir = au_hi(dir, bindex);
-+              au_hn_imtx_lock_nested(hdir, AuLsc_I_PARENT);
++              au_hn_inode_lock_nested(hdir, AuLsc_I_PARENT);
 +              if (wbr)
 +                      wbr_wh_write_lock(wbr);
 +              err = au_wh_init(br, sb);
 +              if (wbr)
 +                      wbr_wh_write_unlock(wbr);
-+              au_hn_imtx_unlock(hdir);
++              au_hn_inode_unlock(hdir);
 +
 +              if (!err && do_free) {
 +                      kfree(wbr);
@@ -24381,7 +25011,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +
 +      if (fhsm >= 2) {
 +              au_fset_si(sbinfo, FHSM);
-+              for (bindex = bend; bindex >= 0; bindex--) {
++              for (bindex = bbot; bindex >= 0; bindex--) {
 +                      br = au_sbr(sb, bindex);
 +                      if (au_br_fhsm(br->br_perm)) {
 +                              au_fhsm_set_bottom(sb, bindex);
@@ -24400,7 +25030,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +{
 +      int err;
 +      unsigned int tmp;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct au_opt *opt;
 +      struct au_opt_xino *opt_xino, xino;
 +      struct au_sbinfo *sbinfo;
@@ -24433,8 +25063,8 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      else if (unlikely(err < 0))
 +              goto out;
 +
-+      bend = au_sbend(sb);
-+      if (unlikely(bend < 0)) {
++      bbot = au_sbbot(sb);
++      if (unlikely(bbot < 0)) {
 +              err = -EINVAL;
 +              pr_err("no branches\n");
 +              goto out;
@@ -24469,8 +25099,8 @@ diff -urN /usr/share/empty/fs/aufs/opts.c linux/fs/aufs/opts.c
 +      tmp &= AuOptMask_UDBA;
 +      sbinfo->si_mntflags &= ~AuOptMask_UDBA;
 +      sbinfo->si_mntflags |= tmp;
-+      bend = au_sbend(sb);
-+      for (bindex = 0; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (bindex = 0; bindex <= bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              err = au_hnotify_reset_br(tmp, br, br->br_perm);
 +              if (unlikely(err))
@@ -24550,10 +25180,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       2015-12-10 17:59:16.839499823 +0100
-@@ -0,0 +1,211 @@
++++ linux/fs/aufs/opts.h       2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,213 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -24581,7 +25211,6 @@ diff -urN /usr/share/empty/fs/aufs/opts.h linux/fs/aufs/opts.h
 +#include <linux/path.h>
 +
 +struct file;
-+struct super_block;
 +
 +/* ---------------------------------------------------------------------- */
 +
@@ -24653,6 +25282,8 @@ diff -urN /usr/share/empty/fs/aufs/opts.h linux/fs/aufs/opts.h
 +      AuWbrCreate_MFSV,       /* mfs with seconds */
 +      AuWbrCreate_MFSRR,      /* mfs then rr */
 +      AuWbrCreate_MFSRRV,     /* mfs then rr with seconds */
++      AuWbrCreate_TDMFS,      /* top down regardless parent and mfs */
++      AuWbrCreate_TDMFSV,     /* top down regardless parent and mfs */
 +      AuWbrCreate_PMFS,       /* parent and mfs */
 +      AuWbrCreate_PMFSV,      /* parent and mfs with seconds */
 +      AuWbrCreate_PMFSRR,     /* parent, mfs and round-robin */
@@ -24753,6 +25384,7 @@ diff -urN /usr/share/empty/fs/aufs/opts.h linux/fs/aufs/opts.h
 +const char *au_optstr_wbr_create(int wbr_create);
 +
 +void au_opts_free(struct au_opts *opts);
++struct super_block;
 +int au_opts_parse(struct super_block *sb, char *str, struct au_opts *opts);
 +int au_opts_verify(struct super_block *sb, unsigned long sb_flags,
 +                 unsigned int pending);
@@ -24765,10 +25397,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      2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,528 @@
++++ linux/fs/aufs/plink.c      2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,514 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -24814,6 +25446,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +{
 +      int err;
 +      pid_t pid, ppid;
++      struct task_struct *parent, *prev;
 +      struct au_sbinfo *sbi;
 +
 +      SiMustAnyLock(sb);
@@ -24828,11 +25461,22 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +              goto out;
 +
 +      /* todo: it highly depends upon /sbin/mount.aufs */
++      prev = NULL;
++      parent = current;
++      ppid = 0;
 +      rcu_read_lock();
-+      ppid = task_pid_vnr(rcu_dereference(current->real_parent));
++      while (1) {
++              parent = rcu_dereference(parent->real_parent);
++              if (parent == prev)
++                      break;
++              ppid = task_pid_vnr(parent);
++              if (pid == ppid) {
++                      rcu_read_unlock();
++                      goto out;
++              }
++              prev = parent;
++      }
 +      rcu_read_unlock();
-+      if (pid == ppid)
-+              goto out;
 +
 +      if (au_ftest_lock(flags, NOPLMW)) {
 +              /* if there is no i_mutex lock in VFS, we don't need to wait */
@@ -24893,7 +25537,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      int i;
 +      struct au_sbinfo *sbinfo;
 +      struct hlist_head *plink_hlist;
-+      struct pseudo_link *plink;
++      struct au_icntnr *icntnr;
 +
 +      SiMustAnyLock(sb);
 +
@@ -24904,8 +25548,8 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      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);
++              hlist_for_each_entry_rcu(icntnr, plink_hlist, plink)
++                      AuDbg("%lu\n", icntnr->vfs_inode.i_ino);
 +              rcu_read_unlock();
 +      }
 +}
@@ -24917,7 +25561,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      int found, i;
 +      struct au_sbinfo *sbinfo;
 +      struct hlist_head *plink_hlist;
-+      struct pseudo_link *plink;
++      struct au_icntnr *icntnr;
 +
 +      sbinfo = au_sbi(inode->i_sb);
 +      AuRwMustAnyLock(&sbinfo->si_rwsem);
@@ -24928,8 +25572,8 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      i = au_plink_hash(inode->i_ino);
 +      plink_hlist = &sbinfo->si_plink[i].head;
 +      rcu_read_lock();
-+      hlist_for_each_entry_rcu(plink, plink_hlist, hlist)
-+              if (plink->inode == inode) {
++      hlist_for_each_entry_rcu(icntnr, plink_hlist, plink)
++              if (&icntnr->vfs_inode == inode) {
 +                      found = 1;
 +                      break;
 +              }
@@ -24969,12 +25613,12 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +                                     struct au_branch *br)
 +{
 +      struct dentry *h_dentry;
-+      struct mutex *h_mtx;
++      struct inode *h_inode;
 +
-+      h_mtx = &d_inode(h_parent)->i_mutex;
-+      mutex_lock_nested(h_mtx, AuLsc_I_CHILD2);
++      h_inode = d_inode(h_parent);
++      vfsub_inode_lock_shared_nested(h_inode, AuLsc_I_CHILD2);
 +      h_dentry = vfsub_lkup_one(tgtname, h_parent);
-+      mutex_unlock(h_mtx);
++      inode_unlock_shared(h_inode);
 +      return h_dentry;
 +}
 +
@@ -25027,7 +25671,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      struct inode *h_dir, *delegated;
 +
 +      h_dir = d_inode(h_parent);
-+      mutex_lock_nested(&h_dir->i_mutex, AuLsc_I_CHILD2);
++      inode_lock_nested(h_dir, AuLsc_I_CHILD2);
 +again:
 +      h_path.dentry = vfsub_lkup_one(tgt, h_parent);
 +      err = PTR_ERR(h_path.dentry);
@@ -25063,7 +25707,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      dput(h_path.dentry);
 +
 +out:
-+      mutex_unlock(&h_dir->i_mutex);
++      inode_unlock(h_dir);
 +      return err;
 +}
 +
@@ -25112,24 +25756,6 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      return err;
 +}
 +
-+/* free a single plink */
-+static void do_put_plink(struct pseudo_link *plink, int do_del)
-+{
-+      if (do_del)
-+              hlist_del(&plink->hlist);
-+      iput(plink->inode);
-+      kfree(plink);
-+}
-+
-+static void do_put_plink_rcu(struct rcu_head *rcu)
-+{
-+      struct pseudo_link *plink;
-+
-+      plink = container_of(rcu, struct pseudo_link, rcu);
-+      iput(plink->inode);
-+      kfree(plink);
-+}
-+
 +/*
 + * create a new pseudo-link for @h_dentry on @bindex.
 + * the linked inode is held in aufs @inode.
@@ -25140,7 +25766,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      struct super_block *sb;
 +      struct au_sbinfo *sbinfo;
 +      struct hlist_head *plink_hlist;
-+      struct pseudo_link *plink, *tmp;
++      struct au_icntnr *icntnr;
 +      struct au_sphlhead *sphl;
 +      int found, err, cnt, i;
 +
@@ -25156,23 +25782,19 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      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);
-+      else {
-+              err = -ENOMEM;
-+              goto out;
-+      }
++      au_igrab(inode);
 +
 +      spin_lock(&sphl->spin);
-+      hlist_for_each_entry(plink, plink_hlist, hlist) {
-+              if (plink->inode == inode) {
++      hlist_for_each_entry(icntnr, plink_hlist, plink) {
++              if (&icntnr->vfs_inode == inode) {
 +                      found = 1;
 +                      break;
 +              }
 +      }
-+      if (!found)
-+              hlist_add_head_rcu(&tmp->hlist, plink_hlist);
++      if (!found) {
++              icntnr = container_of(inode, struct au_icntnr, vfs_inode);
++              hlist_add_head_rcu(&icntnr->plink, plink_hlist);
++      }
 +      spin_unlock(&sphl->spin);
 +      if (!found) {
 +              cnt = au_sphl_count(sphl);
@@ -25181,19 +25803,13 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +                      AuWarn1(msg ", %d\n", cnt);
 +#undef msg
 +              err = whplink(h_dentry, inode, bindex, au_sbr(sb, bindex));
-+      } else {
-+              do_put_plink(tmp, 0);
-+              return;
-+      }
-+
-+out:
-+      if (unlikely(err)) {
-+              pr_warn("err %d, damaged pseudo link.\n", err);
-+              if (tmp) {
-+                      au_sphl_del_rcu(&tmp->hlist, sphl);
-+                      call_rcu(&tmp->rcu, do_put_plink_rcu);
++              if (unlikely(err)) {
++                      pr_warn("err %d, damaged pseudo link.\n", err);
++                      au_sphl_del_rcu(&icntnr->plink, sphl);
++                      iput(&icntnr->vfs_inode);
 +              }
-+      }
++      } else
++              iput(&icntnr->vfs_inode);
 +}
 +
 +/* free all plinks */
@@ -25203,7 +25819,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      struct au_sbinfo *sbinfo;
 +      struct hlist_head *plink_hlist;
 +      struct hlist_node *tmp;
-+      struct pseudo_link *plink;
++      struct au_icntnr *icntnr;
 +
 +      SiMustWriteLock(sb);
 +
@@ -25219,8 +25835,8 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +                      pr_warn("pseudo-link is not flushed");
 +                      warned = 1;
 +              }
-+              hlist_for_each_entry_safe(plink, tmp, plink_hlist, hlist)
-+                      do_put_plink(plink, 0);
++              hlist_for_each_entry_safe(icntnr, tmp, plink_hlist, plink)
++                      iput(&icntnr->vfs_inode);
 +              INIT_HLIST_HEAD(plink_hlist);
 +      }
 +}
@@ -25239,13 +25855,13 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +static int au_plink_do_half_refresh(struct inode *inode, aufs_bindex_t br_id)
 +{
 +      int do_put;
-+      aufs_bindex_t bstart, bend, bindex;
++      aufs_bindex_t btop, bbot, bindex;
 +
 +      do_put = 0;
-+      bstart = au_ibstart(inode);
-+      bend = au_ibend(inode);
-+      if (bstart >= 0) {
-+              for (bindex = bstart; bindex <= bend; bindex++) {
++      btop = au_ibtop(inode);
++      bbot = au_ibbot(inode);
++      if (btop >= 0) {
++              for (bindex = btop; bindex <= bbot; bindex++) {
 +                      if (!au_h_iptr(inode, bindex)
 +                          || au_ii_br_id(inode, bindex) != br_id)
 +                              continue;
@@ -25254,7 +25870,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +                      break;
 +              }
 +              if (do_put)
-+                      for (bindex = bstart; bindex <= bend; bindex++)
++                      for (bindex = btop; bindex <= bbot; bindex++)
 +                              if (au_h_iptr(inode, bindex)) {
 +                                      do_put = 0;
 +                                      break;
@@ -25271,7 +25887,7 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      struct au_sbinfo *sbinfo;
 +      struct hlist_head *plink_hlist;
 +      struct hlist_node *tmp;
-+      struct pseudo_link *plink;
++      struct au_icntnr *icntnr;
 +      struct inode *inode;
 +      int i, do_put;
 +
@@ -25284,12 +25900,14 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +      /* no spin_lock since sbinfo is write-locked */
 +      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);
++              hlist_for_each_entry_safe(icntnr, tmp, plink_hlist, plink) {
++                      inode = au_igrab(&icntnr->vfs_inode);
 +                      ii_write_lock_child(inode);
 +                      do_put = au_plink_do_half_refresh(inode, br_id);
-+                      if (do_put)
-+                              do_put_plink(plink, 1);
++                      if (do_put) {
++                              hlist_del(&icntnr->plink);
++                              iput(inode);
++                      }
 +                      ii_write_unlock(inode);
 +                      iput(inode);
 +              }
@@ -25297,10 +25915,10 @@ diff -urN /usr/share/empty/fs/aufs/plink.c linux/fs/aufs/plink.c
 +}
 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       2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/poll.c       2017-07-29 12:14:25.906375514 +0200
 @@ -0,0 +1,52 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -25335,7 +25953,7 @@ diff -urN /usr/share/empty/fs/aufs/poll.c linux/fs/aufs/poll.c
 +      sb = file->f_path.dentry->d_sb;
 +      si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLMW);
 +
-+      h_file = au_read_pre(file, /*keep_fi*/0);
++      h_file = au_read_pre(file, /*keep_fi*/0, /*lsc*/0);
 +      err = PTR_ERR(h_file);
 +      if (IS_ERR(h_file))
 +              goto out;
@@ -25353,10 +25971,10 @@ diff -urN /usr/share/empty/fs/aufs/poll.c linux/fs/aufs/poll.c
 +}
 diff -urN /usr/share/empty/fs/aufs/posix_acl.c linux/fs/aufs/posix_acl.c
 --- /usr/share/empty/fs/aufs/posix_acl.c       1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/posix_acl.c  2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,99 @@
++++ linux/fs/aufs/posix_acl.c  2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,102 @@
 +/*
-+ * Copyright (C) 2014-2015 Junjiro R. Okajima
++ * Copyright (C) 2014-2017 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
@@ -25377,7 +25995,6 @@ diff -urN /usr/share/empty/fs/aufs/posix_acl.c linux/fs/aufs/posix_acl.c
 + */
 +
 +#include <linux/fs.h>
-+#include <linux/posix_acl.h>
 +#include "aufs.h"
 +
 +struct posix_acl *aufs_get_acl(struct inode *inode, int type)
@@ -25395,7 +26012,7 @@ diff -urN /usr/share/empty/fs/aufs/posix_acl.c linux/fs/aufs/posix_acl.c
 +      if (!(sb->s_flags & MS_POSIXACL))
 +              goto out;
 +
-+      bindex = au_ibstart(inode);
++      bindex = au_ibtop(inode);
 +      h_inode = au_h_iptr(inode, bindex);
 +      if (unlikely(!h_inode
 +                   || ((h_inode->i_mode & S_IFMT)
@@ -25407,6 +26024,8 @@ diff -urN /usr/share/empty/fs/aufs/posix_acl.c linux/fs/aufs/posix_acl.c
 +
 +      /* always topmost only */
 +      acl = get_acl(h_inode, type);
++      if (!IS_ERR_OR_NULL(acl))
++              set_cached_acl(inode, type, acl);
 +
 +out:
 +      ii_read_unlock(inode);
@@ -25421,7 +26040,7 @@ diff -urN /usr/share/empty/fs/aufs/posix_acl.c linux/fs/aufs/posix_acl.c
 +      int err;
 +      ssize_t ssz;
 +      struct dentry *dentry;
-+      struct au_srxattr arg = {
++      struct au_sxattr arg = {
 +              .type = AU_ACL_SET,
 +              .u.acl_set = {
 +                      .acl    = acl,
@@ -25429,7 +26048,8 @@ diff -urN /usr/share/empty/fs/aufs/posix_acl.c linux/fs/aufs/posix_acl.c
 +              },
 +      };
 +
-+      mutex_lock(&inode->i_mutex);
++      IMustLock(inode);
++
 +      if (inode->i_ino == AUFS_ROOT_INO)
 +              dentry = dget(inode->i_sb->s_root);
 +      else {
@@ -25444,22 +26064,23 @@ diff -urN /usr/share/empty/fs/aufs/posix_acl.c linux/fs/aufs/posix_acl.c
 +              }
 +      }
 +
-+      ssz = au_srxattr(dentry, &arg);
++      ssz = au_sxattr(dentry, inode, &arg);
 +      dput(dentry);
 +      err = ssz;
-+      if (ssz >= 0)
++      if (ssz >= 0) {
 +              err = 0;
++              set_cached_acl(inode, type, acl);
++      }
 +
 +out:
-+      mutex_unlock(&inode->i_mutex);
 +      return err;
 +}
 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     2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/procfs.c     2017-07-29 12:14:25.906375514 +0200
 @@ -0,0 +1,169 @@
 +/*
-+ * Copyright (C) 2010-2015 Junjiro R. Okajima
++ * Copyright (C) 2010-2017 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
@@ -25517,7 +26138,7 @@ diff -urN /usr/share/empty/fs/aufs/procfs.c linux/fs/aufs/procfs.c
 +      sb = NULL;
 +      /* don't use au_sbilist_lock() here */
 +      spin_lock(&au_sbilist.spin);
-+      list_for_each_entry(sbinfo, &au_sbilist.head, si_list)
++      hlist_for_each_entry(sbinfo, &au_sbilist.head, si_list)
 +              if (id == sysaufs_si_id(sbinfo)) {
 +                      kobject_get(&sbinfo->si_kobj);
 +                      sb = sbinfo->si_sb;
@@ -25629,10 +26250,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        2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,388 @@
++++ linux/fs/aufs/rdu.c        2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,381 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -25755,7 +26376,7 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +static int au_rdu(struct file *file, struct aufs_rdu *rdu)
 +{
 +      int err;
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +      struct au_rdu_arg arg = {
 +              .ctx = {
 +                      .actor = au_rdu_fill
@@ -25781,7 +26402,7 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +      arg.end += rdu->sz;
 +
 +      err = -ENOTDIR;
-+      if (unlikely(!file->f_op->iterate))
++      if (unlikely(!file->f_op->iterate && !file->f_op->iterate_shared))
 +              goto out;
 +
 +      err = security_file_permission(file, MAY_READ);
@@ -25791,14 +26412,7 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +
 +      dentry = file->f_path.dentry;
 +      inode = d_inode(dentry);
-+#if 1
-+      mutex_lock(&inode->i_mutex);
-+#else
-+      err = mutex_lock_killable(&inode->i_mutex);
-+      AuTraceErr(err);
-+      if (unlikely(err))
-+              goto out;
-+#endif
++      inode_lock_shared(inode);
 +
 +      arg.sb = inode->i_sb;
 +      err = si_read_lock(arg.sb, AuLock_FLUSH | AuLock_NOPLM);
@@ -25821,12 +26435,12 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +              if (!rdu->blk)
 +                      rdu->blk = au_dir_size(file, /*dentry*/NULL);
 +      }
-+      bend = au_fbstart(file);
-+      if (cookie->bindex < bend)
-+              cookie->bindex = bend;
-+      bend = au_fbend_dir(file);
-+      /* AuDbg("b%d, b%d\n", cookie->bindex, bend); */
-+      for (; !err && cookie->bindex <= bend;
++      bbot = au_fbtop(file);
++      if (cookie->bindex < bbot)
++              cookie->bindex = bbot;
++      bbot = au_fbbot_dir(file);
++      /* AuDbg("b%d, b%d\n", cookie->bindex, bbot); */
++      for (; !err && cookie->bindex <= bbot;
 +           cookie->bindex++, cookie->h_pos = 0) {
 +              h_file = au_hf_dir(file, cookie->bindex);
 +              if (!h_file)
@@ -25847,7 +26461,7 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +      }
 +
 +      ii_read_lock_child(inode);
-+      fsstack_copy_attr_atime(inode, au_h_iptr(inode, au_ibstart(inode)));
++      fsstack_copy_attr_atime(inode, au_h_iptr(inode, au_ibtop(inode)));
 +      ii_read_unlock(inode);
 +
 +out_unlock:
@@ -25855,7 +26469,7 @@ diff -urN /usr/share/empty/fs/aufs/rdu.c linux/fs/aufs/rdu.c
 +out_si:
 +      si_read_unlock(arg.sb);
 +out_mtx:
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock_shared(inode);
 +out:
 +      AuTraceErr(err);
 +      return err;
@@ -26021,10 +26635,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      2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,191 @@
++++ linux/fs/aufs/rwsem.h      2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,198 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -26059,6 +26673,15 @@ diff -urN /usr/share/empty/fs/aufs/rwsem.h linux/fs/aufs/rwsem.h
 +#endif
 +};
 +
++#ifdef CONFIG_LOCKDEP
++#define au_lockdep_set_name(rw)                                               \
++      lockdep_set_class_and_name(&(rw)->rwsem,                        \
++                                 /*original key*/(rw)->rwsem.dep_map.key, \
++                                 /*name*/#rw)
++#else
++#define au_lockdep_set_name(rw) do {} while (0)
++#endif
++
 +#ifdef CONFIG_AUFS_DEBUG
 +#define AuDbgCntInit(rw) do { \
 +      atomic_set(&(rw)->rcnt, 0); \
@@ -26066,11 +26689,15 @@ diff -urN /usr/share/empty/fs/aufs/rwsem.h linux/fs/aufs/rwsem.h
 +      smp_mb(); /* atomic set */ \
 +} while (0)
 +
-+#define AuDbgRcntInc(rw)      atomic_inc(&(rw)->rcnt)
-+#define AuDbgRcntDec(rw)      WARN_ON(atomic_dec_return(&(rw)->rcnt) < 0)
-+#define AuDbgWcntInc(rw)      atomic_inc(&(rw)->wcnt)
-+#define AuDbgWcntDec(rw)      WARN_ON(atomic_dec_return(&(rw)->wcnt) < 0)
++#define AuDbgCnt(rw, cnt)     atomic_read(&(rw)->cnt)
++#define AuDbgCntInc(rw, cnt)  atomic_inc(&(rw)->cnt)
++#define AuDbgCntDec(rw, cnt)  WARN_ON(atomic_dec_return(&(rw)->cnt) < 0)
++#define AuDbgRcntInc(rw)      AuDbgCntInc(rw, rcnt)
++#define AuDbgRcntDec(rw)      AuDbgCntDec(rw, rcnt)
++#define AuDbgWcntInc(rw)      AuDbgCntInc(rw, wcnt)
++#define AuDbgWcntDec(rw)      AuDbgCntDec(rw, wcnt)
 +#else
++#define AuDbgCnt(rw, cnt)     0
 +#define AuDbgCntInit(rw)      do {} while (0)
 +#define AuDbgRcntInc(rw)      do {} while (0)
 +#define AuDbgRcntDec(rw)      do {} while (0)
@@ -26079,37 +26706,32 @@ diff -urN /usr/share/empty/fs/aufs/rwsem.h linux/fs/aufs/rwsem.h
 +#endif /* CONFIG_AUFS_DEBUG */
 +
 +/* to debug easier, do not make them inlined functions */
-+#define AuRwMustNoWaiters(rw) AuDebugOn(!list_empty(&(rw)->rwsem.wait_list))
++#define AuRwMustNoWaiters(rw) AuDebugOn(rwsem_is_contended(&(rw)->rwsem))
 +/* rwsem_is_locked() is unusable */
-+#define AuRwMustReadLock(rw)  AuDebugOn(atomic_read(&(rw)->rcnt) <= 0)
-+#define AuRwMustWriteLock(rw) AuDebugOn(atomic_read(&(rw)->wcnt) <= 0)
-+#define AuRwMustAnyLock(rw)   AuDebugOn(atomic_read(&(rw)->rcnt) <= 0 \
-+                                      && atomic_read(&(rw)->wcnt) <= 0)
-+#define AuRwDestroy(rw)               AuDebugOn(atomic_read(&(rw)->rcnt) \
-+                                      || atomic_read(&(rw)->wcnt))
-+
-+#define au_rw_class(rw, key)  lockdep_set_class(&(rw)->rwsem, key)
-+
-+static inline void au_rw_init(struct au_rwsem *rw)
-+{
-+      AuDbgCntInit(rw);
-+      init_rwsem(&rw->rwsem);
-+}
++#define AuRwMustReadLock(rw)  AuDebugOn(AuDbgCnt(rw, rcnt) <= 0)
++#define AuRwMustWriteLock(rw) AuDebugOn(AuDbgCnt(rw, wcnt) <= 0)
++#define AuRwMustAnyLock(rw)   AuDebugOn(AuDbgCnt(rw, rcnt) <= 0       \
++                                        && AuDbgCnt(rw, wcnt) <= 0)
++#define AuRwDestroy(rw)               AuDebugOn(AuDbgCnt(rw, rcnt)            \
++                                        || AuDbgCnt(rw, wcnt))
++
++#define au_rw_init(rw) do {                   \
++              AuDbgCntInit(rw);               \
++              init_rwsem(&(rw)->rwsem);       \
++              au_lockdep_set_name(rw);        \
++      } while (0)
 +
-+static inline void au_rw_init_wlock(struct au_rwsem *rw)
-+{
-+      au_rw_init(rw);
-+      down_write(&rw->rwsem);
-+      AuDbgWcntInc(rw);
-+}
++#define au_rw_init_wlock(rw) do {             \
++              au_rw_init(rw);                 \
++              down_write(&(rw)->rwsem);       \
++              AuDbgWcntInc(rw);               \
++      } while (0)
 +
-+static inline void au_rw_init_wlock_nested(struct au_rwsem *rw,
-+                                         unsigned int lsc)
-+{
-+      au_rw_init(rw);
-+      down_write_nested(&rw->rwsem, lsc);
-+      AuDbgWcntInc(rw);
-+}
++#define au_rw_init_wlock_nested(rw, lsc) do { \
++              au_rw_init(rw);                         \
++              down_write_nested(&(rw)->rwsem, lsc);   \
++              AuDbgWcntInc(rw);                       \
++      } while (0)
 +
 +static inline void au_rw_read_lock(struct au_rwsem *rw)
 +{
@@ -26179,10 +26801,9 @@ diff -urN /usr/share/empty/fs/aufs/rwsem.h linux/fs/aufs/rwsem.h
 +      return ret;
 +}
 +
-+#undef AuDbgCntInit
++#undef AuDbgCntDec
 +#undef AuDbgRcntInc
 +#undef AuDbgRcntDec
-+#undef AuDbgWcntInc
 +#undef AuDbgWcntDec
 +
 +#define AuSimpleLockRwsemFuncs(prefix, param, rwsem) \
@@ -26216,10 +26837,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     2015-12-10 17:59:16.839499823 +0100
-@@ -0,0 +1,366 @@
++++ linux/fs/aufs/sbinfo.c     2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,304 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -26255,19 +26876,16 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +              AuDebugOn(!hlist_empty(&sbinfo->si_plink[i].head));
 +      AuDebugOn(atomic_read(&sbinfo->si_nowait.nw_len));
 +
-+      AuDebugOn(!hlist_empty(&sbinfo->si_symlink.head));
++      AuDebugOn(percpu_counter_sum(&sbinfo->si_ninodes));
++      percpu_counter_destroy(&sbinfo->si_ninodes);
++      AuDebugOn(percpu_counter_sum(&sbinfo->si_nfiles));
++      percpu_counter_destroy(&sbinfo->si_nfiles);
 +
 +      au_rw_write_lock(&sbinfo->si_rwsem);
 +      au_br_free(sbinfo);
 +      au_rw_write_unlock(&sbinfo->si_rwsem);
 +
-+      AuDebugOn(radix_tree_gang_lookup
-+                (&sbinfo->au_si_pid.tree, (void **)&locked,
-+                 /*first_index*/PID_MAX_DEFAULT - 1,
-+                 /*max_items*/sizeof(locked)/sizeof(*locked)));
-+
 +      kfree(sbinfo->si_branch);
-+      kfree(sbinfo->au_si_pid.bitmap);
 +      mutex_destroy(&sbinfo->si_xib_mtx);
 +      AuRwDestroy(&sbinfo->si_rwsem);
 +
@@ -26278,25 +26896,16 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +{
 +      int err, i;
 +      struct au_sbinfo *sbinfo;
-+      static struct lock_class_key aufs_si;
 +
 +      err = -ENOMEM;
 +      sbinfo = kzalloc(sizeof(*sbinfo), GFP_NOFS);
 +      if (unlikely(!sbinfo))
 +              goto out;
 +
-+      BUILD_BUG_ON(sizeof(unsigned long) !=
-+                   sizeof(*sbinfo->au_si_pid.bitmap));
-+      sbinfo->au_si_pid.bitmap = kcalloc(BITS_TO_LONGS(PID_MAX_DEFAULT),
-+                                      sizeof(*sbinfo->au_si_pid.bitmap),
-+                                      GFP_NOFS);
-+      if (unlikely(!sbinfo->au_si_pid.bitmap))
-+              goto out_sbinfo;
-+
 +      /* will be reallocated separately */
 +      sbinfo->si_branch = kzalloc(sizeof(*sbinfo->si_branch), GFP_NOFS);
 +      if (unlikely(!sbinfo->si_branch))
-+              goto out_pidmap;
++              goto out_sbinfo;
 +
 +      err = sysaufs_si_init(sbinfo);
 +      if (unlikely(err))
@@ -26304,14 +26913,11 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +
 +      au_nwt_init(&sbinfo->si_nowait);
 +      au_rw_init_wlock(&sbinfo->si_rwsem);
-+      au_rw_class(&sbinfo->si_rwsem, &aufs_si);
-+      spin_lock_init(&sbinfo->au_si_pid.tree_lock);
-+      INIT_RADIX_TREE(&sbinfo->au_si_pid.tree, GFP_ATOMIC | __GFP_NOFAIL);
 +
-+      atomic_long_set(&sbinfo->si_ninodes, 0);
-+      atomic_long_set(&sbinfo->si_nfiles, 0);
++      percpu_counter_init(&sbinfo->si_ninodes, 0, GFP_NOFS);
++      percpu_counter_init(&sbinfo->si_nfiles, 0, GFP_NOFS);
 +
-+      sbinfo->si_bend = -1;
++      sbinfo->si_bbot = -1;
 +      sbinfo->si_last_br_id = AUFS_BRANCH_MAX / 2;
 +
 +      sbinfo->si_wbr_copyup = AuWbrCopyup_Def;
@@ -26323,8 +26929,6 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +
 +      sbinfo->si_mntflags = au_opts_plink(AuOpt_Def);
 +
-+      au_sphl_init(&sbinfo->si_symlink);
-+
 +      sbinfo->si_xino_jiffy = jiffies;
 +      sbinfo->si_xino_expire
 +              = msecs_to_jiffies(AUFS_XINO_DEF_SEC * MSEC_PER_SEC);
@@ -26357,15 +26961,13 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +
 +out_br:
 +      kfree(sbinfo->si_branch);
-+out_pidmap:
-+      kfree(sbinfo->au_si_pid.bitmap);
 +out_sbinfo:
 +      kfree(sbinfo);
 +out:
 +      return err;
 +}
 +
-+int au_sbr_realloc(struct au_sbinfo *sbinfo, int nbr)
++int au_sbr_realloc(struct au_sbinfo *sbinfo, int nbr, int may_shrink)
 +{
 +      int err, sz;
 +      struct au_branch **brp;
@@ -26373,10 +26975,11 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +      AuRwMustWriteLock(&sbinfo->si_rwsem);
 +
 +      err = -ENOMEM;
-+      sz = sizeof(*brp) * (sbinfo->si_bend + 1);
++      sz = sizeof(*brp) * (sbinfo->si_bbot + 1);
 +      if (unlikely(!sz))
 +              sz = sizeof(*brp);
-+      brp = au_kzrealloc(sbinfo->si_branch, sz, sizeof(*brp) * nbr, GFP_NOFS);
++      brp = au_kzrealloc(sbinfo->si_branch, sz, sizeof(*brp) * nbr, GFP_NOFS,
++                         may_shrink);
 +      if (brp) {
 +              sbinfo->si_branch = brp;
 +              err = 0;
@@ -26540,56 +27143,12 @@ diff -urN /usr/share/empty/fs/aufs/sbinfo.c linux/fs/aufs/sbinfo.c
 +      di_write_unlock2(d1, d2);
 +      si_read_unlock(d1->d_sb);
 +}
-+
-+/* ---------------------------------------------------------------------- */
-+
-+int si_pid_test_slow(struct super_block *sb)
-+{
-+      void *p;
-+
-+      rcu_read_lock();
-+      p = radix_tree_lookup(&au_sbi(sb)->au_si_pid.tree, current->pid);
-+      rcu_read_unlock();
-+
-+      return (long)!!p;
-+}
-+
-+void si_pid_set_slow(struct super_block *sb)
-+{
-+      int err;
-+      struct au_sbinfo *sbinfo;
-+
-+      AuDebugOn(si_pid_test_slow(sb));
-+
-+      sbinfo = au_sbi(sb);
-+      err = radix_tree_preload(GFP_NOFS | __GFP_NOFAIL);
-+      AuDebugOn(err);
-+      spin_lock(&sbinfo->au_si_pid.tree_lock);
-+      err = radix_tree_insert(&sbinfo->au_si_pid.tree, current->pid,
-+                              /*any valid ptr*/sb);
-+      spin_unlock(&sbinfo->au_si_pid.tree_lock);
-+      AuDebugOn(err);
-+      radix_tree_preload_end();
-+}
-+
-+void si_pid_clr_slow(struct super_block *sb)
-+{
-+      void *p;
-+      struct au_sbinfo *sbinfo;
-+
-+      AuDebugOn(!si_pid_test_slow(sb));
-+
-+      sbinfo = au_sbi(sb);
-+      spin_lock(&sbinfo->au_si_pid.tree_lock);
-+      p = radix_tree_delete(&sbinfo->au_si_pid.tree, current->pid);
-+      spin_unlock(&sbinfo->au_si_pid.tree_lock);
-+}
 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        2015-09-24 10:47:58.254719746 +0200
-@@ -0,0 +1,111 @@
++++ linux/fs/aufs/spl.h        2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,113 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -26614,6 +27173,7 @@ diff -urN /usr/share/empty/fs/aufs/spl.h linux/fs/aufs/spl.h
 +
 +#ifdef __KERNEL__
 +
++#if 0
 +struct au_splhead {
 +      spinlock_t              spin;
 +      struct list_head        head;
@@ -26646,6 +27206,7 @@ diff -urN /usr/share/empty/fs/aufs/spl.h linux/fs/aufs/spl.h
 +      list_del_rcu(list);
 +      spin_unlock(&spl->spin);
 +}
++#endif
 +
 +/* ---------------------------------------------------------------------- */
 +
@@ -26701,10 +27262,10 @@ diff -urN /usr/share/empty/fs/aufs/spl.h linux/fs/aufs/spl.h
 +#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      2015-12-10 17:59:16.842833237 +0100
-@@ -0,0 +1,1047 @@
++++ linux/fs/aufs/super.c      2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,1044 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -26751,13 +27312,13 @@ 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_HLIST_HEAD(&inode->i_dentry);
 +      au_cache_free_icntnr(container_of(inode, struct au_icntnr, vfs_inode));
 +}
 +
 +static void aufs_destroy_inode(struct inode *inode)
 +{
-+      au_iinfo_fin(inode);
++      if (!au_is_bad_inode(inode))
++              au_iinfo_fin(inode);
 +      call_rcu(&inode->i_rcu, aufs_destroy_inode_cb);
 +}
 +
@@ -26795,24 +27356,25 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +static int au_show_brs(struct seq_file *seq, struct super_block *sb)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct path path;
 +      struct au_hdentry *hdp;
 +      struct au_branch *br;
 +      au_br_perm_str_t perm;
 +
 +      err = 0;
-+      bend = au_sbend(sb);
-+      hdp = au_di(sb->s_root)->di_hdentry;
-+      for (bindex = 0; !err && bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      bindex = 0;
++      hdp = au_hdentry(au_di(sb->s_root), bindex);
++      for (; !err && bindex <= bbot; bindex++, hdp++) {
 +              br = au_sbr(sb, bindex);
 +              path.mnt = au_br_mnt(br);
-+              path.dentry = hdp[bindex].hd_dentry;
++              path.dentry = hdp->hd_dentry;
 +              err = au_seq_path(seq, &path);
 +              if (!err) {
 +                      au_optstr_br_perm(&perm, br->br_perm);
 +                      seq_printf(seq, "=%s", perm.a);
-+                      if (bindex != bend)
++                      if (bindex != bbot)
 +                              seq_putc(seq, ':');
 +              }
 +      }
@@ -26822,15 +27384,31 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      return err;
 +}
 +
++static void au_gen_fmt(char *fmt, int len __maybe_unused, const char *pat,
++                     const char *append)
++{
++      char *p;
++
++      p = fmt;
++      while (*pat != ':')
++              *p++ = *pat++;
++      *p++ = *pat++;
++      strcpy(p, append);
++      AuDebugOn(strlen(fmt) >= len);
++}
++
 +static void au_show_wbr_create(struct seq_file *m, int v,
 +                             struct au_sbinfo *sbinfo)
 +{
 +      const char *pat;
++      char fmt[32];
++      struct au_wbr_mfs *mfs;
 +
 +      AuRwMustAnyLock(&sbinfo->si_rwsem);
 +
 +      seq_puts(m, ",create=");
 +      pat = au_optstr_wbr_create(v);
++      mfs = &sbinfo->si_wbr_mfs;
 +      switch (v) {
 +      case AuWbrCreate_TDP:
 +      case AuWbrCreate_RR:
@@ -26838,36 +27416,28 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      case AuWbrCreate_PMFS:
 +              seq_puts(m, pat);
 +              break;
-+      case AuWbrCreate_MFSV:
-+              seq_printf(m, /*pat*/"mfs:%lu",
-+                         jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire)
-+                         / MSEC_PER_SEC);
++      case AuWbrCreate_MFSRR:
++      case AuWbrCreate_TDMFS:
++      case AuWbrCreate_PMFSRR:
++              au_gen_fmt(fmt, sizeof(fmt), pat, "%llu");
++              seq_printf(m, fmt, mfs->mfsrr_watermark);
 +              break;
++      case AuWbrCreate_MFSV:
 +      case AuWbrCreate_PMFSV:
-+              seq_printf(m, /*pat*/"pmfs:%lu",
-+                         jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire)
++              au_gen_fmt(fmt, sizeof(fmt), pat, "%lu");
++              seq_printf(m, fmt,
++                         jiffies_to_msecs(mfs->mfs_expire)
 +                         / MSEC_PER_SEC);
 +              break;
-+      case AuWbrCreate_MFSRR:
-+              seq_printf(m, /*pat*/"mfsrr:%llu",
-+                         sbinfo->si_wbr_mfs.mfsrr_watermark);
-+              break;
 +      case AuWbrCreate_MFSRRV:
-+              seq_printf(m, /*pat*/"mfsrr:%llu:%lu",
-+                         sbinfo->si_wbr_mfs.mfsrr_watermark,
-+                         jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire)
-+                         / MSEC_PER_SEC);
-+              break;
-+      case AuWbrCreate_PMFSRR:
-+              seq_printf(m, /*pat*/"pmfsrr:%llu",
-+                         sbinfo->si_wbr_mfs.mfsrr_watermark);
-+              break;
++      case AuWbrCreate_TDMFSV:
 +      case AuWbrCreate_PMFSRRV:
-+              seq_printf(m, /*pat*/"pmfsrr:%llu:%lu",
-+                         sbinfo->si_wbr_mfs.mfsrr_watermark,
-+                         jiffies_to_msecs(sbinfo->si_wbr_mfs.mfs_expire)
-+                         / MSEC_PER_SEC);
++              au_gen_fmt(fmt, sizeof(fmt), pat, "%llu:%lu");
++              seq_printf(m, fmt, mfs->mfsrr_watermark,
++                         jiffies_to_msecs(mfs->mfs_expire) / MSEC_PER_SEC);
 +              break;
++      default:
++              BUG();
 +      }
 +}
 +
@@ -26882,7 +27452,6 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      struct qstr *name;
 +      struct file *f;
 +      struct dentry *d, *h_root;
-+      struct au_hdentry *hdp;
 +
 +      AuRwMustAnyLock(&sbinfo->si_rwsem);
 +
@@ -26896,8 +27465,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      brid = au_xino_brid(sb);
 +      if (brid >= 0) {
 +              bindex = au_br_index(sb, brid);
-+              hdp = au_di(sb->s_root)->di_hdentry;
-+              h_root = hdp[0 + bindex].hd_dentry;
++              h_root = au_hdentry(au_di(sb->s_root), bindex)->hd_dentry;
 +      }
 +      d = f->f_path.dentry;
 +      name = &d->d_name;
@@ -27036,7 +27604,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      int err;
 +      long bsize, factor;
 +      u64 blocks, bfree, bavail, files, ffree;
-+      aufs_bindex_t bend, bindex, i;
++      aufs_bindex_t bbot, bindex, i;
 +      unsigned char shared;
 +      struct path h_path;
 +      struct super_block *h_sb;
@@ -27048,8 +27616,8 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      blocks = 0;
 +      bfree = 0;
 +      bavail = 0;
-+      bend = au_sbend(sb);
-+      for (bindex = 0; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (bindex = 0; bindex <= bbot; bindex++) {
 +              h_path.mnt = au_sbr_mnt(sb, bindex);
 +              h_sb = h_path.mnt->mnt_sb;
 +              shared = 0;
@@ -27132,25 +27700,23 @@ 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;
++      aufs_bindex_t bbot, 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++) {
++      bbot = au_sbbot(sb);
++      for (bindex = 0; bindex <= bbot; 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 */
-+              }
++              e = vfsub_sync_filesystem(h_sb, wait);
++              if (unlikely(e && !err))
++                      err = e;
++              /* go on even if an error happens */
 +      }
 +      si_read_unlock(sb);
 +
@@ -27174,16 +27740,6 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +/* ---------------------------------------------------------------------- */
 +
-+void au_array_free(void *array)
-+{
-+      if (array) {
-+              if (!is_vmalloc_addr(array))
-+                      kfree(array);
-+              else
-+                      vfree(array);
-+      }
-+}
-+
 +void *au_array_alloc(unsigned long long *hint, au_arraycb_t cb,
 +                   struct super_block *sb, void *arg)
 +{
@@ -27231,8 +27787,8 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      head = arg;
 +      spin_lock(&sb->s_inode_list_lock);
 +      list_for_each_entry(inode, head, i_sb_list) {
-+              if (!is_bad_inode(inode)
-+                  && au_ii(inode)->ii_bstart >= 0) {
++              if (!au_is_bad_inode(inode)
++                  && au_ii(inode)->ii_btop >= 0) {
 +                      spin_lock(&inode->i_lock);
 +                      if (atomic_read(&inode->i_count)) {
 +                              au_igrab(inode);
@@ -27250,7 +27806,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +struct inode **au_iarray_alloc(struct super_block *sb, unsigned long long *max)
 +{
-+      *max = atomic_long_read(&au_sbi(sb)->si_ninodes);
++      *max = au_ninodes(sb);
 +      return au_array_alloc(max, au_iarray_cb, sb, &sb->s_inodes);
 +}
 +
@@ -27260,7 +27816,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +      for (ull = 0; ull < max; ull++)
 +              iput(a[ull]);
-+      au_array_free(a);
++      kvfree(a);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -27409,7 +27965,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +{
 +      int err, e;
 +      unsigned int udba;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct dentry *root;
 +      struct inode *inode;
 +      struct au_branch *br;
@@ -27425,8 +27981,8 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      IiMustNoWaiters(inode);
 +
 +      udba = au_opt_udba(sb);
-+      bend = au_sbend(sb);
-+      for (bindex = 0; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (bindex = 0; bindex <= bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              err = au_hnotify_reset_br(udba, br, br->br_perm);
 +              if (unlikely(err))
@@ -27485,7 +28041,9 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +{
 +      int err, do_dx;
 +      unsigned int mntflags;
-+      struct au_opts opts;
++      struct au_opts opts = {
++              .opt = NULL
++      };
 +      struct dentry *root;
 +      struct inode *inode;
 +      struct au_sbinfo *sbinfo;
@@ -27503,7 +28061,6 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      }
 +
 +      err = -ENOMEM;
-+      memset(&opts, 0, sizeof(opts));
 +      opts.opt = (void *)__get_free_page(GFP_NOFS);
 +      if (unlikely(!opts.opt))
 +              goto out;
@@ -27518,7 +28075,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +
 +      sbinfo = au_sbi(sb);
 +      inode = d_inode(root);
-+      mutex_lock(&inode->i_mutex);
++      inode_lock(inode);
 +      err = si_write_lock(sb, AuLock_FLUSH | AuLock_NOPLM);
 +      if (unlikely(err))
 +              goto out_mtx;
@@ -27541,7 +28098,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      aufs_write_unlock(root);
 +
 +out_mtx:
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +out_opts:
 +      free_page((unsigned long)opts.opt);
 +out:
@@ -27604,7 +28161,9 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +                         int silent __maybe_unused)
 +{
 +      int err;
-+      struct au_opts opts;
++      struct au_opts opts = {
++              .opt = NULL
++      };
 +      struct au_sbinfo *sbinfo;
 +      struct dentry *root;
 +      struct inode *inode;
@@ -27617,7 +28176,6 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      }
 +
 +      err = -ENOMEM;
-+      memset(&opts, 0, sizeof(opts));
 +      opts.opt = (void *)__get_free_page(GFP_NOFS);
 +      if (unlikely(!opts.opt))
 +              goto out;
@@ -27637,7 +28195,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +      sb->s_maxbytes = 0;
 +      sb->s_stack_depth = 1;
 +      au_export_init(sb);
-+      /* au_xattr_init(sb); */
++      au_xattr_init(sb);
 +
 +      err = alloc_root(sb);
 +      if (unlikely(err)) {
@@ -27659,7 +28217,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +              goto out_root;
 +
 +      /* lock vfs_inode first, then aufs. */
-+      mutex_lock(&inode->i_mutex);
++      inode_lock(inode);
 +      aufs_write_lock(root);
 +      err = au_opts_mount(sb, &opts);
 +      au_opts_free(&opts);
@@ -27671,7 +28229,7 @@ diff -urN /usr/share/empty/fs/aufs/super.c linux/fs/aufs/super.c
 +              au_refresh_iop(inode, /*force_getattr*/0);
 +      }
 +      aufs_write_unlock(root);
-+      mutex_unlock(&inode->i_mutex);
++      inode_unlock(inode);
 +      if (!err)
 +              goto out_opts; /* success */
 +
@@ -27752,10 +28310,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      2015-12-10 17:59:16.842833237 +0100
-@@ -0,0 +1,642 @@
++++ linux/fs/aufs/super.h      2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,617 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -27814,14 +28372,6 @@ 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)
 +{
@@ -27854,18 +28404,11 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +       */
 +      struct au_rwsem         si_rwsem;
 +
-+      /* prevent recursive locking in deleting inode */
-+      struct {
-+              unsigned long           *bitmap;
-+              spinlock_t              tree_lock;
-+              struct radix_tree_root  tree;
-+      } au_si_pid;
-+
 +      /*
 +       * dirty approach to protect sb->sb_inodes and ->s_files (gone) from
 +       * remount.
 +       */
-+      atomic_long_t           si_ninodes, si_nfiles;
++      struct percpu_counter   si_ninodes, si_nfiles;
 +
 +      /* branch management */
 +      unsigned int            si_generation;
@@ -27873,7 +28416,7 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      /* see AuSi_ flags */
 +      unsigned char           au_si_status;
 +
-+      aufs_bindex_t           si_bend;
++      aufs_bindex_t           si_bbot;
 +
 +      /* dirty trick to keep br_id plus */
 +      unsigned int            si_last_br_id :
@@ -27899,9 +28442,6 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      /* include/asm-ia64/siginfo.h defines a macro named si_flags */
 +      unsigned int            si_mntflags;
 +
-+      /* symlink to follow_link() and put_link() */
-+      struct au_sphlhead      si_symlink;
-+
 +      /* external inode number (bitmap and translation table) */
 +      vfs_readf_t             si_xread;
 +      vfs_writef_t            si_xwrite;
@@ -27967,7 +28507,7 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +#endif
 +
 +#ifdef CONFIG_AUFS_SBILIST
-+      struct list_head        si_list;
++      struct hlist_node       si_list;
 +#endif
 +
 +      /* dirty, necessary for unmounting, sysfs and sysrq */
@@ -28019,6 +28559,7 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +#define AuLock_IW             (1 << 2)        /* write-lock inode */
 +#define AuLock_FLUSH          (1 << 3)        /* wait for 'nowait' tasks */
 +#define AuLock_DIRS           (1 << 4)        /* target is a pair of dirs */
++                                              /* except RENAME_EXCHANGE */
 +#define AuLock_NOPLM          (1 << 5)        /* return err in plm mode */
 +#define AuLock_NOPLMW         (1 << 6)        /* wait for plm mode ends */
 +#define AuLock_GEN            (1 << 7)        /* test digen/iigen */
@@ -28035,7 +28576,6 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +struct inode *au_iget_locked(struct super_block *sb, ino_t ino);
 +typedef unsigned long long (*au_arraycb_t)(struct super_block *sb, void *array,
 +                                         unsigned long long max, void *arg);
-+void au_array_free(void *array);
 +void *au_array_alloc(unsigned long long *hint, au_arraycb_t cb,
 +                   struct super_block *sb, void *arg);
 +struct inode **au_iarray_alloc(struct super_block *sb, unsigned long long *max);
@@ -28044,7 +28584,7 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +/* sbinfo.c */
 +void au_si_free(struct kobject *kobj);
 +int au_si_alloc(struct super_block *sb);
-+int au_sbr_realloc(struct au_sbinfo *sbinfo, int nbr);
++int au_sbr_realloc(struct au_sbinfo *sbinfo, int nbr, int may_shrink);
 +
 +unsigned int au_sigen_inc(struct super_block *sb);
 +aufs_bindex_t au_new_br_id(struct super_block *sb);
@@ -28058,16 +28598,12 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +int aufs_read_and_write_lock2(struct dentry *d1, struct dentry *d2, int flags);
 +void aufs_read_and_write_unlock2(struct dentry *d1, struct dentry *d2);
 +
-+int si_pid_test_slow(struct super_block *sb);
-+void si_pid_set_slow(struct super_block *sb);
-+void si_pid_clr_slow(struct super_block *sb);
-+
 +/* wbr_policy.c */
 +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);
-+int au_wbr_do_copyup_bu(struct dentry *dentry, aufs_bindex_t bstart);
++int au_wbr_do_copyup_bu(struct dentry *dentry, aufs_bindex_t btop);
 +
 +/* mvdown.c */
 +int au_mvdown(struct dentry *dentry, struct aufs_mvdown __user *arg);
@@ -28146,21 +28682,21 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +
 +#ifdef CONFIG_AUFS_SBILIST
 +/* module.c */
-+extern struct au_splhead au_sbilist;
++extern struct au_sphlhead au_sbilist;
 +
 +static inline void au_sbilist_init(void)
 +{
-+      au_spl_init(&au_sbilist);
++      au_sphl_init(&au_sbilist);
 +}
 +
 +static inline void au_sbilist_add(struct super_block *sb)
 +{
-+      au_spl_add(&au_sbi(sb)->si_list, &au_sbilist);
++      au_sphl_add(&au_sbi(sb)->si_list, &au_sbilist);
 +}
 +
 +static inline void au_sbilist_del(struct super_block *sb)
 +{
-+      au_spl_del(&au_sbi(sb)->si_list, &au_sbilist);
++      au_sphl_del(&au_sbi(sb)->si_list, &au_sbilist);
 +}
 +
 +#ifdef CONFIG_AUFS_MAGIC_SYSRQ
@@ -28209,46 +28745,29 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +
 +/* ---------------------------------------------------------------------- */
 +
-+static inline pid_t si_pid_bit(void)
-+{
-+      /* the origin of pid is 1, but the bitmap's is 0 */
-+      return current->pid - 1;
-+}
++/* current->atomic_flags */
++/* this value should never corrupt the ones defined in linux/sched.h */
++#define PFA_AUFS      7
++
++TASK_PFA_TEST(AUFS, test_aufs)        /* task_test_aufs */
++TASK_PFA_SET(AUFS, aufs)      /* task_set_aufs */
++TASK_PFA_CLEAR(AUFS, aufs)    /* task_clear_aufs */
 +
 +static inline int si_pid_test(struct super_block *sb)
 +{
-+      pid_t bit;
-+
-+      bit = si_pid_bit();
-+      if (bit < PID_MAX_DEFAULT)
-+              return test_bit(bit, au_sbi(sb)->au_si_pid.bitmap);
-+      return si_pid_test_slow(sb);
++      return !!task_test_aufs(current);
 +}
 +
-+static inline void si_pid_set(struct super_block *sb)
++static inline void si_pid_clr(struct super_block *sb)
 +{
-+      pid_t bit;
-+
-+      bit = si_pid_bit();
-+      if (bit < PID_MAX_DEFAULT) {
-+              AuDebugOn(test_bit(bit, au_sbi(sb)->au_si_pid.bitmap));
-+              set_bit(bit, au_sbi(sb)->au_si_pid.bitmap);
-+              /* smp_mb(); */
-+      } else
-+              si_pid_set_slow(sb);
++      AuDebugOn(!task_test_aufs(current));
++      task_clear_aufs(current);
 +}
 +
-+static inline void si_pid_clr(struct super_block *sb)
++static inline void si_pid_set(struct super_block *sb)
 +{
-+      pid_t bit;
-+
-+      bit = si_pid_bit();
-+      if (bit < PID_MAX_DEFAULT) {
-+              AuDebugOn(!test_bit(bit, au_sbi(sb)->au_si_pid.bitmap));
-+              clear_bit(bit, au_sbi(sb)->au_si_pid.bitmap);
-+              /* smp_mb(); */
-+      } else
-+              si_pid_clr_slow(sb);
++      AuDebugOn(task_test_aufs(current));
++      task_set_aufs(current);
 +}
 +
 +/* ---------------------------------------------------------------------- */
@@ -28335,10 +28854,10 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +
 +/* ---------------------------------------------------------------------- */
 +
-+static inline aufs_bindex_t au_sbend(struct super_block *sb)
++static inline aufs_bindex_t au_sbbot(struct super_block *sb)
 +{
 +      SiMustAnyLock(sb);
-+      return au_sbi(sb)->si_bend;
++      return au_sbi(sb)->si_bbot;
 +}
 +
 +static inline unsigned int au_mntflags(struct super_block *sb)
@@ -28353,26 +28872,40 @@ diff -urN /usr/share/empty/fs/aufs/super.h linux/fs/aufs/super.h
 +      return au_sbi(sb)->si_generation;
 +}
 +
++static inline unsigned long long au_ninodes(struct super_block *sb)
++{
++      s64 n = percpu_counter_sum(&au_sbi(sb)->si_ninodes);
++
++      BUG_ON(n < 0);
++      return n;
++}
++
 +static inline void au_ninodes_inc(struct super_block *sb)
 +{
-+      atomic_long_inc(&au_sbi(sb)->si_ninodes);
++      percpu_counter_inc(&au_sbi(sb)->si_ninodes);
 +}
 +
 +static inline void au_ninodes_dec(struct super_block *sb)
 +{
-+      AuDebugOn(!atomic_long_read(&au_sbi(sb)->si_ninodes));
-+      atomic_long_dec(&au_sbi(sb)->si_ninodes);
++      percpu_counter_dec(&au_sbi(sb)->si_ninodes);
++}
++
++static inline unsigned long long au_nfiles(struct super_block *sb)
++{
++      s64 n = percpu_counter_sum(&au_sbi(sb)->si_nfiles);
++
++      BUG_ON(n < 0);
++      return n;
 +}
 +
 +static inline void au_nfiles_inc(struct super_block *sb)
 +{
-+      atomic_long_inc(&au_sbi(sb)->si_nfiles);
++      percpu_counter_inc(&au_sbi(sb)->si_nfiles);
 +}
 +
 +static inline void au_nfiles_dec(struct super_block *sb)
 +{
-+      AuDebugOn(!atomic_long_read(&au_sbi(sb)->si_nfiles));
-+      atomic_long_dec(&au_sbi(sb)->si_nfiles);
++      percpu_counter_dec(&au_sbi(sb)->si_nfiles);
 +}
 +
 +static inline struct au_branch *au_sbr(struct super_block *sb,
@@ -28398,10 +28931,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    2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/sysaufs.c    2017-07-29 12:14:25.906375514 +0200
 @@ -0,0 +1,104 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -28506,10 +29039,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    2015-09-24 10:47:58.254719746 +0200
++++ linux/fs/aufs/sysaufs.h    2017-07-29 12:14:25.906375514 +0200
 @@ -0,0 +1,101 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -28611,10 +29144,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      2015-11-11 17:21:46.922197217 +0100
++++ linux/fs/aufs/sysfs.c      2017-07-29 12:14:25.906375514 +0200
 @@ -0,0 +1,376 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -28757,7 +29290,7 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +      ssize_t err;
 +      int idx;
 +      long l;
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +      struct au_sbinfo *sbinfo;
 +      struct super_block *sb;
 +      struct seq_file *seq;
@@ -28810,8 +29343,8 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +
 +      err = kstrtol(name, 10, &l);
 +      if (!err) {
-+              bend = au_sbend(sb);
-+              if (l <= bend)
++              bbot = au_sbbot(sb);
++              if (l <= bbot)
 +                      err = sysaufs_si_br(seq, sb, (aufs_bindex_t)l, idx);
 +              else
 +                      err = -ENOENT;
@@ -28837,15 +29370,15 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +{
 +      int err;
 +      int16_t brid;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      size_t sz;
 +      char *buf;
 +      struct seq_file *seq;
 +      struct au_branch *br;
 +
 +      si_read_lock(sb, AuLock_FLUSH);
-+      bend = au_sbend(sb);
-+      err = bend + 1;
++      bbot = au_sbbot(sb);
++      err = bbot + 1;
 +      if (!arg)
 +              goto out;
 +
@@ -28860,7 +29393,7 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +              goto out_buf;
 +
 +      sz = sizeof(*arg) - offsetof(union aufs_brinfo, path);
-+      for (bindex = 0; bindex <= bend; bindex++, arg++) {
++      for (bindex = 0; bindex <= bbot; bindex++, arg++) {
 +              err = !access_ok(VERIFY_WRITE, arg, sizeof(*arg));
 +              if (unlikely(err))
 +                      break;
@@ -28939,7 +29472,7 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +      struct kobject *kobj;
 +      struct au_brsysfs *br_sysfs;
 +      int i;
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +
 +      dbgaufs_brs_del(sb, bindex);
 +
@@ -28947,8 +29480,8 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +              return;
 +
 +      kobj = &au_sbi(sb)->si_kobj;
-+      bend = au_sbend(sb);
-+      for (; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (; bindex <= bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              br_sysfs = br->br_sysfs;
 +              for (i = 0; i < ARRAY_SIZE(br->br_sysfs); i++) {
@@ -28961,7 +29494,7 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +void sysaufs_brs_add(struct super_block *sb, aufs_bindex_t bindex)
 +{
 +      int err, i;
-+      aufs_bindex_t bend;
++      aufs_bindex_t bbot;
 +      struct kobject *kobj;
 +      struct au_branch *br;
 +      struct au_brsysfs *br_sysfs;
@@ -28972,8 +29505,8 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +              return;
 +
 +      kobj = &au_sbi(sb)->si_kobj;
-+      bend = au_sbend(sb);
-+      for (; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (; bindex <= bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              br_sysfs = br->br_sysfs;
 +              snprintf(br_sysfs[AuBrSysfs_BR].name, sizeof(br_sysfs->name),
@@ -28991,10 +29524,10 @@ diff -urN /usr/share/empty/fs/aufs/sysfs.c linux/fs/aufs/sysfs.c
 +}
 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      2015-11-11 17:21:46.922197217 +0100
++++ linux/fs/aufs/sysrq.c      2017-07-29 12:14:25.906375514 +0200
 @@ -0,0 +1,157 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -29113,7 +29646,7 @@ diff -urN /usr/share/empty/fs/aufs/sysrq.c linux/fs/aufs/sysrq.c
 +
 +      lockdep_off();
 +      au_sbilist_lock();
-+      list_for_each_entry(sbinfo, &au_sbilist.head, si_list)
++      hlist_for_each_entry(sbinfo, &au_sbilist.head, si_list)
 +              sysrq_sb(sbinfo->si_sb);
 +      au_sbilist_unlock();
 +      lockdep_on();
@@ -29152,10 +29685,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       2015-11-11 17:21:46.922197217 +0100
-@@ -0,0 +1,888 @@
++++ linux/fs/aufs/vdir.c       2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,892 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -29336,6 +29869,8 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      AuDebugOn(!nhash->nh_num || !nhash->nh_head);
 +
 +      v = 0;
++      if (len > 8)
++              len = 8;
 +      while (len--)
 +              v += *name++;
 +      /* v = hash_long(v, magic_bit); */
@@ -29433,8 +29968,8 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      unsigned char **o;
 +
 +      err = -ENOMEM;
-+      o = krealloc(vdir->vd_deblk, sizeof(*o) * (vdir->vd_nblk + 1),
-+                   GFP_NOFS);
++      o = au_krealloc(vdir->vd_deblk, sizeof(*o) * (vdir->vd_nblk + 1),
++                      GFP_NOFS, /*may_shrink*/0);
 +      if (unlikely(!o))
 +              goto out;
 +
@@ -29707,7 +30242,7 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      int err;
 +      unsigned int rdhash;
 +      loff_t offset;
-+      aufs_bindex_t bend, bindex, bstart;
++      aufs_bindex_t bbot, bindex, btop;
 +      unsigned char shwh;
 +      struct file *hf, *file;
 +      struct super_block *sb;
@@ -29733,9 +30268,9 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +              shwh = 1;
 +              au_fset_fillvdir(arg->flags, SHWH);
 +      }
-+      bstart = au_fbstart(file);
-+      bend = au_fbend_dir(file);
-+      for (bindex = bstart; !err && bindex <= bend; bindex++) {
++      btop = au_fbtop(file);
++      bbot = au_fbbot_dir(file);
++      for (bindex = btop; !err && bindex <= bbot; bindex++) {
 +              hf = au_hf_dir(file, bindex);
 +              if (!hf)
 +                      continue;
@@ -29748,7 +30283,7 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +              arg->bindex = bindex;
 +              au_fclr_fillvdir(arg->flags, WHABLE);
 +              if (shwh
-+                  || (bindex != bend
++                  || (bindex != bbot
 +                      && au_br_whable(au_sbr_perm(sb, bindex))))
 +                      au_fset_fillvdir(arg->flags, WHABLE);
 +              do {
@@ -29793,6 +30328,7 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      err = 0;
 +      inode = file_inode(file);
 +      IMustLock(inode);
++      IiMustWriteLock(inode);
 +      SiMustAnyLock(inode->i_sb);
 +
 +      allocated = NULL;
@@ -29848,8 +30384,8 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +      if (tgt->vd_nblk < src->vd_nblk) {
 +              unsigned char **p;
 +
-+              p = krealloc(tgt->vd_deblk, sizeof(*p) * src->vd_nblk,
-+                           GFP_NOFS);
++              p = au_krealloc(tgt->vd_deblk, sizeof(*p) * src->vd_nblk,
++                              GFP_NOFS, /*may_shrink*/0);
 +              if (unlikely(!p))
 +                      goto out;
 +              tgt->vd_deblk = p;
@@ -29859,7 +30395,8 @@ diff -urN /usr/share/empty/fs/aufs/vdir.c linux/fs/aufs/vdir.c
 +              unsigned char *p;
 +
 +              tgt->vd_deblk_sz = deblk_sz;
-+              p = krealloc(tgt->vd_deblk[0], deblk_sz, GFP_NOFS);
++              p = au_krealloc(tgt->vd_deblk[0], deblk_sz, GFP_NOFS,
++                              /*may_shrink*/1);
 +              if (unlikely(!p))
 +                      goto out;
 +              tgt->vd_deblk[0] = p;
@@ -30044,10 +30581,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      2015-09-24 10:47:58.258053165 +0200
-@@ -0,0 +1,848 @@
++++ linux/fs/aufs/vfsub.c      2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,900 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -30068,10 +30605,43 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 + */
 +
 +#include <linux/namei.h>
++#include <linux/nsproxy.h>
 +#include <linux/security.h>
 +#include <linux/splice.h>
++#ifdef CONFIG_AUFS_BR_FUSE
++#include "../fs/mount.h"
++#endif
 +#include "aufs.h"
 +
++#ifdef CONFIG_AUFS_BR_FUSE
++int vfsub_test_mntns(struct vfsmount *mnt, struct super_block *h_sb)
++{
++      struct nsproxy *ns;
++
++      if (!au_test_fuse(h_sb) || !au_userns)
++              return 0;
++
++      ns = current->nsproxy;
++      /* no {get,put}_nsproxy(ns) */
++      return real_mount(mnt)->mnt_ns == ns->mnt_ns ? 0 : -EACCES;
++}
++#endif
++
++int vfsub_sync_filesystem(struct super_block *h_sb, int wait)
++{
++      int err;
++
++      lockdep_off();
++      down_read(&h_sb->s_umount);
++      err = __sync_filesystem(h_sb, wait);
++      up_read(&h_sb->s_umount);
++      lockdep_on();
++
++      return err;
++}
++
++/* ---------------------------------------------------------------------- */
++
 +int vfsub_update_h_iattr(struct path *h_path, int *did)
 +{
 +      int err;
@@ -30087,7 +30657,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, &st);
++              err = vfsub_getattr(h_path, &st);
 +
 +      return err;
 +}
@@ -30168,7 +30738,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +                      goto out;
 +      }
 +
-+      atomic_inc(&br->br_count);
++      au_br_get(br);
 +      fsnotify_open(file);
 +
 +out:
@@ -30185,6 +30755,24 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +      return err;
 +}
 +
++struct dentry *vfsub_lookup_one_len_unlocked(const char *name,
++                                           struct dentry *parent, int len)
++{
++      struct path path = {
++              .mnt = NULL
++      };
++
++      path.dentry = lookup_one_len_unlocked(name, parent, len);
++      if (IS_ERR(path.dentry))
++              goto out;
++      if (d_is_positive(path.dentry))
++              vfsub_update_h_iattr(&path, /*did*/NULL); /*ignore*/
++
++out:
++      AuTraceErrPtr(path.dentry);
++      return path.dentry;
++}
++
 +struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent,
 +                                  int len)
 +{
@@ -30395,7 +30983,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +
 +int vfsub_rename(struct inode *src_dir, struct dentry *src_dentry,
 +               struct inode *dir, struct path *path,
-+               struct inode **delegated_inode)
++               struct inode **delegated_inode, unsigned int flags)
 +{
 +      int err;
 +      struct path tmp = {
@@ -30416,7 +31004,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +
 +      lockdep_off();
 +      err = vfs_rename(src_dir, src_dentry, dir, path->dentry,
-+                       delegated_inode, /*flags*/0);
++                       delegated_inode, flags);
 +      lockdep_on();
 +      if (!err) {
 +              int did;
@@ -30595,6 +31183,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.c linux/fs/aufs/vfsub.c
 +      lockdep_on();
 +      if (err >= 0)
 +              vfsub_update_h_iattr(&file->f_path, /*did*/NULL); /*ignore*/
++
 +      return err;
 +}
 +
@@ -30896,10 +31485,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      2015-11-11 17:21:46.922197217 +0100
-@@ -0,0 +1,287 @@
++++ linux/fs/aufs/vfsub.h      2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,360 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -30926,6 +31515,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +
 +#include <linux/fs.h>
 +#include <linux/mount.h>
++#include <linux/posix_acl.h>
 +#include <linux/xattr.h>
 +#include "debug.h"
 +
@@ -30951,7 +31541,14 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +
 +/* to debug easier, do not make them inlined functions */
 +#define MtxMustLock(mtx)      AuDebugOn(!mutex_is_locked(mtx))
-+#define IMustLock(i)          MtxMustLock(&(i)->i_mutex)
++#define IMustLock(i)          AuDebugOn(!inode_is_locked(i))
++
++/* why VFS doesn't define it? */
++static inline
++void vfsub_inode_lock_shared_nested(struct inode *inode, unsigned int sc)
++{
++      down_read_nested(&inode->i_rwsem, sc);
++}
 +
 +/* ---------------------------------------------------------------------- */
 +
@@ -30976,6 +31573,14 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +              || IS_IMMUTABLE(inode);
 +}
 +
++#ifdef CONFIG_AUFS_BR_FUSE
++int vfsub_test_mntns(struct vfsmount *mnt, struct super_block *h_sb);
++#else
++AuStubInt0(vfsub_test_mntns, struct vfsmount *mnt, struct super_block *h_sb);
++#endif
++
++int vfsub_sync_filesystem(struct super_block *h_sb, int wait);
++
 +/* ---------------------------------------------------------------------- */
 +
 +int vfsub_update_h_iattr(struct path *h_path, int *did);
@@ -30992,6 +31597,8 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +                    struct vfsub_aopen_args *args, struct au_branch *br);
 +int vfsub_kern_path(const char *name, unsigned int flags, struct path *path);
 +
++struct dentry *vfsub_lookup_one_len_unlocked(const char *name,
++                                           struct dentry *parent, int len);
 +struct dentry *vfsub_lookup_one_len(const char *name, struct dentry *parent,
 +                                  int len);
 +
@@ -31054,7 +31661,7 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +             struct path *path, struct inode **delegated_inode);
 +int vfsub_rename(struct inode *src_hdir, struct dentry *src_dentry,
 +               struct inode *hdir, struct path *path,
-+               struct inode **delegated_inode);
++               struct inode **delegated_inode, unsigned int flags);
 +int vfsub_mkdir(struct inode *dir, struct path *path, int mode);
 +int vfsub_rmdir(struct inode *dir, struct path *path);
 +
@@ -31087,6 +31694,12 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +      return flags;
 +}
 +
++static inline int vfsub_file_execed(struct file *file)
++{
++      /* todo: direct access f_flags */
++      return !!(vfsub_file_flags(file) & __FMODE_EXEC);
++}
++
 +#if 0 /* reserved */
 +static inline void vfsub_file_accessed(struct file *h_file)
 +{
@@ -31111,10 +31724,24 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +static inline int vfsub_update_time(struct inode *h_inode, struct timespec *ts,
 +                                  int flags)
 +{
-+      return generic_update_time(h_inode, ts, flags);
++      return update_time(h_inode, ts, flags);
 +      /* no vfsub_update_h_iattr() since we don't have struct path */
 +}
 +
++#ifdef CONFIG_FS_POSIX_ACL
++static inline int vfsub_acl_chmod(struct inode *h_inode, umode_t h_mode)
++{
++      int err;
++
++      err = posix_acl_chmod(h_inode, h_mode);
++      if (err == -EOPNOTSUPP)
++              err = 0;
++      return err;
++}
++#else
++AuStubInt0(vfsub_acl_chmod, struct inode *h_inode, umode_t h_mode);
++#endif
++
 +long vfsub_splice_to(struct file *in, loff_t *ppos,
 +                   struct pipe_inode_info *pipe, size_t len,
 +                   unsigned int flags);
@@ -31135,6 +31762,36 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +              struct file *h_file);
 +int vfsub_fsync(struct file *file, struct path *path, int datasync);
 +
++/*
++ * re-use branch fs's ioctl(FICLONE) while aufs itself doesn't support such
++ * ioctl.
++ */
++static inline int vfsub_clone_file_range(struct file *src, struct file *dst,
++                                       u64 len)
++{
++      int err;
++
++      lockdep_off();
++      err = vfs_clone_file_range(src, 0, dst, 0, len);
++      lockdep_on();
++
++      return err;
++}
++
++/* copy_file_range(2) is a systemcall */
++static inline ssize_t vfsub_copy_file_range(struct file *src, loff_t src_pos,
++                                          struct file *dst, loff_t dst_pos,
++                                          size_t len, unsigned int flags)
++{
++      ssize_t ssz;
++
++      lockdep_off();
++      ssz = vfs_copy_file_range(src, src_pos, dst, dst_pos, len, flags);
++      lockdep_on();
++
++      return ssz;
++}
++
 +/* ---------------------------------------------------------------------- */
 +
 +static inline loff_t vfsub_llseek(struct file *file, loff_t offset, int origin)
@@ -31158,6 +31815,11 @@ diff -urN /usr/share/empty/fs/aufs/vfsub.h linux/fs/aufs/vfsub.h
 +int vfsub_unlink(struct inode *dir, struct path *path,
 +               struct inode **delegated_inode, int force);
 +
++static inline int vfsub_getattr(const struct path *path, struct kstat *st)
++{
++      return vfs_getattr(path, st, STATX_BASIC_STATS, AT_STATX_SYNC_AS_STAT);
++}
++
 +/* ---------------------------------------------------------------------- */
 +
 +static inline int vfsub_setxattr(struct dentry *dentry, const char *name,
@@ -31187,10 +31849,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 2015-09-24 10:47:58.258053165 +0200
-@@ -0,0 +1,765 @@
++++ linux/fs/aufs/wbr_policy.c 2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,830 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -31298,13 +31960,13 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +                       struct dentry *h_parent, void *arg)
 +{
 +      int err, rerr;
-+      aufs_bindex_t bopq, bstart;
++      aufs_bindex_t bopq, btop;
 +      struct path h_path;
 +      struct dentry *parent;
 +      struct inode *h_dir, *h_inode, *inode, *dir;
 +      unsigned int *flags = arg;
 +
-+      bstart = au_dbstart(dentry);
++      btop = au_dbtop(dentry);
 +      /* dentry is di-locked */
 +      parent = dget_parent(dentry);
 +      dir = d_inode(parent);
@@ -31331,17 +31993,17 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      if (!au_ftest_cpdown(*flags, PARENT_OPQ) && bopq <= bdst)
 +              au_fset_cpdown(*flags, PARENT_OPQ);
 +      h_inode = d_inode(h_path.dentry);
-+      mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
++      inode_lock_nested(h_inode, AuLsc_I_CHILD);
 +      if (au_ftest_cpdown(*flags, WHED)) {
 +              err = au_cpdown_dir_opq(dentry, bdst, flags);
 +              if (unlikely(err)) {
-+                      mutex_unlock(&h_inode->i_mutex);
++                      inode_unlock(h_inode);
 +                      goto out_dir;
 +              }
 +      }
 +
-+      err = au_cpdown_attr(&h_path, au_h_dptr(dentry, bstart));
-+      mutex_unlock(&h_inode->i_mutex);
++      err = au_cpdown_attr(&h_path, au_h_dptr(dentry, btop));
++      inode_unlock(h_inode);
 +      if (unlikely(err))
 +              goto out_opq;
 +
@@ -31352,8 +32014,8 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      }
 +
 +      inode = d_inode(dentry);
-+      if (au_ibend(inode) < bdst)
-+              au_set_ibend(inode, bdst);
++      if (au_ibbot(inode) < bdst)
++              au_set_ibbot(inode, bdst);
 +      au_set_h_iptr(inode, bdst, au_igrab(h_inode),
 +                    au_hi_flags(inode, /*isdir*/1));
 +      au_fhsm_wrote(dentry->d_sb, bdst, /*force*/0);
@@ -31362,9 +32024,9 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      /* revert */
 +out_opq:
 +      if (au_ftest_cpdown(*flags, DIROPQ)) {
-+              mutex_lock_nested(&h_inode->i_mutex, AuLsc_I_CHILD);
++              inode_lock_nested(h_inode, AuLsc_I_CHILD);
 +              rerr = au_diropq_remove(dentry, bdst);
-+              mutex_unlock(&h_inode->i_mutex);
++              inode_unlock(h_inode);
 +              if (unlikely(rerr)) {
 +                      AuIOErr("failed removing diropq for %pd b%d (%d)\n",
 +                              dentry, bdst, rerr);
@@ -31383,8 +32045,8 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      }
 +out_put:
 +      au_set_h_dptr(dentry, bdst, NULL);
-+      if (au_dbend(dentry) == bdst)
-+              au_update_dbend(dentry);
++      if (au_dbbot(dentry) == bdst)
++              au_update_dbbot(dentry);
 +out:
 +      dput(parent);
 +      return err;
@@ -31456,19 +32118,19 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +                           unsigned int flags __maybe_unused)
 +{
 +      int err;
-+      aufs_bindex_t bstart, bindex;
++      aufs_bindex_t btop, bindex;
 +      struct super_block *sb;
 +      struct dentry *parent, *h_parent;
 +
 +      sb = dentry->d_sb;
-+      bstart = au_dbstart(dentry);
-+      err = bstart;
-+      if (!au_br_rdonly(au_sbr(sb, bstart)))
++      btop = au_dbtop(dentry);
++      err = btop;
++      if (!au_br_rdonly(au_sbr(sb, btop)))
 +              goto out;
 +
 +      err = -EROFS;
 +      parent = dget_parent(dentry);
-+      for (bindex = au_dbstart(parent); bindex < bstart; bindex++) {
++      for (bindex = au_dbtop(parent); bindex < btop; bindex++) {
 +              h_parent = au_h_dptr(parent, bindex);
 +              if (!h_parent || d_is_negative(h_parent))
 +                      continue;
@@ -31482,7 +32144,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +
 +      /* bottom up here */
 +      if (unlikely(err < 0)) {
-+              err = au_wbr_bu(sb, bstart - 1);
++              err = au_wbr_bu(sb, btop - 1);
 +              if (err >= 0)
 +                      err = au_wbr_nonopq(dentry, err);
 +      }
@@ -31534,7 +32196,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +{
 +      int err;
 +
-+      err = au_wbr_bu(sb, au_sbend(sb));
++      err = au_wbr_bu(sb, au_sbbot(sb));
 +      atomic_set(&au_sbi(sb)->si_wbr_rr_next, -err); /* less important */
 +      /* smp_mb(); */
 +
@@ -31546,7 +32208,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +{
 +      int err, nbr;
 +      unsigned int u;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct super_block *sb;
 +      atomic_t *next;
 +
@@ -31556,9 +32218,9 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +
 +      sb = dentry->d_sb;
 +      next = &au_sbi(sb)->si_wbr_rr_next;
-+      bend = au_sbend(sb);
-+      nbr = bend + 1;
-+      for (bindex = 0; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      nbr = bbot + 1;
++      for (bindex = 0; bindex <= bbot; bindex++) {
 +              if (!au_ftest_wbr(flags, DIR)) {
 +                      err = atomic_dec_return(next) + 1;
 +                      /* modulo for 0 is meaningless */
@@ -31592,7 +32254,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      struct au_branch *br;
 +      struct au_wbr_mfs *mfs;
 +      struct dentry *h_parent;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      int err;
 +      unsigned long long b, bavail;
 +      struct path h_path;
@@ -31613,13 +32275,13 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      mfs->mfsrr_bytes = 0;
 +      if (!parent) {
 +              bindex = 0;
-+              bend = au_sbend(sb);
++              bbot = au_sbbot(sb);
 +      } else {
-+              bindex = au_dbstart(parent);
-+              bend = au_dbtaildir(parent);
++              bindex = au_dbtop(parent);
++              bbot = au_dbtaildir(parent);
 +      }
 +
-+      for (; bindex <= bend; bindex++) {
++      for (; bindex <= bbot; bindex++) {
 +              if (parent) {
 +                      h_parent = au_h_dptr(parent, bindex);
 +                      if (!h_parent || d_is_negative(h_parent))
@@ -31708,6 +32370,61 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +
 +/* ---------------------------------------------------------------------- */
 +
++/* top down regardless parent, and then mfs */
++static int au_wbr_create_tdmfs(struct dentry *dentry,
++                             unsigned int flags __maybe_unused)
++{
++      int err;
++      aufs_bindex_t bwh, btail, bindex, bfound, bmfs;
++      unsigned long long watermark;
++      struct super_block *sb;
++      struct au_wbr_mfs *mfs;
++      struct au_branch *br;
++      struct dentry *parent;
++
++      sb = dentry->d_sb;
++      mfs = &au_sbi(sb)->si_wbr_mfs;
++      mutex_lock(&mfs->mfs_lock);
++      if (time_after(jiffies, mfs->mfs_jiffy + mfs->mfs_expire)
++          || mfs->mfs_bindex < 0)
++              au_mfs(dentry, /*parent*/NULL);
++      watermark = mfs->mfsrr_watermark;
++      bmfs = mfs->mfs_bindex;
++      mutex_unlock(&mfs->mfs_lock);
++
++      /* another style of au_wbr_create_exp() */
++      bwh = au_dbwh(dentry);
++      parent = dget_parent(dentry);
++      btail = au_dbtaildir(parent);
++      if (bwh >= 0 && bwh < btail)
++              btail = bwh;
++
++      err = au_wbr_nonopq(dentry, btail);
++      if (unlikely(err < 0))
++              goto out;
++      btail = err;
++      bfound = -1;
++      for (bindex = 0; bindex <= btail; bindex++) {
++              br = au_sbr(sb, bindex);
++              if (au_br_rdonly(br))
++                      continue;
++              if (br->br_wbr->wbr_bytes > watermark) {
++                      bfound = bindex;
++                      break;
++              }
++      }
++      err = bfound;
++      if (err < 0)
++              err = bmfs;
++
++out:
++      dput(parent);
++      AuDbg("b%d\n", err);
++      return err;
++}
++
++/* ---------------------------------------------------------------------- */
++
 +/* most free space and then round robin */
 +static int au_wbr_create_mfsrr(struct dentry *dentry, unsigned int flags)
 +{
@@ -31744,7 +32461,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +{
 +      int err, e2;
 +      unsigned long long b;
-+      aufs_bindex_t bindex, bstart, bend;
++      aufs_bindex_t bindex, btop, bbot;
 +      struct super_block *sb;
 +      struct dentry *parent, *h_parent;
 +      struct au_branch *br;
@@ -31753,9 +32470,9 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      if (unlikely(err < 0))
 +              goto out;
 +      parent = dget_parent(dentry);
-+      bstart = au_dbstart(parent);
-+      bend = au_dbtaildir(parent);
-+      if (bstart == bend)
++      btop = au_dbtop(parent);
++      bbot = au_dbtaildir(parent);
++      if (btop == bbot)
 +              goto out_parent; /* success */
 +
 +      e2 = au_wbr_create_mfs(dentry, flags);
@@ -31768,7 +32485,7 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +      b = br->br_wbr->wbr_bytes;
 +      AuDbg("b%d, %llu\n", err, b);
 +
-+      for (bindex = bstart; bindex <= bend; bindex++) {
++      for (bindex = btop; bindex <= bbot; bindex++) {
 +              h_parent = au_h_dptr(parent, bindex);
 +              if (!h_parent || d_is_negative(h_parent))
 +                      continue;
@@ -31839,15 +32556,15 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +static int au_wbr_copyup_bup(struct dentry *dentry)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bstart;
++      aufs_bindex_t bindex, btop;
 +      struct dentry *parent, *h_parent;
 +      struct super_block *sb;
 +
 +      err = -EROFS;
 +      sb = dentry->d_sb;
 +      parent = dget_parent(dentry);
-+      bstart = au_dbstart(parent);
-+      for (bindex = au_dbstart(dentry); bindex >= bstart; bindex--) {
++      btop = au_dbtop(parent);
++      for (bindex = au_dbtop(dentry); bindex >= btop; bindex--) {
 +              h_parent = au_h_dptr(parent, bindex);
 +              if (!h_parent || d_is_negative(h_parent))
 +                      continue;
@@ -31861,20 +32578,20 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +
 +      /* bottom up here */
 +      if (unlikely(err < 0))
-+              err = au_wbr_bu(sb, bstart - 1);
++              err = au_wbr_bu(sb, btop - 1);
 +
 +      AuDbg("b%d\n", err);
 +      return err;
 +}
 +
 +/* bottom up */
-+int au_wbr_do_copyup_bu(struct dentry *dentry, aufs_bindex_t bstart)
++int au_wbr_do_copyup_bu(struct dentry *dentry, aufs_bindex_t btop)
 +{
 +      int err;
 +
-+      err = au_wbr_bu(dentry->d_sb, bstart);
++      err = au_wbr_bu(dentry->d_sb, btop);
 +      AuDbg("b%d\n", err);
-+      if (err > bstart)
++      if (err > btop)
 +              err = au_wbr_nonopq(dentry, err);
 +
 +      AuDbg("b%d\n", err);
@@ -31884,10 +32601,10 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +static int au_wbr_copyup_bu(struct dentry *dentry)
 +{
 +      int err;
-+      aufs_bindex_t bstart;
++      aufs_bindex_t btop;
 +
-+      bstart = au_dbstart(dentry);
-+      err = au_wbr_do_copyup_bu(dentry, bstart);
++      btop = au_dbtop(dentry);
++      err = au_wbr_do_copyup_bu(dentry, btop);
 +      return err;
 +}
 +
@@ -31933,6 +32650,16 @@ diff -urN /usr/share/empty/fs/aufs/wbr_policy.c linux/fs/aufs/wbr_policy.c
 +              .init   = au_wbr_create_init_mfsrr,
 +              .fin    = au_wbr_create_fin_mfs
 +      },
++      [AuWbrCreate_TDMFS] = {
++              .create = au_wbr_create_tdmfs,
++              .init   = au_wbr_create_init_mfs,
++              .fin    = au_wbr_create_fin_mfs
++      },
++      [AuWbrCreate_TDMFSV] = {
++              .create = au_wbr_create_tdmfs,
++              .init   = au_wbr_create_init_mfs,
++              .fin    = au_wbr_create_fin_mfs
++      },
 +      [AuWbrCreate_PMFS] = {
 +              .create = au_wbr_create_pmfs,
 +              .init   = au_wbr_create_init_mfs,
@@ -31956,10 +32683,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      2015-09-24 10:47:58.258053165 +0200
-@@ -0,0 +1,1063 @@
++++ linux/fs/aufs/whout.c      2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,1061 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -32151,7 +32878,8 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +
 +      /* under the same dir, no need to lock_rename() */
 +      delegated = NULL;
-+      err = vfsub_rename(h_dir, h_dentry, h_dir, &h_path, &delegated);
++      err = vfsub_rename(h_dir, h_dentry, h_dir, &h_path, &delegated,
++                         /*flags*/0);
 +      AuTraceErr(err);
 +      if (unlikely(err == -EWOULDBLOCK)) {
 +              pr_warn("cannot retry for NFSv4 delegation"
@@ -32526,7 +33254,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      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);
++      au_hn_inode_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);
@@ -32550,7 +33278,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      if (!err)
 +              err = au_wh_init(a->br, a->sb);
 +      wbr_wh_write_unlock(wbr);
-+      au_hn_imtx_unlock(hdir);
++      au_hn_inode_unlock(hdir);
 +      di_read_unlock(a->sb->s_root, AuLock_IR);
 +      if (!err)
 +              au_fhsm_wrote(a->sb, bindex, /*force*/0);
@@ -32558,7 +33286,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +out:
 +      if (wbr)
 +              atomic_dec(&wbr->wbr_wh_running);
-+      atomic_dec(&a->br->br_count);
++      au_br_put(a->br);
 +      si_write_unlock(a->sb);
 +      au_nwt_done(&au_sbi(a->sb)->si_nowait);
 +      kfree(arg);
@@ -32584,11 +33312,11 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +               */
 +              arg->sb = sb;
 +              arg->br = br;
-+              atomic_inc(&br->br_count);
++              au_br_get(br);
 +              wkq_err = au_wkq_nowait(reinit_br_wh, arg, sb, /*flags*/0);
 +              if (unlikely(wkq_err)) {
 +                      atomic_dec(&br->br_wbr->wbr_wh_running);
-+                      atomic_dec(&br->br_count);
++                      au_br_put(br);
 +                      kfree(arg);
 +              }
 +              do_dec = 0;
@@ -32854,15 +33582,12 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +
 +      SiMustAnyLock(sb);
 +
-+      whtmp = kmalloc(sizeof(*whtmp), gfp);
++      whtmp = kzalloc(sizeof(*whtmp), gfp);
 +      if (unlikely(!whtmp)) {
 +              whtmp = ERR_PTR(-ENOMEM);
 +              goto out;
 +      }
 +
-+      whtmp->dir = NULL;
-+      whtmp->br = NULL;
-+      whtmp->wh_dentry = NULL;
 +      /* no estimation for dir size */
 +      rdhash = au_sbi(sb)->si_rdhash;
 +      if (!rdhash)
@@ -32880,7 +33605,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +void au_whtmp_rmdir_free(struct au_whtmp_rmdir *whtmp)
 +{
 +      if (whtmp->br)
-+              atomic_dec(&whtmp->br->br_count);
++              au_br_put(whtmp->br);
 +      dput(whtmp->wh_dentry);
 +      iput(whtmp->dir);
 +      au_nhash_wh_free(&whtmp->whlist);
@@ -32905,7 +33630,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +
 +      br = au_sbr(dir->i_sb, bindex);
 +      wh_inode = d_inode(wh_dentry);
-+      mutex_lock_nested(&wh_inode->i_mutex, AuLsc_I_CHILD);
++      inode_lock_nested(wh_inode, AuLsc_I_CHILD);
 +
 +      /*
 +       * someone else might change some whiteouts while we were sleeping.
@@ -32927,7 +33652,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +              if (unlikely(wkq_err))
 +                      err = wkq_err;
 +      }
-+      mutex_unlock(&wh_inode->i_mutex);
++      inode_unlock(wh_inode);
 +
 +      if (!err) {
 +              h_tmp.dentry = wh_dentry;
@@ -32939,7 +33664,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      }
 +
 +      if (!err) {
-+              if (au_ibstart(dir) == bindex) {
++              if (au_ibtop(dir) == bindex) {
 +                      /* todo: dir->i_mutex is necessary */
 +                      au_cpup_attr_timesizes(dir);
 +                      if (h_nlink)
@@ -32963,7 +33688,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      struct au_hinode *hdir;
 +
 +      /* rmdir by nfsd may cause deadlock with this i_mutex */
-+      /* mutex_lock(&a->dir->i_mutex); */
++      /* inode_lock(a->dir); */
 +      err = -EROFS;
 +      sb = a->dir->i_sb;
 +      si_read_lock(sb, !AuLock_FLUSH);
@@ -32981,19 +33706,19 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      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);
++      au_hn_inode_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 = au_whtmp_rmdir(a->dir, bindex, a->wh_dentry, &a->whlist);
-+      au_hn_imtx_unlock(hdir);
++      au_hn_inode_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); */
++      /* inode_unlock(a->dir); */
 +      au_whtmp_rmdir_free(a);
 +      si_read_unlock(sb);
 +      au_nwt_done(&au_sbi(sb)->si_nowait);
@@ -33013,7 +33738,7 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +      sb = dir->i_sb;
 +      args->dir = au_igrab(dir);
 +      args->br = au_sbr(sb, bindex);
-+      atomic_inc(&args->br->br_count);
++      au_br_get(args->br);
 +      args->wh_dentry = dget(wh_dentry);
 +      wkq_err = au_wkq_nowait(call_rmdir_whtmp, args, sb, /*flags*/0);
 +      if (unlikely(wkq_err)) {
@@ -33023,10 +33748,10 @@ diff -urN /usr/share/empty/fs/aufs/whout.c linux/fs/aufs/whout.c
 +}
 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      2015-09-24 10:47:58.258053165 +0200
++++ linux/fs/aufs/whout.h      2017-09-05 10:42:11.058755349 +0200
 @@ -0,0 +1,85 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -33112,10 +33837,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        2015-09-24 10:47:58.258053165 +0200
++++ linux/fs/aufs/wkq.c        2017-07-29 12:14:25.906375514 +0200
 @@ -0,0 +1,213 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -33329,10 +34054,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        2015-09-24 10:47:58.258053165 +0200
-@@ -0,0 +1,91 @@
++++ linux/fs/aufs/wkq.h        2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,93 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -33358,6 +34083,8 @@ diff -urN /usr/share/empty/fs/aufs/wkq.h linux/fs/aufs/wkq.h
 +
 +#ifdef __KERNEL__
 +
++#include <linux/percpu_counter.h>
++
 +struct super_block;
 +
 +/* ---------------------------------------------------------------------- */
@@ -33424,10 +34151,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/xattr.c linux/fs/aufs/xattr.c
 --- /usr/share/empty/fs/aufs/xattr.c   1970-01-01 01:00:00.000000000 +0100
-+++ linux/fs/aufs/xattr.c      2015-09-24 10:47:58.258053165 +0200
-@@ -0,0 +1,344 @@
++++ linux/fs/aufs/xattr.c      2017-09-05 10:42:11.058755349 +0200
+@@ -0,0 +1,357 @@
 +/*
-+ * Copyright (C) 2014-2015 Junjiro R. Okajima
++ * Copyright (C) 2014-2017 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
@@ -33447,6 +34174,8 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 + * handling xattr functions
 + */
 +
++#include <linux/fs.h>
++#include <linux/posix_acl_xattr.h>
 +#include <linux/xattr.h>
 +#include "aufs.h"
 +
@@ -33516,9 +34245,9 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +
 +      /* unlock it temporary */
 +      h_idst = d_inode(h_dst);
-+      mutex_unlock(&h_idst->i_mutex);
++      inode_unlock(h_idst);
 +      err = vfsub_setxattr(h_dst, name, *buf, ssz, /*flags*/0);
-+      mutex_lock_nested(&h_idst->i_mutex, AuLsc_I_CHILD2);
++      inode_lock_nested(h_idst, AuLsc_I_CHILD2);
 +      if (unlikely(err)) {
 +              if (verbose || au_debug_test())
 +                      pr_err("%s, err %d\n", name, err);
@@ -33541,9 +34270,9 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +      /* there should not be the parent-child relationship between them */
 +      h_isrc = d_inode(h_src);
 +      h_idst = d_inode(h_dst);
-+      mutex_unlock(&h_idst->i_mutex);
-+      mutex_lock_nested(&h_isrc->i_mutex, AuLsc_I_CHILD);
-+      mutex_lock_nested(&h_idst->i_mutex, AuLsc_I_CHILD2);
++      inode_unlock(h_idst);
++      vfsub_inode_lock_shared_nested(h_isrc, AuLsc_I_CHILD);
++      inode_lock_nested(h_idst, AuLsc_I_CHILD2);
 +      unlocked = 0;
 +
 +      /* some filesystems don't list POSIX ACL, for example tmpfs */
@@ -33568,7 +34297,7 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +                      goto out;
 +              err = vfs_listxattr(h_src, p, ssz);
 +      }
-+      mutex_unlock(&h_isrc->i_mutex);
++      inode_unlock_shared(h_isrc);
 +      unlocked = 1;
 +      AuDbg("err %d, ssz %zd\n", err, ssz);
 +      if (unlikely(err < 0))
@@ -33604,19 +34333,34 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +              AuTraceErr(err);
 +      }
 +
-+      kfree(value);
++      if (value)
++              kfree(value);
 +
 +out_free:
-+      kfree(o);
++      if (o)
++              kfree(o);
 +out:
 +      if (!unlocked)
-+              mutex_unlock(&h_isrc->i_mutex);
++              inode_unlock_shared(h_isrc);
 +      AuTraceErr(err);
 +      return err;
 +}
 +
 +/* ---------------------------------------------------------------------- */
 +
++static int au_smack_reentering(struct super_block *sb)
++{
++#if IS_ENABLED(CONFIG_SECURITY_SMACK)
++      /*
++       * as a part of lookup, smack_d_instantiate() is called, and it calls
++       * i_op->getxattr(). ouch.
++       */
++      return si_pid_test(sb);
++#else
++      return 0;
++#endif
++}
++
 +enum {
 +      AU_XATTR_LIST,
 +      AU_XATTR_GET
@@ -33640,14 +34384,18 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +static ssize_t au_lgxattr(struct dentry *dentry, struct au_lgxattr *arg)
 +{
 +      ssize_t err;
++      int reenter;
 +      struct path h_path;
 +      struct super_block *sb;
 +
 +      sb = dentry->d_sb;
-+      err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM);
-+      if (unlikely(err))
-+              goto out;
-+      err = au_h_path_getattr(dentry, /*force*/1, &h_path);
++      reenter = au_smack_reentering(sb);
++      if (!reenter) {
++              err = si_read_lock(sb, AuLock_FLUSH | AuLock_NOPLM);
++              if (unlikely(err))
++                      goto out;
++      }
++      err = au_h_path_getattr(dentry, /*force*/1, &h_path, reenter);
 +      if (unlikely(err))
 +              goto out_si;
 +      if (unlikely(!h_path.dentry))
@@ -33661,6 +34409,7 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +                                  arg->u.list.list, arg->u.list.size);
 +              break;
 +      case AU_XATTR_GET:
++              AuDebugOn(d_is_negative(h_path.dentry));
 +              err = vfs_getxattr(h_path.dentry,
 +                                 arg->u.get.name, arg->u.get.value,
 +                                 arg->u.get.size);
@@ -33668,9 +34417,11 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +      }
 +
 +out_di:
-+      di_read_unlock(dentry, AuLock_IR);
++      if (!reenter)
++              di_read_unlock(dentry, AuLock_IR);
 +out_si:
-+      si_read_unlock(sb);
++      if (!reenter)
++              si_read_unlock(sb);
 +out:
 +      AuTraceErr(err);
 +      return err;
@@ -33689,8 +34440,9 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +      return au_lgxattr(dentry, &arg);
 +}
 +
-+ssize_t aufs_getxattr(struct dentry *dentry, const char *name, void *value,
-+                    size_t size)
++static ssize_t au_getxattr(struct dentry *dentry,
++                         struct inode *inode __maybe_unused,
++                         const char *name, void *value, size_t size)
 +{
 +      struct au_lgxattr arg = {
 +              .type = AU_XATTR_GET,
@@ -33704,10 +34456,11 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +      return au_lgxattr(dentry, &arg);
 +}
 +
-+int aufs_setxattr(struct dentry *dentry, const char *name, const void *value,
-+                size_t size, int flags)
++static int au_setxattr(struct dentry *dentry, struct inode *inode,
++                     const char *name, const void *value, size_t size,
++                     int flags)
 +{
-+      struct au_srxattr arg = {
++      struct au_sxattr arg = {
 +              .type = AU_XATTR_SET,
 +              .u.set = {
 +                      .name   = name,
@@ -33717,65 +34470,52 @@ diff -urN /usr/share/empty/fs/aufs/xattr.c linux/fs/aufs/xattr.c
 +              },
 +      };
 +
-+      return au_srxattr(dentry, &arg);
-+}
-+
-+int aufs_removexattr(struct dentry *dentry, const char *name)
-+{
-+      struct au_srxattr arg = {
-+              .type = AU_XATTR_REMOVE,
-+              .u.remove = {
-+                      .name   = name
-+              },
-+      };
-+
-+      return au_srxattr(dentry, &arg);
++      return au_sxattr(dentry, inode, &arg);
 +}
 +
 +/* ---------------------------------------------------------------------- */
 +
-+#if 0
-+static size_t au_xattr_list(struct dentry *dentry, char *list, size_t list_size,
-+                          const char *name, size_t name_len, int type)
-+{
-+      return aufs_listxattr(dentry, list, list_size);
-+}
-+
-+static int au_xattr_get(struct dentry *dentry, const char *name, void *buffer,
-+                      size_t size, int type)
++static int au_xattr_get(const struct xattr_handler *handler,
++                      struct dentry *dentry, struct inode *inode,
++                      const char *name, void *buffer, size_t size)
 +{
-+      return aufs_getxattr(dentry, name, buffer, size);
++      return au_getxattr(dentry, inode, name, buffer, size);
 +}
 +
-+static int au_xattr_set(struct dentry *dentry, const char *name,
-+                      const void *value, size_t size, int flags, int type)
++static int au_xattr_set(const struct xattr_handler *handler,
++                      struct dentry *dentry, struct inode *inode,
++                      const char *name, const void *value, size_t size,
++                      int flags)
 +{
-+      return aufs_setxattr(dentry, name, value, size, flags);
++      return au_setxattr(dentry, inode, name, value, size, flags);
 +}
 +
 +static const struct xattr_handler au_xattr_handler = {
-+      /* no prefix, no flags */
-+      .list   = au_xattr_list,
++      .name   = "",
++      .prefix = "",
 +      .get    = au_xattr_get,
 +      .set    = au_xattr_set
-+      /* why no remove? */
 +};
 +
 +static const struct xattr_handler *au_xattr_handlers[] = {
-+      &au_xattr_handler
++#ifdef CONFIG_FS_POSIX_ACL
++      &posix_acl_access_xattr_handler,
++      &posix_acl_default_xattr_handler,
++#endif
++      &au_xattr_handler, /* must be last */
++      NULL
 +};
 +
 +void au_xattr_init(struct super_block *sb)
 +{
-+      /* sb->s_xattr = au_xattr_handlers; */
++      sb->s_xattr = au_xattr_handlers;
 +}
-+#endif
 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       2015-11-11 17:21:46.922197217 +0100
-@@ -0,0 +1,1296 @@
++++ linux/fs/aufs/xino.c       2017-07-29 12:14:25.906375514 +0200
+@@ -0,0 +1,1415 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -33829,6 +34569,9 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +/* ---------------------------------------------------------------------- */
 +
++static ssize_t xino_fwrite_wkq(vfs_writef_t func, struct file *file, void *buf,
++                             size_t size, loff_t *pos);
++
 +static ssize_t do_xino_fwrite(vfs_writef_t func, struct file *file, void *kbuf,
 +                            size_t size, loff_t *pos)
 +{
@@ -33838,14 +34581,26 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +              void *k;
 +              const char __user *u;
 +      } buf;
++      int i;
++      const int prevent_endless = 10;
 +
++      i = 0;
 +      buf.k = kbuf;
 +      oldfs = get_fs();
 +      set_fs(KERNEL_DS);
 +      do {
-+              /* todo: signal_pending? */
 +              err = func(file, buf.u, size, pos);
-+      } while (err == -EAGAIN || err == -EINTR);
++              if (err == -EINTR
++                  && !au_wkq_test()
++                  && fatal_signal_pending(current)) {
++                      set_fs(oldfs);
++                      err = xino_fwrite_wkq(func, file, kbuf, size, pos);
++                      BUG_ON(err == -EINTR);
++                      oldfs = get_fs();
++                      set_fs(KERNEL_DS);
++              }
++      } while (i++ < prevent_endless
++               && (err == -EAGAIN || err == -EINTR));
 +      set_fs(oldfs);
 +
 +#if 0 /* reserved for future use */
@@ -33871,35 +34626,42 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      *a->errp = do_xino_fwrite(a->func, a->file, a->buf, a->size, a->pos);
 +}
 +
++static ssize_t xino_fwrite_wkq(vfs_writef_t func, struct file *file, void *buf,
++                             size_t size, loff_t *pos)
++{
++      ssize_t err;
++      int wkq_err;
++      struct do_xino_fwrite_args args = {
++              .errp   = &err,
++              .func   = func,
++              .file   = file,
++              .buf    = buf,
++              .size   = size,
++              .pos    = pos
++      };
++
++      /*
++       * it breaks RLIMIT_FSIZE and normal user's limit,
++       * users should care about quota and real 'filesystem full.'
++       */
++      wkq_err = au_wkq_wait(call_do_xino_fwrite, &args);
++      if (unlikely(wkq_err))
++              err = wkq_err;
++
++      return err;
++}
++
 +ssize_t xino_fwrite(vfs_writef_t func, struct file *file, void *buf,
 +                  size_t size, loff_t *pos)
 +{
 +      ssize_t err;
 +
-+      /* todo: signal block and no wkq? */
 +      if (rlimit(RLIMIT_FSIZE) == RLIM_INFINITY) {
 +              lockdep_off();
 +              err = do_xino_fwrite(func, file, buf, size, pos);
 +              lockdep_on();
-+      } else {
-+              /*
-+               * it breaks RLIMIT_FSIZE and normal user's limit,
-+               * users should care about quota and real 'filesystem full.'
-+               */
-+              int wkq_err;
-+              struct do_xino_fwrite_args args = {
-+                      .errp   = &err,
-+                      .func   = func,
-+                      .file   = file,
-+                      .buf    = buf,
-+                      .size   = size,
-+                      .pos    = pos
-+              };
-+
-+              wkq_err = au_wkq_wait(call_do_xino_fwrite, &args);
-+              if (unlikely(wkq_err))
-+                      err = wkq_err;
-+      }
++      } else
++              err = xino_fwrite_wkq(func, file, buf, size, pos);
 +
 +      return err;
 +}
@@ -33984,7 +34746,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +struct au_xino_lock_dir {
 +      struct au_hinode *hdir;
 +      struct dentry *parent;
-+      struct mutex *mtx;
++      struct inode *dir;
 +};
 +
 +static void au_xino_lock_dir(struct super_block *sb, struct file *xino,
@@ -33999,20 +34761,20 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +              bindex = au_br_index(sb, brid);
 +      if (bindex >= 0) {
 +              ldir->hdir = au_hi(d_inode(sb->s_root), bindex);
-+              au_hn_imtx_lock_nested(ldir->hdir, AuLsc_I_PARENT);
++              au_hn_inode_lock_nested(ldir->hdir, AuLsc_I_PARENT);
 +      } else {
 +              ldir->parent = dget_parent(xino->f_path.dentry);
-+              ldir->mtx = &d_inode(ldir->parent)->i_mutex;
-+              mutex_lock_nested(ldir->mtx, AuLsc_I_PARENT);
++              ldir->dir = d_inode(ldir->parent);
++              inode_lock_nested(ldir->dir, AuLsc_I_PARENT);
 +      }
 +}
 +
 +static void au_xino_unlock_dir(struct au_xino_lock_dir *ldir)
 +{
 +      if (ldir->hdir)
-+              au_hn_imtx_unlock(ldir->hdir);
++              au_hn_inode_unlock(ldir->hdir);
 +      else {
-+              mutex_unlock(ldir->mtx);
++              inode_unlock(ldir->dir);
 +              dput(ldir->parent);
 +      }
 +}
@@ -34026,7 +34788,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      int err;
 +      unsigned long jiffy;
 +      blkcnt_t blocks;
-+      aufs_bindex_t bi, bend;
++      aufs_bindex_t bi, bbot;
 +      struct kstatfs *st;
 +      struct au_branch *br;
 +      struct file *new_xino, *file;
@@ -34034,13 +34796,13 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      struct au_xino_lock_dir ldir;
 +
 +      err = -ENOMEM;
-+      st = kzalloc(sizeof(*st), GFP_NOFS);
++      st = kmalloc(sizeof(*st), GFP_NOFS);
 +      if (unlikely(!st))
 +              goto out;
 +
 +      err = -EINVAL;
-+      bend = au_sbend(sb);
-+      if (unlikely(bindex < 0 || bend < bindex))
++      bbot = au_sbbot(sb);
++      if (unlikely(bindex < 0 || bbot < bindex))
 +              goto out_st;
 +      br = au_sbr(sb, bindex);
 +      file = br->br_xino.xi_file;
@@ -34069,7 +34831,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      br->br_xino.xi_file = new_xino;
 +
 +      h_sb = au_br_sb(br);
-+      for (bi = 0; bi <= bend; bi++) {
++      for (bi = 0; bi <= bbot; bi++) {
 +              if (unlikely(bi == bindex))
 +                      continue;
 +              br = au_sbr(sb, bi);
@@ -34124,7 +34886,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      if (unlikely(err))
 +              pr_warn("err b%d, (%d)\n", bindex, err);
 +      atomic_dec(&br->br_xino_running);
-+      atomic_dec(&br->br_count);
++      au_br_put(br);
 +      si_write_unlock(sb);
 +      au_nwt_done(&au_sbi(sb)->si_nowait);
 +      kfree(args);
@@ -34169,10 +34931,10 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      args = kmalloc(sizeof(*args), GFP_NOFS);
 +      if (unlikely(!args)) {
 +              AuErr1("no memory\n");
-+              goto out_args;
++              goto out;
 +      }
 +
-+      atomic_inc(&br->br_count);
++      au_br_get(br);
 +      args->sb = sb;
 +      args->br = br;
 +      wkq_err = au_wkq_nowait(xino_do_trunc, args, sb, /*flags*/0);
@@ -34180,10 +34942,9 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +              return; /* success */
 +
 +      pr_err("wkq %d\n", wkq_err);
-+      atomic_dec(&br->br_count);
-+
-+out_args:
++      au_br_put(br);
 +      kfree(args);
++
 +out:
 +      atomic_dec(&br->br_xino_running);
 +}
@@ -34343,7 +35104,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +{
 +      int err;
 +      unsigned int mnt_flags;
-+      aufs_bindex_t bindex, bend, bi;
++      aufs_bindex_t bindex, bbot, bi;
 +      unsigned char try_trunc;
 +      struct au_iinfo *iinfo;
 +      struct super_block *sb;
@@ -34352,6 +35113,8 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      struct au_branch *br;
 +      vfs_writef_t xwrite;
 +
++      AuDebugOn(au_is_bad_inode(inode));
++
 +      sb = inode->i_sb;
 +      mnt_flags = au_mntflags(sb);
 +      if (!au_opt_test(mnt_flags, XINO)
@@ -34364,18 +35127,15 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      }
 +
 +      iinfo = au_ii(inode);
-+      if (!iinfo)
-+              return;
-+
-+      bindex = iinfo->ii_bstart;
++      bindex = iinfo->ii_btop;
 +      if (bindex < 0)
 +              return;
 +
 +      xwrite = au_sbi(sb)->si_xwrite;
 +      try_trunc = !!au_opt_test(mnt_flags, TRUNC_XINO);
-+      hi = iinfo->ii_hinode + bindex;
-+      bend = iinfo->ii_bend;
-+      for (; bindex <= bend; bindex++, hi++) {
++      hi = au_hinode(iinfo, bindex);
++      bbot = iinfo->ii_bbot;
++      for (; bindex <= bbot; bindex++, hi++) {
 +              h_inode = hi->hi_inode;
 +              if (!h_inode
 +                  || (!unlinked && h_inode->i_nlink))
@@ -34527,13 +35287,13 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      inode = file_inode(file);
 +      h_parent = dget_parent(file->f_path.dentry);
 +      h_dir = d_inode(h_parent);
-+      mutex_lock_nested(&h_dir->i_mutex, AuLsc_I_PARENT);
++      inode_lock_nested(h_dir, AuLsc_I_PARENT);
 +      /* mnt_want_write() is unnecessary here */
 +      /* no delegation since it is just created */
 +      if (inode->i_nlink)
 +              err = vfsub_unlink(h_dir, &file->f_path, /*delegated*/NULL,
 +                                 /*force*/0);
-+      mutex_unlock(&h_dir->i_mutex);
++      inode_unlock(h_dir);
 +      dput(h_parent);
 +      if (unlikely(err)) {
 +              if (!silent)
@@ -34564,10 +35324,10 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +/*
 + * find another branch who is on the same filesystem of the specified
-+ * branch{@btgt}. search until @bend.
++ * branch{@btgt}. search until @bbot.
 + */
 +static int is_sb_shared(struct super_block *sb, aufs_bindex_t btgt,
-+                      aufs_bindex_t bend)
++                      aufs_bindex_t bbot)
 +{
 +      aufs_bindex_t bindex;
 +      struct super_block *tgt_sb = au_sbr_sb(sb, btgt);
@@ -34575,7 +35335,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      for (bindex = 0; bindex < btgt; bindex++)
 +              if (unlikely(tgt_sb == au_sbr_sb(sb, bindex)))
 +                      return bindex;
-+      for (bindex++; bindex <= bend; bindex++)
++      for (bindex++; bindex <= bbot; bindex++)
 +              if (unlikely(tgt_sb == au_sbr_sb(sb, bindex)))
 +                      return bindex;
 +      return -1;
@@ -34594,16 +35354,16 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +{
 +      int err;
 +      ino_t ino;
-+      aufs_bindex_t bend, bindex;
++      aufs_bindex_t bbot, bindex;
 +      struct au_branch *shared_br, *b;
 +      struct file *file;
 +      struct super_block *tgt_sb;
 +
 +      shared_br = NULL;
-+      bend = au_sbend(sb);
++      bbot = au_sbbot(sb);
 +      if (do_test) {
 +              tgt_sb = au_br_sb(br);
-+              for (bindex = 0; bindex <= bend; bindex++) {
++              for (bindex = 0; bindex <= bbot; bindex++) {
 +                      b = au_sbr(sb, bindex);
 +                      if (tgt_sb == au_br_sb(b)) {
 +                              shared_br = b;
@@ -34691,7 +35451,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +static int xib_restore(struct super_block *sb)
 +{
 +      int err;
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      void *page;
 +
 +      err = -ENOMEM;
@@ -34700,8 +35460,8 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +              goto out;
 +
 +      err = 0;
-+      bend = au_sbend(sb);
-+      for (bindex = 0; !err && bindex <= bend; bindex++)
++      bbot = au_sbbot(sb);
++      for (bindex = 0; !err && bindex <= bbot; bindex++)
 +              if (!bindex || is_sb_shared(sb, bindex, bindex - 1) < 0)
 +                      err = do_xib_restore
 +                              (sb, au_sbr(sb, bindex)->br_xino.xi_file, page);
@@ -34784,7 +35544,8 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      if (sbinfo->si_xib)
 +              fput(sbinfo->si_xib);
 +      sbinfo->si_xib = NULL;
-+      free_page((unsigned long)sbinfo->si_xib_buf);
++      if (sbinfo->si_xib_buf)
++              free_page((unsigned long)sbinfo->si_xib_buf);
 +      sbinfo->si_xib_buf = NULL;
 +}
 +
@@ -34827,7 +35588,8 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      goto out; /* success */
 +
 +out_free:
-+      free_page((unsigned long)sbinfo->si_xib_buf);
++      if (sbinfo->si_xib_buf)
++              free_page((unsigned long)sbinfo->si_xib_buf);
 +      sbinfo->si_xib_buf = NULL;
 +      if (err >= 0)
 +              err = -EIO;
@@ -34843,11 +35605,11 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +/* xino for each branch */
 +static void xino_clear_br(struct super_block *sb)
 +{
-+      aufs_bindex_t bindex, bend;
++      aufs_bindex_t bindex, bbot;
 +      struct au_branch *br;
 +
-+      bend = au_sbend(sb);
-+      for (bindex = 0; bindex <= bend; bindex++) {
++      bbot = au_sbbot(sb);
++      for (bindex = 0; bindex <= bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              if (!br || !br->br_xino.xi_file)
 +                      continue;
@@ -34861,7 +35623,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +{
 +      int err;
 +      ino_t ino;
-+      aufs_bindex_t bindex, bend, bshared;
++      aufs_bindex_t bindex, bbot, bshared;
 +      struct {
 +              struct file *old, *new;
 +      } *fpair, *p;
@@ -34872,16 +35634,15 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      SiMustWriteLock(sb);
 +
 +      err = -ENOMEM;
-+      bend = au_sbend(sb);
-+      fpair = kcalloc(bend + 1, sizeof(*fpair), GFP_NOFS);
++      bbot = au_sbbot(sb);
++      fpair = kcalloc(bbot + 1, sizeof(*fpair), GFP_NOFS);
 +      if (unlikely(!fpair))
 +              goto out;
 +
 +      inode = d_inode(sb->s_root);
 +      ino = AUFS_ROOT_INO;
 +      writef = au_sbi(sb)->si_xwrite;
-+      for (bindex = 0, p = fpair; bindex <= bend; bindex++, p++) {
-+              br = au_sbr(sb, bindex);
++      for (bindex = 0, p = fpair; bindex <= bbot; bindex++, p++) {
 +              bshared = is_sb_shared(sb, bindex, bindex - 1);
 +              if (bshared >= 0) {
 +                      /* shared xino */
@@ -34891,6 +35652,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +              if (!p->new) {
 +                      /* new xino */
++                      br = au_sbr(sb, bindex);
 +                      p->old = br->br_xino.xi_file;
 +                      p->new = au_xino_create2(base, br->br_xino.xi_file);
 +                      err = PTR_ERR(p->new);
@@ -34906,7 +35668,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +                      goto out_pair;
 +      }
 +
-+      for (bindex = 0, p = fpair; bindex <= bend; bindex++, p++) {
++      for (bindex = 0, p = fpair; bindex <= bbot; bindex++, p++) {
 +              br = au_sbr(sb, bindex);
 +              if (br->br_xino.xi_file)
 +                      fput(br->br_xino.xi_file);
@@ -34915,7 +35677,7 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      }
 +
 +out_pair:
-+      for (bindex = 0, p = fpair; bindex <= bend; bindex++, p++)
++      for (bindex = 0, p = fpair; bindex <= bbot; bindex++, p++)
 +              if (p->new)
 +                      fput(p->new);
 +              else
@@ -34968,14 +35730,14 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +
 +      au_opt_set(sbinfo->si_mntflags, XINO);
 +      dir = d_inode(parent);
-+      mutex_lock_nested(&dir->i_mutex, AuLsc_I_PARENT);
++      inode_lock_nested(dir, AuLsc_I_PARENT);
 +      /* mnt_want_write() is unnecessary here */
 +      err = au_xino_set_xib(sb, xino->file);
 +      if (!err)
 +              err = au_xigen_set(sb, xino->file);
 +      if (!err)
 +              err = au_xino_set_br(sb, xino->file);
-+      mutex_unlock(&dir->i_mutex);
++      inode_unlock(dir);
 +      if (!err)
 +              goto out; /* success */
 +
@@ -35001,12 +35763,12 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +      struct au_branch *br;
 +      struct super_block *h_sb;
 +      struct path path;
-+      aufs_bindex_t bend, bindex, bwr;
++      aufs_bindex_t bbot, bindex, bwr;
 +
 +      br = NULL;
-+      bend = au_sbend(sb);
++      bbot = au_sbbot(sb);
 +      bwr = -1;
-+      for (bindex = 0; bindex <= bend; bindex++) {
++      for (bindex = 0; bindex <= bbot; bindex++) {
 +              br = au_sbr(sb, bindex);
 +              if (au_br_writable(br->br_perm)
 +                  && !au_test_fs_bad_xino(au_br_sb(br))) {
@@ -35070,12 +35832,109 @@ diff -urN /usr/share/empty/fs/aufs/xino.c linux/fs/aufs/xino.c
 +out:
 +      return err;
 +}
++
++/* ---------------------------------------------------------------------- */
++
++void au_xinondir_leave(struct super_block *sb, aufs_bindex_t bindex,
++                     ino_t h_ino, int idx)
++{
++      struct au_xino_file *xino;
++
++      AuDebugOn(!au_opt_test(au_mntflags(sb), XINO));
++      xino = &au_sbr(sb, bindex)->br_xino;
++      AuDebugOn(idx < 0 || xino->xi_nondir.total <= idx);
++
++      spin_lock(&xino->xi_nondir.spin);
++      AuDebugOn(xino->xi_nondir.array[idx] != h_ino);
++      xino->xi_nondir.array[idx] = 0;
++      spin_unlock(&xino->xi_nondir.spin);
++      wake_up_all(&xino->xi_nondir.wqh);
++}
++
++static int au_xinondir_find(struct au_xino_file *xino, ino_t h_ino)
++{
++      int found, total, i;
++
++      found = -1;
++      total = xino->xi_nondir.total;
++      for (i = 0; i < total; i++) {
++              if (xino->xi_nondir.array[i] != h_ino)
++                      continue;
++              found = i;
++              break;
++      }
++
++      return found;
++}
++
++static int au_xinondir_expand(struct au_xino_file *xino)
++{
++      int err, sz;
++      ino_t *p;
++
++      BUILD_BUG_ON(KMALLOC_MAX_SIZE > INT_MAX);
++
++      err = -ENOMEM;
++      sz = xino->xi_nondir.total * sizeof(ino_t);
++      if (unlikely(sz > KMALLOC_MAX_SIZE / 2))
++              goto out;
++      p = au_kzrealloc(xino->xi_nondir.array, sz, sz << 1, GFP_ATOMIC,
++                       /*may_shrink*/0);
++      if (p) {
++              xino->xi_nondir.array = p;
++              xino->xi_nondir.total <<= 1;
++              AuDbg("xi_nondir.total %d\n", xino->xi_nondir.total);
++              err = 0;
++      }
++
++out:
++      return err;
++}
++
++int au_xinondir_enter(struct super_block *sb, aufs_bindex_t bindex, ino_t h_ino,
++                    int *idx)
++{
++      int err, found, empty;
++      struct au_xino_file *xino;
++
++      err = 0;
++      *idx = -1;
++      if (!au_opt_test(au_mntflags(sb), XINO))
++              goto out; /* no xino */
++
++      xino = &au_sbr(sb, bindex)->br_xino;
++
++again:
++      spin_lock(&xino->xi_nondir.spin);
++      found = au_xinondir_find(xino, h_ino);
++      if (found == -1) {
++              empty = au_xinondir_find(xino, /*h_ino*/0);
++              if (empty == -1) {
++                      empty = xino->xi_nondir.total;
++                      err = au_xinondir_expand(xino);
++                      if (unlikely(err))
++                              goto out_unlock;
++              }
++              xino->xi_nondir.array[empty] = h_ino;
++              *idx = empty;
++      } else {
++              spin_unlock(&xino->xi_nondir.spin);
++              wait_event(xino->xi_nondir.wqh,
++                         xino->xi_nondir.array[found] != h_ino);
++              goto again;
++      }
++
++out_unlock:
++      spin_unlock(&xino->xi_nondir.spin);
++out:
++      return err;
++}
 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       2015-12-10 17:59:16.856166891 +0100
++++ linux/include/uapi/linux/aufs_type.h       2017-09-05 10:42:11.058755349 +0200
 @@ -0,0 +1,419 @@
 +/*
-+ * Copyright (C) 2005-2015 Junjiro R. Okajima
++ * Copyright (C) 2005-2017 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
@@ -35115,7 +35974,7 @@ diff -urN /usr/share/empty/include/uapi/linux/aufs_type.h linux/include/uapi/lin
 +
 +#include <linux/limits.h>
 +
-+#define AUFS_VERSION  "4.3-20151116"
++#define AUFS_VERSION  "4.x-rcN-20170904"
 +
 +/* todo? move this to linux-2.6.19/include/magic.h */
 +#define AUFS_SUPER_MAGIC      ('a' << 24 | 'u' << 16 | 'f' << 8 | 's')
@@ -35493,13 +36352,13 @@ diff -urN /usr/share/empty/include/uapi/linux/aufs_type.h linux/include/uapi/lin
 +#define AUFS_CTL_FHSM_FD      _IOW(AuCtlType, AuCtl_FHSM_FD, int)
 +
 +#endif /* __AUFS_TYPE_H__ */
-aufs4.3 loopback patch
+aufs4.x-rcN loopback patch
 
 diff --git a/drivers/block/loop.c b/drivers/block/loop.c
-index 291ec9e..1b8190d 100644
+index 10707c3..af32e47 100644
 --- a/drivers/block/loop.c
 +++ b/drivers/block/loop.c
-@@ -417,7 +417,7 @@ static int do_req_filebacked(struct loop_device *lo, struct request *rq)
+@@ -547,7 +547,7 @@ static int do_req_filebacked(struct loop_device *lo, struct request *rq)
  }
  
  struct switch_request {
@@ -35508,7 +36367,7 @@ index 291ec9e..1b8190d 100644
        struct completion wait;
  };
  
-@@ -437,6 +437,7 @@ static void do_loop_switch(struct loop_device *lo, struct switch_request *p)
+@@ -573,6 +573,7 @@ static void do_loop_switch(struct loop_device *lo, struct switch_request *p)
        mapping = file->f_mapping;
        mapping_set_gfp_mask(old_file->f_mapping, lo->old_gfp_mask);
        lo->lo_backing_file = file;
@@ -35516,7 +36375,7 @@ index 291ec9e..1b8190d 100644
        lo->lo_blocksize = S_ISBLK(mapping->host->i_mode) ?
                mapping->host->i_bdev->bd_block_size : PAGE_SIZE;
        lo->old_gfp_mask = mapping_gfp_mask(mapping);
-@@ -448,11 +449,13 @@ static void do_loop_switch(struct loop_device *lo, struct switch_request *p)
+@@ -585,11 +586,13 @@ static void do_loop_switch(struct loop_device *lo, struct switch_request *p)
   * First it needs to flush existing IO, it does this by sending a magic
   * BIO down the pipe. The completion of this BIO does the actual switch.
   */
@@ -35531,10 +36390,10 @@ index 291ec9e..1b8190d 100644
  
        /* freeze queue and wait for completion of scheduled requests */
        blk_mq_freeze_queue(lo->lo_queue);
-@@ -471,7 +474,16 @@ static int loop_switch(struct loop_device *lo, struct file *file)
-  */
static int loop_flush(struct loop_device *lo)
- {
+@@ -611,7 +614,16 @@ static int loop_flush(struct loop_device *lo)
+       /* loop not yet configured, no running thread, nothing to flush */
      if (lo->lo_state != Lo_bound)
+               return 0;
 -      return loop_switch(lo, NULL);
 +      return loop_switch(lo, NULL, NULL);
 +}
@@ -35549,7 +36408,7 @@ index 291ec9e..1b8190d 100644
  }
  
  static void loop_reread_partitions(struct loop_device *lo,
-@@ -508,6 +520,7 @@ static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
+@@ -648,6 +660,7 @@ static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
                          unsigned int arg)
  {
        struct file     *file, *old_file;
@@ -35557,7 +36416,7 @@ index 291ec9e..1b8190d 100644
        struct inode    *inode;
        int             error;
  
-@@ -524,9 +537,16 @@ static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
+@@ -664,9 +677,16 @@ static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
        file = fget(arg);
        if (!file)
                goto out;
@@ -35574,7 +36433,7 @@ index 291ec9e..1b8190d 100644
  
        error = -EINVAL;
  
-@@ -538,17 +558,21 @@ static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
+@@ -678,17 +698,21 @@ static int loop_change_fd(struct loop_device *lo, struct block_device *bdev,
                goto out_putf;
  
        /* and ... switch */
@@ -35597,7 +36456,7 @@ index 291ec9e..1b8190d 100644
   out:
        return error;
  }
-@@ -709,7 +733,7 @@ static void loop_config_discard(struct loop_device *lo)
+@@ -882,7 +906,7 @@ static int loop_prepare_queue(struct loop_device *lo)
  static int loop_set_fd(struct loop_device *lo, fmode_t mode,
                       struct block_device *bdev, unsigned int arg)
  {
@@ -35606,7 +36465,7 @@ index 291ec9e..1b8190d 100644
        struct inode    *inode;
        struct address_space *mapping;
        unsigned lo_blocksize;
-@@ -724,6 +748,12 @@ static int loop_set_fd(struct loop_device *lo, fmode_t mode,
+@@ -897,6 +921,12 @@ static int loop_set_fd(struct loop_device *lo, fmode_t mode,
        file = fget(arg);
        if (!file)
                goto out;
@@ -35619,7 +36478,7 @@ index 291ec9e..1b8190d 100644
  
        error = -EBUSY;
        if (lo->lo_state != Lo_unbound)
-@@ -778,6 +808,7 @@ static int loop_set_fd(struct loop_device *lo, fmode_t mode,
+@@ -949,6 +979,7 @@ static int loop_set_fd(struct loop_device *lo, fmode_t mode,
        lo->lo_device = bdev;
        lo->lo_flags = lo_flags;
        lo->lo_backing_file = file;
@@ -35627,7 +36486,7 @@ index 291ec9e..1b8190d 100644
        lo->transfer = NULL;
        lo->ioctl = NULL;
        lo->lo_sizelimit = 0;
-@@ -809,6 +840,8 @@ static int loop_set_fd(struct loop_device *lo, fmode_t mode,
+@@ -981,6 +1012,8 @@ static int loop_set_fd(struct loop_device *lo, fmode_t mode,
  
   out_putf:
        fput(file);
@@ -35636,7 +36495,7 @@ index 291ec9e..1b8190d 100644
   out:
        /* This is safe: open() is still holding a reference. */
        module_put(THIS_MODULE);
-@@ -855,6 +888,7 @@ loop_init_xfer(struct loop_device *lo, struct loop_func_table *xfer,
+@@ -1027,6 +1060,7 @@ loop_init_xfer(struct loop_device *lo, struct loop_func_table *xfer,
  static int loop_clr_fd(struct loop_device *lo)
  {
        struct file *filp = lo->lo_backing_file;
@@ -35644,7 +36503,7 @@ index 291ec9e..1b8190d 100644
        gfp_t gfp = lo->old_gfp_mask;
        struct block_device *bdev = lo->lo_device;
  
-@@ -886,6 +920,7 @@ static int loop_clr_fd(struct loop_device *lo)
+@@ -1058,6 +1092,7 @@ static int loop_clr_fd(struct loop_device *lo)
        spin_lock_irq(&lo->lo_lock);
        lo->lo_state = Lo_rundown;
        lo->lo_backing_file = NULL;
@@ -35652,7 +36511,7 @@ index 291ec9e..1b8190d 100644
        spin_unlock_irq(&lo->lo_lock);
  
        loop_release_xfer(lo);
-@@ -931,6 +966,8 @@ static int loop_clr_fd(struct loop_device *lo)
+@@ -1102,6 +1137,8 @@ static int loop_clr_fd(struct loop_device *lo)
         * bd_mutex which is usually taken before lo_ctl_mutex.
         */
        fput(filp);
@@ -35662,7 +36521,7 @@ index 291ec9e..1b8190d 100644
  }
  
 diff --git a/drivers/block/loop.h b/drivers/block/loop.h
-index 25e8997..93b6fce 100644
+index fecd3f9..6b3a7c9 100644
 --- a/drivers/block/loop.h
 +++ b/drivers/block/loop.h
 @@ -46,7 +46,7 @@ struct loop_device {
@@ -35675,10 +36534,10 @@ index 25e8997..93b6fce 100644
        unsigned        lo_blocksize;
        void            *key_data; 
 diff --git a/fs/aufs/f_op.c b/fs/aufs/f_op.c
-index 91c2ce7..d4ee5a7 100644
+index 870717e..ea7fee0 100644
 --- a/fs/aufs/f_op.c
 +++ b/fs/aufs/f_op.c
-@@ -389,7 +389,7 @@ static ssize_t aufs_splice_read(struct file *file, loff_t *ppos,
+@@ -357,7 +357,7 @@ static ssize_t aufs_read_iter(struct kiocb *kio, struct iov_iter *iov_iter)
        if (IS_ERR(h_file))
                goto out;
  
@@ -35688,10 +36547,10 @@ index 91c2ce7..d4ee5a7 100644
                if (file->f_mapping != h_file->f_mapping) {
                        file->f_mapping = h_file->f_mapping;
 diff --git a/fs/aufs/loop.c b/fs/aufs/loop.c
-index f324758..4555e7b 100644
+index e35f015..b37f1ae 100644
 --- a/fs/aufs/loop.c
 +++ b/fs/aufs/loop.c
-@@ -131,3 +131,19 @@ void au_loopback_fin(void)
+@@ -132,3 +132,19 @@ void au_loopback_fin(void)
                symbol_put(loop_backing_file);
        kfree(au_warn_loopback_array);
  }
@@ -35712,7 +36571,7 @@ index f324758..4555e7b 100644
 +      return f;
 +}
 diff --git a/fs/aufs/loop.h b/fs/aufs/loop.h
-index 6d9864d..3322557 100644
+index e2df495..36e5052 100644
 --- a/fs/aufs/loop.h
 +++ b/fs/aufs/loop.h
 @@ -25,7 +25,11 @@ void au_warn_loopback(struct super_block *h_sb);
@@ -35737,10 +36596,10 @@ index 6d9864d..3322557 100644
  
  #endif /* __KERNEL__ */
 diff --git a/fs/aufs/super.c b/fs/aufs/super.c
-index 3fe10d3..2f32d58 100644
+index 5455fb1..8b9df60 100644
 --- a/fs/aufs/super.c
 +++ b/fs/aufs/super.c
-@@ -841,7 +841,10 @@ static const struct super_operations aufs_sop = {
+@@ -837,7 +837,10 @@ static const struct super_operations aufs_sop = {
        .statfs         = aufs_statfs,
        .put_super      = aufs_put_super,
        .sync_fs        = aufs_sync_fs,
@@ -35753,10 +36612,10 @@ index 3fe10d3..2f32d58 100644
  
  /* ---------------------------------------------------------------------- */
 diff --git a/include/linux/fs.h b/include/linux/fs.h
-index fabd9d7a..90174cf 100644
+index 9b21bb5..f7124fa 100644
 --- a/include/linux/fs.h
 +++ b/include/linux/fs.h
-@@ -1734,6 +1734,10 @@ struct super_operations {
+@@ -1814,6 +1814,10 @@ struct super_operations {
                                  struct shrink_control *);
        long (*free_cached_objects)(struct super_block *,
                                    struct shrink_control *);
This page took 0.793402 seconds and 4 git commands to generate.