Lines Matching refs:npath
80 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()
861 const char *npath; in dfs_cache_find() local
864 npath = dfs_cache_canonical_path(path, cp, remap); in dfs_cache_find()
865 if (IS_ERR(npath)) in dfs_cache_find()
866 return PTR_ERR(npath); in dfs_cache_find()
868 ce = cache_refresh_path(xid, ses, npath, false); in dfs_cache_find()
884 kfree(npath); in dfs_cache_find()