Home
last modified time | relevance | path

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

/linux-4.1.27/fs/ncpfs/
Dioctl.c164 struct nls_table *iocharset; in ncp_set_charsets() local
184 iocharset = NULL; in ncp_set_charsets()
185 user.iocharset[NCP_IOCSNAME_LEN] = 0; in ncp_set_charsets()
186 if (!user.iocharset[0] || !strcmp(user.iocharset, "default")) { in ncp_set_charsets()
187 iocharset = load_nls_default(); in ncp_set_charsets()
189 } else if (!strcmp(user.iocharset, "utf8")) { in ncp_set_charsets()
190 iocharset = load_nls_default(); in ncp_set_charsets()
193 iocharset = load_nls(user.iocharset); in ncp_set_charsets()
194 if (!iocharset) { in ncp_set_charsets()
204 oldset_io = iocharset; in ncp_set_charsets()
[all …]
/linux-4.1.27/fs/befs/
Dlinuxvfs.c685 opts->iocharset = NULL; in parse_options()
727 kfree(opts->iocharset); in parse_options()
728 opts->iocharset = match_strdup(&args[0]); in parse_options()
729 if (!opts->iocharset) { in parse_options()
755 kfree(BEFS_SB(sb)->mount_opts.iocharset); in befs_put_super()
756 BEFS_SB(sb)->mount_opts.iocharset = NULL; in befs_put_super()
864 if (befs_sb->mount_opts.iocharset) { in befs_fill_super()
866 befs_sb->mount_opts.iocharset); in befs_fill_super()
867 befs_sb->nls = load_nls(befs_sb->mount_opts.iocharset); in befs_fill_super()
871 befs_sb->mount_opts.iocharset); in befs_fill_super()
[all …]
Dbefs.h28 char *iocharset; member
DChangeLog96 * Make directory lookup/read use the NLS if an iocharset is provided. [WD]
/linux-4.1.27/Documentation/filesystems/
Djfs.txt8 iocharset=name Character set to use for converting from Unicode to
10 iocharset=utf8 for UTF-8 translations. This requires
12 iocharset=none specifies the default behavior explicitly.
Disofs.txt9 iocharset=name Character set to use for converting from Unicode to
Dudf.txt38 iocharset= Set the NLS character set
Dbefs.txt96 iocharset=xxx Use xxx as the name of the NLS translation table.
Dvfat.txt45 iocharset=<name> -- Character set to use for converting between the
55 NOTE: "iocharset=utf8" is not recommended. If unsure,
Dntfs.txt107 iocharset=name Deprecated option. Still supported but please use
/linux-4.1.27/fs/fat/
Dinode.c620 if (sbi->options.iocharset != fat_default_iocharset) in delayed_free()
621 kfree(sbi->options.iocharset); in delayed_free()
1027 char *iocharset; in parse_options() local
1036 opts->iocharset = fat_default_iocharset; in parse_options()
1186 if (opts->iocharset != fat_default_iocharset) in parse_options()
1187 kfree(opts->iocharset); in parse_options()
1188 iocharset = match_strdup(&args[0]); in parse_options()
1189 if (!iocharset) in parse_options()
1191 opts->iocharset = iocharset; in parse_options()
1252 if (!strcmp(opts->iocharset, "utf8")) { in parse_options()
[all …]
DKconfig87 string "Default iocharset for FAT"
94 with the "iocharset" mount option for FAT filesystems.
Dfat.h33 char *iocharset; /* Charset used for filename input/display */ member
/linux-4.1.27/fs/isofs/
Dinode.c167 char *iocharset; member
358 popt->iocharset = NULL; in parse_options()
397 popt->iocharset = match_strdup(&args[0]); in parse_options()
806 char *p = opt.iocharset ? opt.iocharset : CONFIG_NLS_DEFAULT; in isofs_fill_super()
810 if (opt.iocharset) in isofs_fill_super()
922 kfree(opt.iocharset); in isofs_fill_super()
961 kfree(opt.iocharset); in isofs_fill_super()
/linux-4.1.27/include/uapi/linux/
Dncp_fs.h104 unsigned char iocharset[NCP_IOCSNAME_LEN+1]; member
/linux-4.1.27/fs/cifs/
Dconnect.c1736 kfree(vol->iocharset); in cifs_parse_mount_options()
1737 vol->iocharset = kstrdup(string, in cifs_parse_mount_options()
1739 if (!vol->iocharset) { in cifs_parse_mount_options()
3277 kfree(volume_info->iocharset); in cleanup_volume_info_contents()
3403 if (volume_info->iocharset == NULL) { in cifs_setup_volume_info()
3407 volume_info->local_nls = load_nls(volume_info->iocharset); in cifs_setup_volume_info()
3410 volume_info->iocharset); in cifs_setup_volume_info()
Dcifsglob.h441 char *iocharset; /* local code page for mapping to and from Unicode */ member
/linux-4.1.27/Documentation/filesystems/cifs/
DREADME318 iocharset Codepage used to convert local path names to and from
320 names if the server supports it. If iocharset is
DCHANGES683 Add missing mount options including iocharset. SMP fixes in write and open.