Lines Matching refs:npath
171 char *npath; in dfs_cache_canonical_path() local
183 npath = cifs_strndup_from_utf16(tmp, plen, true, cache_cp); in dfs_cache_canonical_path()
186 if (!npath) { in dfs_cache_canonical_path()
191 npath = kstrdup(path, GFP_KERNEL); in dfs_cache_canonical_path()
192 if (!npath) in dfs_cache_canonical_path()
195 convert_delimiter(npath, '\\'); in dfs_cache_canonical_path()
196 return npath; in dfs_cache_canonical_path()
957 const char *npath; in dfs_cache_find() local
960 npath = dfs_cache_canonical_path(path, cp, remap); in dfs_cache_find()
961 if (IS_ERR(npath)) in dfs_cache_find()
962 return PTR_ERR(npath); in dfs_cache_find()
964 ce = cache_refresh_path(xid, ses, npath, false); in dfs_cache_find()
980 kfree(npath); in dfs_cache_find()