/openbmc/linux/fs/befs/ |
H A D | linuxvfs.c | 705 opts->iocharset = NULL; in parse_options() 748 kfree(opts->iocharset); in parse_options() 749 opts->iocharset = match_strdup(&args[0]); in parse_options() 750 if (!opts->iocharset) { in parse_options() 779 if (opts->iocharset) in befs_show_options() 780 seq_printf(m, ",charset=%s", opts->iocharset); in befs_show_options() 794 kfree(BEFS_SB(sb)->mount_opts.iocharset); in befs_put_super() 795 BEFS_SB(sb)->mount_opts.iocharset = NULL; in befs_put_super() 911 if (befs_sb->mount_opts.iocharset) { in befs_fill_super() 913 befs_sb->mount_opts.iocharset); in befs_fill_super() [all …]
|
H A D | befs.h | 29 char *iocharset; member
|
H A D | ChangeLog | 96 * Make directory lookup/read use the NLS if an iocharset is provided. [WD]
|
/openbmc/linux/fs/isofs/ |
H A D | inode.c | 165 char *iocharset; member 357 popt->iocharset = NULL; in parse_options() 392 kfree(popt->iocharset); in parse_options() 393 popt->iocharset = kstrdup("utf8", GFP_KERNEL); in parse_options() 394 if (!popt->iocharset) in parse_options() 398 kfree(popt->iocharset); in parse_options() 399 popt->iocharset = match_strdup(&args[0]); in parse_options() 400 if (!popt->iocharset) in parse_options() 868 char *p = opt.iocharset ? opt.iocharset : CONFIG_NLS_DEFAULT; in isofs_fill_super() 870 sbi->s_nls_iocharset = opt.iocharset ? in isofs_fill_super() [all …]
|
/openbmc/linux/fs/exfat/ |
H A D | Kconfig | 16 string "Default iocharset for exFAT" 23 filesystem uses. This can be overridden with the "iocharset" mount
|
H A D | super.c | 30 if (sbi->options.iocharset != exfat_default_iocharset) in exfat_free_iocharset() 31 kfree(sbi->options.iocharset); in exfat_free_iocharset() 284 opts->iocharset = param->string; in exfat_parse_param() 648 if (!strcmp(sbi->options.iocharset, "utf8")) in exfat_fill_super() 651 sbi->nls_io = load_nls(sbi->options.iocharset); in exfat_fill_super() 654 sbi->options.iocharset); in exfat_fill_super() 759 sbi->options.iocharset = exfat_default_iocharset; in exfat_init_fs_context()
|
H A D | exfat_fs.h | 229 char *iocharset; member
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | jfs.rst | 11 iocharset=name 14 iocharset=utf8 for UTF-8 translations. This requires 16 iocharset=none specifies the default behavior explicitly.
|
/openbmc/linux/fs/smb/client/ |
H A D | fs_context.c | 354 new_ctx->iocharset = NULL; in smb3_fs_context_dup() 368 DUP_CTX_STR(iocharset); in smb3_fs_context_dup() 868 if (new_ctx->iocharset && in smb3_verify_reconfigure_ctx() 869 (!old_ctx->iocharset || strcmp(new_ctx->iocharset, old_ctx->iocharset))) { in smb3_verify_reconfigure_ctx() 1000 STEAL_STRING(cifs_sb, ctx, iocharset); in smb3_reconfigure() 1455 kfree(ctx->iocharset); in smb3_fs_context_parse_param() 1456 ctx->iocharset = kstrdup(param->string, GFP_KERNEL); in smb3_fs_context_parse_param() 1457 if (ctx->iocharset == NULL) { in smb3_fs_context_parse_param() 1465 cifs_dbg(FYI, "iocharset set to %s\n", ctx->iocharset); in smb3_fs_context_parse_param() 1833 kfree(ctx->iocharset); in smb3_cleanup_fs_context_contents() [all …]
|
H A D | fs_context.h | 190 char *iocharset; /* local code page for mapping to and from Unicode */ member
|
H A D | cifsfs.c | 607 if (cifs_sb->ctx->iocharset) in cifs_show_options() 608 seq_printf(s, ",iocharset=%s", cifs_sb->ctx->iocharset); in cifs_show_options()
|
H A D | connect.c | 3365 if (ctx->iocharset == NULL) { in cifs_setup_cifs_sb() 3369 cifs_sb->local_nls = load_nls(ctx->iocharset); in cifs_setup_cifs_sb() 3372 ctx->iocharset); in cifs_setup_cifs_sb()
|
/openbmc/linux/fs/fat/ |
H A D | inode.c | 712 if (opts->iocharset != fat_default_iocharset) { in fat_reset_iocharset() 714 kfree(opts->iocharset); in fat_reset_iocharset() 715 opts->iocharset = fat_default_iocharset; in fat_reset_iocharset() 1132 char *iocharset; in parse_options() local 1299 iocharset = match_strdup(&args[0]); in parse_options() 1300 if (!iocharset) in parse_options() 1302 opts->iocharset = iocharset; in parse_options() 1363 if (!strcmp(opts->iocharset, "utf8")) { in parse_options() 1832 sbi->nls_io = load_nls(sbi->options.iocharset); in fat_fill_super() 1835 sbi->options.iocharset); in fat_fill_super()
|
H A D | Kconfig | 90 string "Default iocharset for FAT" 97 with the "iocharset" mount option for FAT filesystems.
|
H A D | fat.h | 34 char *iocharset; /* Charset used for filename input/display */ member
|
/openbmc/linux/Documentation/filesystems/ |
H A D | ntfs3.rst | 44 * - iocharset=name 49 Example: iocharset=utf8
|
H A D | isofs.rst | 19 iocharset=name Character set to use for converting from Unicode to
|
H A D | udf.rst | 40 iocharset= Set the NLS character set
|
H A D | befs.rst | 105 iocharset=xxx Use xxx as the name of the NLS translation table.
|
H A D | vfat.rst | 61 **iocharset=<name>** 72 .. note:: ``iocharset=utf8`` is not recommended. If unsure, you should consider
|
H A D | ntfs.rst | 112 iocharset=name Deprecated option. Still supported but please use
|
/openbmc/linux/Documentation/admin-guide/cifs/ |
H A D | usage.rst | 356 iocharset 359 names if the server supports it. If iocharset is
|