Searched refs:npath (Results 1 – 5 of 5) sorted by relevance
/linux-6.6.21/fs/smb/client/ |
D | dfs_cache.c | 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() [all …]
|
D | cached_dir.c | 147 const char *npath; in open_cached_dir() local 193 npath = path_no_prefix(cifs_sb, path); in open_cached_dir() 194 if (IS_ERR(npath)) { in open_cached_dir() 195 rc = PTR_ERR(npath); in open_cached_dir() 199 if (!npath[0]) { in open_cached_dir() 202 dentry = path_to_dentry(cifs_sb, npath); in open_cached_dir()
|
D | dfs.c | 336 char *refpath, *npath; in update_server_fullpath() local 357 npath = dfs_cache_canonical_path(refpath, cifs_sb->local_nls, cifs_remap(cifs_sb)); in update_server_fullpath() 360 if (IS_ERR(npath)) { in update_server_fullpath() 361 rc = PTR_ERR(npath); in update_server_fullpath() 366 server->leaf_fullpath = npath; in update_server_fullpath()
|
/linux-6.6.21/sound/pci/riptide/ |
D | riptide.c | 766 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-6.6.21/fs/ext4/ |
D | extents.c | 1975 struct ext4_ext_path *npath = NULL; in ext4_ext_insert_extent() local 2080 BUG_ON(npath != NULL); in ext4_ext_insert_extent() 2081 npath = ext4_find_extent(inode, next, NULL, gb_flags); in ext4_ext_insert_extent() 2082 if (IS_ERR(npath)) in ext4_ext_insert_extent() 2083 return PTR_ERR(npath); in ext4_ext_insert_extent() 2084 BUG_ON(npath->p_depth != path->p_depth); in ext4_ext_insert_extent() 2085 eh = npath[depth].p_hdr; in ext4_ext_insert_extent() 2089 path = npath; in ext4_ext_insert_extent() 2181 ext4_free_ext_path(npath); in ext4_ext_insert_extent()
|