Current syncfs(2) syscall on overlayfs just calls sync_filesystem() on upper_sb to synchronize whole dirty inodes in upper filesystem regardless of the overlay ownership of the inode. In the use case of container, when multiple containers using the same underlying upper filesystem, it has some shortcomings as below. (1) Performance Synchronization is probably heavy because it actually syncs unnecessary inodes for target overlayfs. (2) Interference Unplanned synchronization will probably impact IO performance of unrelated container processes on the other overlayfs. This series try to implement containerized syncfs for overlayfs so that only sync target dirty upper inodes which are belong to specific overlayfs instance. By doing this, it is able to reduce cost of synchronization and will not seriously impact IO performance of unrelated processes. v1->v2: - Mark overlayfs' inode dirty itself instead of adding notification mechanism to vfs inode. Chengguang Xu (8): ovl: setup overlayfs' private bdi ovl: implement ->writepages operation ovl: implement overlayfs' ->evict_inode operation ovl: mark overlayfs' inode dirty on modification ovl: mark overlayfs' inode dirty on shared writable mmap ovl: implement overlayfs' ->write_inode operation ovl: cache dirty overlayfs' inode ovl: implement containerized syncfs for overlayfs fs/overlayfs/file.c | 4 +++ fs/overlayfs/inode.c | 27 +++++++++++++++++++ fs/overlayfs/overlayfs.h | 4 +++ fs/overlayfs/super.c | 57 +++++++++++++++++++++++++++++++++++++--- fs/overlayfs/util.c | 14 ++++++++++ 5 files changed, 102 insertions(+), 4 deletions(-) -- 2.26.2