Lines Matching refs:fullpath
50 char *fullpath; member
587 kfree(vi->fullpath); in __vol_release()
1211 int dfs_cache_add_vol(char *mntdata, struct smb_vol *vol, const char *fullpath) in dfs_cache_add_vol() argument
1216 if (!vol || !fullpath || !mntdata) in dfs_cache_add_vol()
1219 cifs_dbg(FYI, "%s: fullpath: %s\n", __func__, fullpath); in dfs_cache_add_vol()
1225 vi->fullpath = kstrndup(fullpath, strlen(fullpath), GFP_KERNEL); in dfs_cache_add_vol()
1226 if (!vi->fullpath) { in dfs_cache_add_vol()
1246 kfree(vi->fullpath); in dfs_cache_add_vol()
1253 static struct vol_info *find_vol(const char *fullpath) in find_vol() argument
1258 cifs_dbg(FYI, "%s: vi->fullpath: %s\n", __func__, vi->fullpath); in find_vol()
1259 if (!strcasecmp(vi->fullpath, fullpath)) in find_vol()
1273 int dfs_cache_update_vol(const char *fullpath, struct TCP_Server_Info *server) in dfs_cache_update_vol() argument
1277 if (!fullpath || !server) in dfs_cache_update_vol()
1280 cifs_dbg(FYI, "%s: fullpath: %s\n", __func__, fullpath); in dfs_cache_update_vol()
1283 vi = find_vol(fullpath); in dfs_cache_update_vol()
1307 void dfs_cache_del_vol(const char *fullpath) in dfs_cache_del_vol() argument
1311 if (!fullpath || !*fullpath) in dfs_cache_del_vol()
1314 cifs_dbg(FYI, "%s: fullpath: %s\n", __func__, fullpath); in dfs_cache_del_vol()
1317 vi = find_vol(fullpath); in dfs_cache_del_vol()