Home
last modified time | relevance | path

Searched refs:npath (Results 1 – 4 of 4) sorted by relevance

/linux/fs/smb/client/
H A Ddfs_cache.c80 char *npath; in dfs_cache_canonical_path() local
92 npath = cifs_strndup_from_utf16(tmp, plen, true, cache_cp); in dfs_cache_canonical_path()
95 if (!npath) { in dfs_cache_canonical_path()
100 npath = kstrdup(path, GFP_KERNEL); in dfs_cache_canonical_path()
101 if (!npath) in dfs_cache_canonical_path()
104 convert_delimiter(npath, '\\'); in dfs_cache_canonical_path()
105 return npath; in dfs_cache_canonical_path()
859 const char *npath; in dfs_cache_find() local
862 npath = dfs_cache_canonical_path(path, cp, remap); in dfs_cache_find()
863 if (IS_ERR(npath)) in dfs_cache_find()
[all …]
H A Dcached_dir.c162 const char *npath; in open_cached_dir() local
216 npath = path_no_prefix(cifs_sb, path); in open_cached_dir()
217 if (IS_ERR(npath)) { in open_cached_dir()
218 rc = PTR_ERR(npath); in open_cached_dir()
222 if (!npath[0]) { in open_cached_dir()
225 dentry = path_to_dentry(cifs_sb, npath); in open_cached_dir()
/linux/sound/pci/riptide/
H A Driptide.c765 const unsigned char *npath = path; in alloclbuspath() local
767 while (*npath != 0xff) in alloclbuspath()
768 npath++; in alloclbuspath()
769 alloclbuspath(cif, source + 1, ++npath, mixer, s); in alloclbuspath()
787 const unsigned char *npath = path; in freelbuspath() local
789 while (*npath != 0xff) in freelbuspath()
790 npath++; in freelbuspath()
791 freelbuspath(cif, source + 1, ++npath); in freelbuspath()
/linux/fs/ext4/
H A Dextents.c2087 struct ext4_ext_path *npath; in ext4_ext_insert_extent() local
2090 npath = ext4_find_extent(inode, next, NULL, gb_flags); in ext4_ext_insert_extent()
2091 if (IS_ERR(npath)) { in ext4_ext_insert_extent()
2092 err = PTR_ERR(npath); in ext4_ext_insert_extent()
2095 BUG_ON(npath->p_depth != path->p_depth); in ext4_ext_insert_extent()
2096 eh = npath[depth].p_hdr; in ext4_ext_insert_extent()
2101 path = npath; in ext4_ext_insert_extent()
2106 ext4_free_ext_path(npath); in ext4_ext_insert_extent()