Home
last modified time | relevance | path

Searched refs:new_opts (Results 1 – 3 of 3) sorted by relevance

/Linux-v5.15/fs/ntfs3/
Dsuper.c367 struct ntfs_mount_options *new_opts = fc->fs_private; in ntfs_fs_reconfigure() local
376 new_opts->nls = ntfs_load_nls(new_opts->nls_name); in ntfs_fs_reconfigure()
377 if (IS_ERR(new_opts->nls)) { in ntfs_fs_reconfigure()
378 new_opts->nls = NULL; in ntfs_fs_reconfigure()
379 errorf(fc, "ntfs3: Cannot load iocharset %s", new_opts->nls_name); in ntfs_fs_reconfigure()
382 if (new_opts->nls != sbi->options->nls) in ntfs_fs_reconfigure()
388 !new_opts->force) { in ntfs_fs_reconfigure()
393 memcpy(sbi->options, new_opts, sizeof(*new_opts)); in ntfs_fs_reconfigure()
/Linux-v5.15/fs/ext2/
Dsuper.c1316 struct ext2_mount_options new_opts; in ext2_remount() local
1322 new_opts.s_mount_opt = sbi->s_mount_opt; in ext2_remount()
1323 new_opts.s_resuid = sbi->s_resuid; in ext2_remount()
1324 new_opts.s_resgid = sbi->s_resgid; in ext2_remount()
1327 if (!parse_options(data, sb, &new_opts)) in ext2_remount()
1332 if ((sbi->s_mount_opt ^ new_opts.s_mount_opt) & EXT2_MOUNT_DAX) { in ext2_remount()
1335 new_opts.s_mount_opt ^= EXT2_MOUNT_DAX; in ext2_remount()
1385 sbi->s_mount_opt = new_opts.s_mount_opt; in ext2_remount()
1386 sbi->s_resuid = new_opts.s_resuid; in ext2_remount()
1387 sbi->s_resgid = new_opts.s_resgid; in ext2_remount()
/Linux-v5.15/fs/reiserfs/
Dsuper.c1440 char *new_opts; in reiserfs_remount() local
1448 new_opts = kstrdup(arg, GFP_KERNEL); in reiserfs_remount()
1449 if (arg && !new_opts) in reiserfs_remount()
1602 kfree(new_opts); in reiserfs_remount()