Lines Matching refs:full_path
112 char *full_path = NULL; in cifs_follow_link() local
119 full_path = build_path_from_dentry(direntry); in cifs_follow_link()
121 if (!full_path) in cifs_follow_link()
124 cFYI(1, ("Full path: %s inode = 0x%p", full_path, inode)); in cifs_follow_link()
140 rc = CIFSSMBUnixQuerySymLink(xid, pTcon, full_path, in cifs_follow_link()
162 kfree(full_path); in cifs_follow_link()
176 char *full_path = NULL; in cifs_symlink() local
184 full_path = build_path_from_dentry(direntry); in cifs_symlink()
186 if (full_path == NULL) { in cifs_symlink()
191 cFYI(1, ("Full path: %s", full_path)); in cifs_symlink()
196 rc = CIFSUnixCreateSymLink(xid, pTcon, full_path, symname, in cifs_symlink()
204 rc = cifs_get_inode_info_unix(&newinode, full_path, in cifs_symlink()
207 rc = cifs_get_inode_info(&newinode, full_path, NULL, in cifs_symlink()
222 kfree(full_path); in cifs_symlink()
236 char *full_path = NULL; in cifs_readlink() local
248 full_path = build_path_from_dentry(direntry); in cifs_readlink()
251 if (full_path == NULL) { in cifs_readlink()
258 full_path, inode, pBuffer, buflen)); in cifs_readlink()
265 kfree(full_path); in cifs_readlink()
274 rc = CIFSSMBUnixQuerySymLink(xid, pTcon, full_path, in cifs_readlink()
282 rc = CIFSSMBOpen(xid, pTcon, full_path, FILE_OPEN, GENERIC_READ, in cifs_readlink()
288 rc = CIFSSMBQueryReparseLinkInfo(xid, pTcon, full_path, in cifs_readlink()
314 kfree(full_path); in cifs_readlink()