Home
last modified time | relevance | path

Searched refs:utf16_path (Results 1 – 6 of 6) sorted by relevance

/fs/cifs/
Dlink.c397 __le16 *utf16_path; in smb3_query_mf_symlink() local
409 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_query_mf_symlink()
410 if (utf16_path == NULL) in smb3_query_mf_symlink()
417 kfree(utf16_path); in smb3_query_mf_symlink()
421 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, pfile_info, NULL, in smb3_query_mf_symlink()
443 kfree(utf16_path); in smb3_query_mf_symlink()
457 __le16 *utf16_path; in smb3_create_mf_symlink() local
463 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb3_create_mf_symlink()
464 if (!utf16_path) in smb3_create_mf_symlink()
476 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, in smb3_create_mf_symlink()
[all …]
Dioctl.c46 __le16 *utf16_path = NULL, root_path; in cifs_ioctl_query_info() local
57 utf16_path = &root_path; in cifs_ioctl_query_info()
59 utf16_path = cifs_convert_path_to_utf16(path + 1, cifs_sb); in cifs_ioctl_query_info()
60 if (!utf16_path) { in cifs_ioctl_query_info()
68 xid, tcon, cifs_sb, utf16_path, in cifs_ioctl_query_info()
74 if (utf16_path != &root_path) in cifs_ioctl_query_info()
75 kfree(utf16_path); in cifs_ioctl_query_info()
Dsmb2ops.c662 __le16 utf16_path = 0; /* Null - since an open of top of share */ in open_shroot() local
707 rc = SMB2_open_init(tcon, &rqst[0], &oplock, &oparms, &utf16_path); in open_shroot()
893 __le16 *utf16_path; in smb2_is_path_accessible() local
901 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_is_path_accessible()
902 if (!utf16_path) in smb2_is_path_accessible()
912 rc = SMB2_open(xid, &oparms, utf16_path, &oplock, NULL, NULL, NULL); in smb2_is_path_accessible()
914 kfree(utf16_path); in smb2_is_path_accessible()
919 kfree(utf16_path); in smb2_is_path_accessible()
1044 __le16 *utf16_path; in smb2_query_eas() local
1050 utf16_path = cifs_convert_path_to_utf16(path, cifs_sb); in smb2_query_eas()
[all …]
Dsmb2inode.c58 __le16 *utf16_path = NULL; in smb2_compound_op() local
92 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb2_compound_op()
93 if (!utf16_path) { in smb2_compound_op()
110 utf16_path); in smb2_compound_op()
111 kfree(utf16_path); in smb2_compound_op()
Dsmb2pdu.c2298 __le16 *utf16_path = NULL; in smb311_posix_mkdir() local
2303 utf16_path = cifs_convert_path_to_utf16(full_path, cifs_sb); in smb311_posix_mkdir()
2304 if (!utf16_path) in smb311_posix_mkdir()
2349 tcon->treeName, utf16_path); in smb311_posix_mkdir()
2356 kfree(utf16_path); in smb311_posix_mkdir()
2357 utf16_path = copy_path; in smb311_posix_mkdir()
2359 uni_path_len = (2 * UniStrnlen((wchar_t *)utf16_path, PATH_MAX)) + 2; in smb311_posix_mkdir()
2369 memcpy((char *)copy_path, (const char *)utf16_path, in smb311_posix_mkdir()
2373 kfree(utf16_path); in smb311_posix_mkdir()
2374 utf16_path = copy_path; in smb311_posix_mkdir()
[all …]
Dsmb2proto.h260 __le16 *utf16_path, u32 desired_access,