Home
last modified time | relevance | path

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

/Linux-v5.4/fs/cifs/
Ddfs_cache.c84 static inline int get_normalized_path(const char *path, char **npath) in get_normalized_path() argument
87 *npath = (char *)path; in get_normalized_path()
89 *npath = kstrndup(path, strlen(path), GFP_KERNEL); in get_normalized_path()
90 if (!*npath) in get_normalized_path()
92 convert_delimiter(*npath, '\\'); in get_normalized_path()
97 static inline void free_normalized_path(const char *path, char *npath) in free_normalized_path() argument
99 if (path != npath) in free_normalized_path()
100 kfree(npath); in free_normalized_path()
831 char *npath; in dfs_cache_find() local
837 rc = get_normalized_path(path, &npath); in dfs_cache_find()
[all …]
/Linux-v5.4/sound/pci/riptide/
Driptide.c768 unsigned char *npath = path; in alloclbuspath() local
770 while (*npath != 0xff) in alloclbuspath()
771 npath++; in alloclbuspath()
772 alloclbuspath(cif, source + 1, ++npath, mixer, s); in alloclbuspath()
790 unsigned char *npath = path; in freelbuspath() local
792 while (*npath != 0xff) in freelbuspath()
793 npath++; in freelbuspath()
794 freelbuspath(cif, source + 1, ++npath); in freelbuspath()
/Linux-v5.4/fs/ext4/
Dextents.c1956 struct ext4_ext_path *npath = NULL; in ext4_ext_insert_extent() local
2063 BUG_ON(npath != NULL); in ext4_ext_insert_extent()
2064 npath = ext4_find_extent(inode, next, NULL, 0); in ext4_ext_insert_extent()
2065 if (IS_ERR(npath)) in ext4_ext_insert_extent()
2066 return PTR_ERR(npath); in ext4_ext_insert_extent()
2067 BUG_ON(npath->p_depth != path->p_depth); in ext4_ext_insert_extent()
2068 eh = npath[depth].p_hdr; in ext4_ext_insert_extent()
2072 path = npath; in ext4_ext_insert_extent()
2164 ext4_ext_drop_refs(npath); in ext4_ext_insert_extent()
2165 kfree(npath); in ext4_ext_insert_extent()