OSDN Git Service

fs: reiserfs: remove useless new_opts in reiserfs_remount
authorDongliang Mu <mudongliangabcd@gmail.com>
Wed, 27 Oct 2021 14:34:41 +0000 (22:34 +0800)
committerJan Kara <jack@suse.cz>
Wed, 27 Oct 2021 14:45:20 +0000 (16:45 +0200)
commit81dedaf10c20959bdf5624f9783f408df26ba7a4
treecfbdbdeb6b1dd29432c0274cafe04c74cfc9b8a5
parente96a1866b40570b5950cda8602c2819189c62a48
fs: reiserfs: remove useless new_opts in reiserfs_remount

Since the commit c3d98ea08291 ("VFS: Don't use save/replace_mount_options
if not using generic_show_options") eliminates replace_mount_options
in reiserfs_remount, but does not handle the allocated new_opts,
it will cause memory leak in the reiserfs_remount.

Because new_opts is useless in reiserfs_mount, so we fix this bug by
removing the useless new_opts in reiserfs_remount.

Fixes: c3d98ea08291 ("VFS: Don't use save/replace_mount_options if not using generic_show_options")
Link: https://lore.kernel.org/r/20211027143445.4156459-1-mudongliangabcd@gmail.com
Signed-off-by: Dongliang Mu <mudongliangabcd@gmail.com>
Signed-off-by: Jan Kara <jack@suse.cz>
fs/reiserfs/super.c