Lines Matching refs:UNC

309 		cifs_dbg(FYI, "%s: failed to create UNC path\n", __func__);
358 cifs_dbg(FYI, "%s: UNC: %s\n", __func__, cifs_sb->origin_fullpath);
1248 /* extract the host portion of the UNC string */
1332 * Parse a devname into substrings and populate the vol->UNC and vol->prepath
1347 /* make sure we have a valid UNC double delimiter prefix */
1365 vol->UNC = kstrndup(devname, pos - devname, GFP_KERNEL);
1366 if (!vol->UNC)
1369 convert_delimiter(vol->UNC, '\\');
1496 cifs_dbg(VFS, "Malformed UNC in devname\n");
2238 if (!vol->UNC) {
2239 cifs_dbg(VFS, "CIFS mount error: No usable UNC path provided in device string!\n");
2243 /* make sure UNC has a share name */
2244 if (!strchr(vol->UNC + 3, '\\')) {
2245 cifs_dbg(VFS, "Malformed UNC. Unable to find share name.\n");
2253 /* No ip= option specified? Try to get it from UNC */
2254 /* Use the address part of the UNC. */
2255 slash = strchr(&vol->UNC[2], '\\');
2256 len = slash - &vol->UNC[2];
2257 if (!cifs_convert_address(dstaddr, &vol->UNC[2], len)) {
2535 cifs_dbg(FYI, "UNC: %s\n", volume_info->UNC);
2551 tcp_ses->hostname = extract_hostname(volume_info->UNC);
3161 if (strncmp(tcon->treeName, volume_info->UNC, MAX_TREE_SIZE))
3265 cifs_dbg(FYI, "Found match on UNC path\n");
3342 rc = ses->server->ops->tree_connect(xid, ses, volume_info->UNC, tcon,
4045 kfree(volume_info->UNC);
4204 unsigned int unc_len = strnlen(vol->UNC, MAX_TREE_SIZE + 1);
4213 memcpy(full_path, vol->UNC, unc_len);
4304 kfree(vol->UNC);
4305 vol->UNC = new_unc;
4635 v.UNC = vol->UNC;
4673 if (dfs_cache_find(xid, ses, cifs_sb->local_nls, cifs_remap(cifs_sb), vol->UNC + 1, NULL,
5116 vol_info->UNC = master_tcon->treeName;