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.c156 const char *npath; in open_cached_dir() local
215 npath = path_no_prefix(cifs_sb, path); in open_cached_dir()
216 if (IS_ERR(npath)) { in open_cached_dir()
217 rc = PTR_ERR(npath); in open_cached_dir()
221 if (!npath[0]) { in open_cached_dir()
224 dentry = path_to_dentry(cifs_sb, npath); in open_cached_dir()
/linux/sound/pci/riptide/
H A Driptide.c766 const unsigned char *npath = path; in alloclbuspath() local
768 while (*npath != 0xff) in alloclbuspath()
769 npath++; in alloclbuspath()
770 alloclbuspath(cif, source + 1, ++npath, mixer, s); in alloclbuspath()
788 const unsigned char *npath = path; in freelbuspath() local
790 while (*npath != 0xff) in freelbuspath()
791 npath++; in freelbuspath()
792 freelbuspath(cif, source + 1, ++npath); in freelbuspath()
/linux/fs/ext4/
H A Dextents.c2092 struct ext4_ext_path *npath; in ext4_ext_insert_extent() local
2095 npath = ext4_find_extent(inode, next, NULL, gb_flags); in ext4_ext_insert_extent()
2096 if (IS_ERR(npath)) { in ext4_ext_insert_extent()
2097 err = PTR_ERR(npath); in ext4_ext_insert_extent()
2100 BUG_ON(npath->p_depth != path->p_depth); in ext4_ext_insert_extent()
2101 eh = npath[depth].p_hdr; in ext4_ext_insert_extent()
2106 path = npath; in ext4_ext_insert_extent()
2111 ext4_free_ext_path(npath); in ext4_ext_insert_extent()