Hi all, Today's linux-next merge of the ext4 tree got a conflict in: fs/ext4/super.c between commit: ed318a6cc0b6 ("fscrypt: support test_dummy_encryption=v2") from the fscrypt tree and commit: e0198aff3ae3 ("ext4: reject mount options not supported when remounting in handle_mount_opt()") from the ext4 tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc fs/ext4/super.c index 4a3d21972011,62e6ebc0c0ae..000000000000 --- a/fs/ext4/super.c +++ b/fs/ext4/super.c @@@ -1819,8 -1817,8 +1820,8 @@@ static const struct mount_opts {Opt_jqfmt_vfsv0, QFMT_VFS_V0, MOPT_QFMT}, {Opt_jqfmt_vfsv1, QFMT_VFS_V1, MOPT_QFMT}, {Opt_max_dir_size_kb, 0, MOPT_GTE0}, - {Opt_test_dummy_encryption, 0, MOPT_GTE0}, + {Opt_test_dummy_encryption, 0, MOPT_STRING}, - {Opt_nombcache, EXT4_MOUNT_NO_MBCACHE, MOPT_SET}, + {Opt_nombcache, EXT4_MOUNT_NO_MBCACHE, MOPT_SET | MOPT_NO_REMOUNT}, {Opt_err, 0, 0} };