From 15aca7d2882f1316449f43174192e05d6e9765f5 Mon Sep 17 00:00:00 2001 From: Erez Zadok Date: Tue, 26 Nov 2013 22:01:34 -0500 Subject: [PATCH] Unionfs: port to 3.9 Signed-off-by: Erez Zadok --- fs/unionfs/Kconfig | 3 +-- fs/unionfs/main.c | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/fs/unionfs/Kconfig b/fs/unionfs/Kconfig index f3c1ac453da..5c356170b28 100644 --- a/fs/unionfs/Kconfig +++ b/fs/unionfs/Kconfig @@ -1,6 +1,5 @@ config UNION_FS - tristate "Union file system (EXPERIMENTAL)" - depends on EXPERIMENTAL + tristate "Union file system" help Unionfs is a stackable unification file system, which appears to merge the contents of several directories (branches), while keeping diff --git a/fs/unionfs/main.c b/fs/unionfs/main.c index bf7b72bc8e2..325a94fd9bc 100644 --- a/fs/unionfs/main.c +++ b/fs/unionfs/main.c @@ -700,7 +700,7 @@ static struct file_system_type unionfs_fs_type = { .name = UNIONFS_NAME, .mount = unionfs_mount, .kill_sb = generic_shutdown_super, - .fs_flags = FS_REVAL_DOT, + .fs_flags = 0, }; static int __init init_unionfs_fs(void) -- 2.34.1