ext4: remove duplicate remount check for JOURNAL_CHECKSUM change

rejection of, changing journal_checksum during remount. One suffices.

While we're at it, remove old comment about the "check" option
which has been deprecated for some time now.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>

authored by Eric Sandeen and committed by Theodore Ts'o b94a8b36 0572639f

Changed files
-11
fs
ext4
-11
fs/ext4/super.c
··· 4850 4850 if (sbi->s_journal && sbi->s_journal->j_task->io_context) 4851 4851 journal_ioprio = sbi->s_journal->j_task->io_context->ioprio; 4852 4852 4853 - /* 4854 - * Allow the "check" option to be passed as a remount option. 4855 - */ 4856 4853 if (!parse_options(data, sb, NULL, &journal_ioprio, 1)) { 4857 - err = -EINVAL; 4858 - goto restore_opts; 4859 - } 4860 - 4861 - if ((old_opts.s_mount_opt & EXT4_MOUNT_JOURNAL_CHECKSUM) ^ 4862 - test_opt(sb, JOURNAL_CHECKSUM)) { 4863 - ext4_msg(sb, KERN_ERR, "changing journal_checksum " 4864 - "during remount not supported"); 4865 4854 err = -EINVAL; 4866 4855 goto restore_opts; 4867 4856 }