Home
last modified time | relevance | path

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

/fs/ncpfs/
Dioctl.c181 struct nls_table *iocharset; in ncp_set_charsets() local
204 iocharset = NULL; in ncp_set_charsets()
205 user.iocharset[NCP_IOCSNAME_LEN] = 0; in ncp_set_charsets()
206 if (!user.iocharset[0] || !strcmp(user.iocharset, "default")) { in ncp_set_charsets()
207 iocharset = load_nls_default(); in ncp_set_charsets()
209 } else if (!strcmp(user.iocharset, "utf8")) { in ncp_set_charsets()
210 iocharset = load_nls_default(); in ncp_set_charsets()
213 iocharset = load_nls(user.iocharset); in ncp_set_charsets()
214 if (!iocharset) { in ncp_set_charsets()
224 server->nls_io = iocharset; in ncp_set_charsets()
[all …]
/fs/befs/
Dlinuxvfs.c676 opts->iocharset = NULL; in parse_options()
712 kfree(opts->iocharset); in parse_options()
713 opts->iocharset = match_strdup(&args[0]); in parse_options()
714 if (!opts->iocharset) { in parse_options()
740 kfree(BEFS_SB(sb)->mount_opts.iocharset); in befs_put_super()
741 BEFS_SB(sb)->mount_opts.iocharset = NULL; in befs_put_super()
862 if (befs_sb->mount_opts.iocharset) { in befs_fill_super()
864 befs_sb->mount_opts.iocharset); in befs_fill_super()
865 befs_sb->nls = load_nls(befs_sb->mount_opts.iocharset); in befs_fill_super()
869 befs_sb->mount_opts.iocharset); in befs_fill_super()
Dbefs.h28 char *iocharset; member
DChangeLog96 * Make directory lookup/read use the NLS if an iocharset is provided. [WD]
/fs/fat/
Dinode.c463 if (sbi->options.iocharset != fat_default_iocharset) { in fat_put_super()
464 kfree(sbi->options.iocharset); in fat_put_super()
465 sbi->options.iocharset = fat_default_iocharset; in fat_put_super()
937 char *iocharset; in parse_options() local
946 opts->iocharset = fat_default_iocharset; in parse_options()
1073 if (opts->iocharset != fat_default_iocharset) in parse_options()
1074 kfree(opts->iocharset); in parse_options()
1075 iocharset = match_strdup(&args[0]); in parse_options()
1076 if (!iocharset) in parse_options()
1078 opts->iocharset = iocharset; in parse_options()
[all …]
DKconfig87 string "Default iocharset for FAT"
94 with the "iocharset" mount option for FAT filesystems.
Dfat.h30 char *iocharset; /* Charset used for filename input/display */ member
/fs/isofs/
Dinode.c152 char *iocharset; member
373 popt->iocharset = NULL; in parse_options()
411 popt->iocharset = match_strdup(&args[0]); in parse_options()
787 char *p = opt.iocharset ? opt.iocharset : CONFIG_NLS_DEFAULT; in isofs_fill_super()
791 if (opt.iocharset) in isofs_fill_super()
878 kfree(opt.iocharset); in isofs_fill_super()
917 kfree(opt.iocharset); in isofs_fill_super()
/fs/smbfs/
DKconfig38 supports that, using the codepage and iocharset parameters.
53 supports that, using the codepage and iocharset parameters.
/fs/cifs/
Dconnect.c64 char *iocharset; /* local code page for mapping to and from Unicode */ member
1076 vol->iocharset = value; in cifs_parse_mount_options()
2251 if (volume_info->iocharset == NULL) { in cifs_mount()
2255 cifs_sb->local_nls = load_nls(volume_info->iocharset); in cifs_mount()
2258 volume_info->iocharset)); in cifs_mount()
DREADME302 iocharset Codepage used to convert local path names to and from
304 names if the server supports it. If iocharset is
DCHANGES619 Add missing mount options including iocharset. SMP fixes in write and open.
/fs/ntfs/
DChangeLog1431 - Parse deprecated ntfs driver options (iocharset, show_sys_files,
1605 - Add -o iocharset as alias to -o nls for backwards compatibility.