Home
last modified time | relevance | path

Searched refs:iocharset (Results 1 – 21 of 21) sorted by relevance

/linux-6.15/fs/befs/
H A Dlinuxvfs.c710 kfree(opts->iocharset); in befs_parse_param()
711 opts->iocharset = param->string; in befs_parse_param()
734 if (opts->iocharset) in befs_show_options()
749 kfree(BEFS_SB(sb)->mount_opts.iocharset); in befs_put_super()
767 sbi->mount_opts.iocharset = opts->iocharset; in befs_set_options()
768 opts->iocharset = NULL; in befs_set_options()
879 if (befs_sb->mount_opts.iocharset) { in befs_fill_super()
881 befs_sb->mount_opts.iocharset); in befs_fill_super()
886 befs_sb->mount_opts.iocharset); in befs_fill_super()
901 kfree(befs_sb->mount_opts.iocharset); in befs_fill_super()
[all …]
H A Dbefs.h29 char *iocharset; member
H A DChangeLog96 * Make directory lookup/read use the NLS if an iocharset is provided. [WD]
/linux-6.15/fs/exfat/
H A DKconfig16 string "Default iocharset for exFAT"
23 filesystem uses. This can be overridden with the "iocharset" mount
H A Dsuper.c30 if (sbi->options.iocharset != exfat_default_iocharset) in exfat_free_iocharset()
31 kfree(sbi->options.iocharset); in exfat_free_iocharset()
315 opts->iocharset = param->string; in exfat_parse_param()
677 if (!strcmp(sbi->options.iocharset, "utf8")) in exfat_fill_super()
680 sbi->nls_io = load_nls(sbi->options.iocharset); in exfat_fill_super()
683 sbi->options.iocharset); in exfat_fill_super()
786 sbi->options.iocharset = exfat_default_iocharset; in exfat_init_fs_context()
H A Dexfat_fs.h233 char *iocharset; member
/linux-6.15/fs/isofs/
H A Dinode.c165 char *iocharset; member
376 kfree(popt->iocharset); in isofs_parse_param()
377 popt->iocharset = kstrdup("utf8", GFP_KERNEL); in isofs_parse_param()
378 if (!popt->iocharset) in isofs_parse_param()
382 kfree(popt->iocharset); in isofs_parse_param()
384 if (!popt->iocharset) in isofs_parse_param()
822 char *p = opt->iocharset ? opt->iocharset : CONFIG_NLS_DEFAULT; in isofs_fill_super()
824 sbi->s_nls_iocharset = opt->iocharset ? in isofs_fill_super()
825 load_nls(opt->iocharset) : load_nls_default(); in isofs_fill_super()
1530 kfree(opt->iocharset); in isofs_free_fc()
[all …]
/linux-6.15/Documentation/admin-guide/
H A Djfs.rst11 iocharset=name
14 iocharset=utf8 for UTF-8 translations. This requires
16 iocharset=none specifies the default behavior explicitly.
/linux-6.15/fs/smb/client/
H A Dfs_context.c445 new_ctx->iocharset = NULL; in smb3_fs_context_dup()
461 DUP_CTX_STR(iocharset); in smb3_fs_context_dup()
963 if (new_ctx->iocharset && in smb3_verify_reconfigure_ctx()
964 (!old_ctx->iocharset || strcmp(new_ctx->iocharset, old_ctx->iocharset))) { in smb3_verify_reconfigure_ctx()
1104 STEAL_STRING(cifs_sb, ctx, iocharset); in smb3_reconfigure()
1552 kfree(ctx->iocharset); in smb3_fs_context_parse_param()
1553 ctx->iocharset = kstrdup(param->string, GFP_KERNEL); in smb3_fs_context_parse_param()
1554 if (ctx->iocharset == NULL) { in smb3_fs_context_parse_param()
1562 cifs_dbg(FYI, "iocharset set to %s\n", ctx->iocharset); in smb3_fs_context_parse_param()
1996 kfree(ctx->iocharset); in smb3_cleanup_fs_context_contents()
[all …]
H A Dfs_context.h232 char *iocharset; /* local code page for mapping to and from Unicode */ member
H A Dcifsfs.c638 if (cifs_sb->ctx->iocharset) in cifs_show_options()
639 seq_printf(s, ",iocharset=%s", cifs_sb->ctx->iocharset); in cifs_show_options()
H A Dconnect.c3588 if (ctx->iocharset == NULL) { in cifs_setup_cifs_sb()
3592 cifs_sb->local_nls = load_nls(ctx->iocharset); in cifs_setup_cifs_sb()
3595 ctx->iocharset); in cifs_setup_cifs_sb()
/linux-6.15/fs/fat/
H A Dinode.c715 if (opts->iocharset != fat_default_iocharset) { in fat_reset_iocharset()
717 kfree(opts->iocharset); in fat_reset_iocharset()
718 opts->iocharset = fat_default_iocharset; in fat_reset_iocharset()
1271 opts->iocharset = param->string; in fat_parse_param()
1573 if (!strcmp(opts->iocharset, "utf8")) { in fat_fill_super()
1592 opts->iocharset = NULL; in fat_fill_super()
1788 sbi->nls_io = load_nls(sbi->options.iocharset); in fat_fill_super()
1791 sbi->options.iocharset); in fat_fill_super()
1942 if (opts->iocharset != fat_default_iocharset) in fat_free_fc()
1943 kfree(opts->iocharset); in fat_free_fc()
H A DKconfig90 string "Default iocharset for FAT"
97 with the "iocharset" mount option for FAT filesystems.
H A Dfat.h36 char *iocharset; /* Charset used for filename input/display */ member
/linux-6.15/Documentation/filesystems/
H A Dntfs3.rst44 * - iocharset=name
49 Example: iocharset=utf8
H A Disofs.rst19 iocharset=name Character set to use for converting from Unicode to
H A Dudf.rst40 iocharset= Set the NLS character set
H A Dbefs.rst105 iocharset=xxx Use xxx as the name of the NLS translation table.
H A Dvfat.rst61 **iocharset=<name>**
72 .. note:: ``iocharset=utf8`` is not recommended. If unsure, you should consider
/linux-6.15/Documentation/admin-guide/cifs/
H A Dusage.rst356 iocharset
359 names if the server supports it. If iocharset is