Searched refs:utf16_path (Results 1 – 6 of 6) sorted by relevance
/linux-6.1.9/fs/cifs/ |
D | link.c | 354 __le16 *utf16_path; in smb3_query_mf_symlink() local 366 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_query_mf_symlink() 367 if (utf16_path == NULL) in smb3_query_mf_symlink() 374 kfree(utf16_path); in smb3_query_mf_symlink() 378 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, pfile_info, NULL, in smb3_query_mf_symlink() 400 kfree(utf16_path); in smb3_query_mf_symlink() 414 __le16 *utf16_path; in smb3_create_mf_symlink() local 420 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_create_mf_symlink() 421 if (!utf16_path) in smb3_create_mf_symlink() 433 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, in smb3_create_mf_symlink() [all …]
|
D | ioctl.c | 35 __le16 *utf16_path = NULL, root_path; in cifs_ioctl_query_info() local 48 utf16_path = &root_path; in cifs_ioctl_query_info() 50 utf16_path = cifs_convert_path_to_utf16(path + 1, cifs_sb); in cifs_ioctl_query_info() 51 if (!utf16_path) { in cifs_ioctl_query_info() 59 xid, tcon, cifs_sb, utf16_path, in cifs_ioctl_query_info() 65 if (utf16_path != &root_path) in cifs_ioctl_query_info() 66 kfree(utf16_path); in cifs_ioctl_query_info()
|
D | cached_dir.c | 121 __le16 *utf16_path = NULL; in open_cached_dir() local 142 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in open_cached_dir() 143 if (!utf16_path) in open_cached_dir() 148 kfree(utf16_path); in open_cached_dir() 158 kfree(utf16_path); in open_cached_dir() 192 &rqst[0], &oplock, &oparms, utf16_path); in open_cached_dir() 268 kfree(utf16_path); in open_cached_dir()
|
D | smb2ops.c | 798 __le16 *utf16_path; in smb2_is_path_accessible() local 815 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_is_path_accessible() 816 if (!utf16_path) in smb2_is_path_accessible() 826 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, in smb2_is_path_accessible() 852 kfree(utf16_path); in smb2_is_path_accessible() 1020 __le16 *utf16_path = NULL; in smb2_set_ea() local 1045 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb2_set_ea() 1046 if (!utf16_path) in smb2_set_ea() 1109 &rqst[0], &oplock, &oparms, utf16_path); in smb2_set_ea() 1163 kfree(utf16_path); in smb2_set_ea() [all …]
|
D | smb2inode.c | 68 __le16 *utf16_path = NULL; in smb2_compound_op() local 101 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_compound_op() 102 if (!utf16_path) { in smb2_compound_op() 120 utf16_path); in smb2_compound_op() 121 kfree(utf16_path); in smb2_compound_op()
|
D | smb2pdu.c | 2640 __le16 *utf16_path = NULL; in smb311_posix_mkdir() local 2646 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb311_posix_mkdir() 2647 if (!utf16_path) in smb311_posix_mkdir() 2693 tcon->tree_name, utf16_path); in smb311_posix_mkdir() 2700 kfree(utf16_path); in smb311_posix_mkdir() 2701 utf16_path = copy_path; in smb311_posix_mkdir() 2703 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2; in smb311_posix_mkdir() 2713 memcpy((char *)copy_path, (const char *)utf16_path, in smb311_posix_mkdir() 2717 kfree(utf16_path); in smb311_posix_mkdir() 2718 utf16_path = copy_path; in smb311_posix_mkdir() [all …]
|