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