Lines Matching refs:full_path

43 	char *full_path = NULL;  in cifs_build_path_to_root()  local
47 full_path = kzalloc(1, GFP_KERNEL); in cifs_build_path_to_root()
48 return full_path; in cifs_build_path_to_root()
56 full_path = kmalloc(dfsplen + pplen + 1, GFP_KERNEL); in cifs_build_path_to_root()
57 if (full_path == NULL) in cifs_build_path_to_root()
58 return full_path; in cifs_build_path_to_root()
61 memcpy(full_path, tcon->treeName, dfsplen); in cifs_build_path_to_root()
62 full_path[dfsplen] = CIFS_DIR_SEP(cifs_sb); in cifs_build_path_to_root()
63 memcpy(full_path + dfsplen + 1, ctx->prepath, pplen); in cifs_build_path_to_root()
64 convert_delimiter(full_path, CIFS_DIR_SEP(cifs_sb)); in cifs_build_path_to_root()
65 return full_path; in cifs_build_path_to_root()
177 const char *full_path; in cifs_do_create() local
189 full_path = build_path_from_dentry(direntry, page); in cifs_do_create()
190 if (IS_ERR(full_path)) { in cifs_do_create()
192 return PTR_ERR(full_path); in cifs_do_create()
198 rc = cifs_posix_open(full_path, &newinode, inode->i_sb, mode, in cifs_do_create()
308 oparms.path = full_path; in cifs_do_create()
356 rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb, in cifs_do_create()
360 rc = cifs_get_inode_info(&newinode, full_path, buf, inode->i_sb, in cifs_do_create()
574 const char *full_path; in cifs_mknod() local
592 full_path = build_path_from_dentry(direntry, page); in cifs_mknod()
593 if (IS_ERR(full_path)) { in cifs_mknod()
594 rc = PTR_ERR(full_path); in cifs_mknod()
599 full_path, mode, in cifs_mknod()
619 const char *full_path; in cifs_lookup() local
649 full_path = build_path_from_dentry(direntry, page); in cifs_lookup()
650 if (IS_ERR(full_path)) { in cifs_lookup()
654 return ERR_CAST(full_path); in cifs_lookup()
663 full_path, d_inode(direntry)); in cifs_lookup()
667 rc = smb311_posix_get_inode_info(&newInode, full_path, parent_dir_inode->i_sb, xid); in cifs_lookup()
669 rc = cifs_get_inode_info_unix(&newInode, full_path, in cifs_lookup()
672 rc = cifs_get_inode_info(&newInode, full_path, NULL, in cifs_lookup()