Home
last modified time | relevance | path

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

/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 …]
/fs/befs/
Dlinuxvfs.c693 opts->iocharset = NULL; in parse_options()
735 kfree(opts->iocharset); in parse_options()
736 opts->iocharset = match_strdup(&args[0]); in parse_options()
737 if (!opts->iocharset) { in parse_options()
763 kfree(BEFS_SB(sb)->mount_opts.iocharset); in befs_put_super()
764 BEFS_SB(sb)->mount_opts.iocharset = NULL; in befs_put_super()
878 if (befs_sb->mount_opts.iocharset) { in befs_fill_super()
880 befs_sb->mount_opts.iocharset); in befs_fill_super()
881 befs_sb->nls = load_nls(befs_sb->mount_opts.iocharset); in befs_fill_super()
885 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]
/fs/fat/
Dinode.c563 if (sbi->options.iocharset != fat_default_iocharset) in fat_put_super()
564 kfree(sbi->options.iocharset); in fat_put_super()
957 char *iocharset; in parse_options() local
966 opts->iocharset = fat_default_iocharset; in parse_options()
1113 if (opts->iocharset != fat_default_iocharset) in parse_options()
1114 kfree(opts->iocharset); in parse_options()
1115 iocharset = match_strdup(&args[0]); in parse_options()
1116 if (!iocharset) in parse_options()
1118 opts->iocharset = iocharset; in parse_options()
1179 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.h36 char *iocharset; /* Charset used for filename input/display */ member
/fs/isofs/
Dinode.c182 char *iocharset; member
394 popt->iocharset = NULL; in parse_options()
433 popt->iocharset = match_strdup(&args[0]); in parse_options()
851 char *p = opt.iocharset ? opt.iocharset : CONFIG_NLS_DEFAULT; in isofs_fill_super()
855 if (opt.iocharset) in isofs_fill_super()
966 kfree(opt.iocharset); in isofs_fill_super()
1005 kfree(opt.iocharset); in isofs_fill_super()
/fs/cifs/
Dconnect.c1704 vol->iocharset = kstrdup(string, in cifs_parse_mount_options()
1706 if (!vol->iocharset) { in cifs_parse_mount_options()
3247 kfree(volume_info->iocharset); in cleanup_volume_info_contents()
3374 if (volume_info->iocharset == NULL) { in cifs_setup_volume_info()
3378 volume_info->local_nls = load_nls(volume_info->iocharset); in cifs_setup_volume_info()
3381 volume_info->iocharset); in cifs_setup_volume_info()
Dcifsglob.h400 char *iocharset; /* local code page for mapping to and from Unicode */ member
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.