Lines Matching refs:password
62 char *password; member
906 vol->password = NULL; in cifs_parse_mount_options()
914 vol->password = NULL; in cifs_parse_mount_options()
962 vol->password = kzalloc(temp_len, GFP_KERNEL); in cifs_parse_mount_options()
963 if (vol->password == NULL) { in cifs_parse_mount_options()
969 vol->password[j] = value[i]; in cifs_parse_mount_options()
976 vol->password[j] = 0; in cifs_parse_mount_options()
978 vol->password = kzalloc(temp_len+1, GFP_KERNEL); in cifs_parse_mount_options()
979 if (vol->password == NULL) { in cifs_parse_mount_options()
984 strcpy(vol->password, value); in cifs_parse_mount_options()
1833 ses->password != NULL && in cifs_find_smb_ses()
1834 strncmp(ses->password, in cifs_find_smb_ses()
1835 vol->password ? vol->password : "", in cifs_find_smb_ses()
1936 if (volume_info->password) { in cifs_get_smb_ses()
1937 ses->password = kstrdup(volume_info->password, GFP_KERNEL); in cifs_get_smb_ses()
1938 if (!ses->password) in cifs_get_smb_ses()
2052 if (volume_info->password) { in cifs_get_tcon()
2053 tcon->password = kstrdup(volume_info->password, GFP_KERNEL); in cifs_get_tcon()
2054 if (!tcon->password) { in cifs_get_tcon()
2694 kzfree(volume_info->password); in cleanup_volume_info()
3043 calc_lanman_hash(tcon->password, ses->server->cryptkey, in CIFSTCon()
3049 rc = SMBNTencrypt(tcon->password, ses->server->cryptkey, in CIFSTCon()