Searched refs:utf16_path (Results 1 – 4 of 4) sorted by relevance
/Linux-v4.19/fs/cifs/ |
D | link.c | 398 __le16 *utf16_path; in smb3_query_mf_symlink() local 412 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_query_mf_symlink() 413 if (utf16_path == NULL) in smb3_query_mf_symlink() 420 kfree(utf16_path); in smb3_query_mf_symlink() 424 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, pfile_info, NULL, in smb3_query_mf_symlink() 446 kfree(utf16_path); in smb3_query_mf_symlink() 461 __le16 *utf16_path; in smb3_create_mf_symlink() local 470 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_create_mf_symlink() 471 if (!utf16_path) in smb3_create_mf_symlink() 482 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, in smb3_create_mf_symlink() [all …]
|
D | smb2inode.c | 47 __le16 *utf16_path = NULL; in smb2_open_op_close() local 63 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_open_op_close() 64 if (!utf16_path) in smb2_open_op_close() 74 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, in smb2_open_op_close() 77 kfree(utf16_path); in smb2_open_op_close() 129 kfree(utf16_path); in smb2_open_op_close()
|
D | smb2ops.c | 618 __le16 *utf16_path; in smb2_is_path_accessible() local 626 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_is_path_accessible() 627 if (!utf16_path) in smb2_is_path_accessible() 640 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL); in smb2_is_path_accessible() 642 kfree(utf16_path); in smb2_is_path_accessible() 647 kfree(utf16_path); in smb2_is_path_accessible() 771 __le16 *utf16_path; in smb2_query_eas() local 778 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb2_query_eas() 779 if (!utf16_path) in smb2_query_eas() 792 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL); in smb2_query_eas() [all …]
|
D | smb2pdu.c | 1971 __le16 *utf16_path = NULL; in smb311_posix_mkdir() local 1976 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb311_posix_mkdir() 1977 if (!utf16_path) in smb311_posix_mkdir() 2024 tcon->treeName, utf16_path); in smb311_posix_mkdir() 2031 kfree(utf16_path); in smb311_posix_mkdir() 2032 utf16_path = copy_path; in smb311_posix_mkdir() 2034 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2; in smb311_posix_mkdir() 2044 memcpy((char *)copy_path, (const char *)utf16_path, in smb311_posix_mkdir() 2048 kfree(utf16_path); in smb311_posix_mkdir() 2049 utf16_path = copy_path; in smb311_posix_mkdir() [all …]
|