Lines Matching refs:vol_info

3542 			  struct cifs_sb_info *cifs_sb, struct smb_vol *vol_info)  in reset_cifs_unix_caps()  argument
3555 if (vol_info && vol_info->no_linux_ext) { in reset_cifs_unix_caps()
3560 } else if (vol_info) in reset_cifs_unix_caps()
3573 if (vol_info == NULL) { in reset_cifs_unix_caps()
3592 if (vol_info && vol_info->no_psx_acl) in reset_cifs_unix_caps()
3601 if (vol_info && vol_info->posix_paths == 0) in reset_cifs_unix_caps()
3632 if (vol_info == NULL) { in reset_cifs_unix_caps()
4451 struct smb_vol *vol_info; in cifs_construct_tcon() local
4453 vol_info = kzalloc(sizeof(*vol_info), GFP_KERNEL); in cifs_construct_tcon()
4454 if (vol_info == NULL) in cifs_construct_tcon()
4457 vol_info->local_nls = cifs_sb->local_nls; in cifs_construct_tcon()
4458 vol_info->linux_uid = fsuid; in cifs_construct_tcon()
4459 vol_info->cred_uid = fsuid; in cifs_construct_tcon()
4460 vol_info->UNC = master_tcon->treeName; in cifs_construct_tcon()
4461 vol_info->retry = master_tcon->retry; in cifs_construct_tcon()
4462 vol_info->nocase = master_tcon->nocase; in cifs_construct_tcon()
4463 vol_info->nohandlecache = master_tcon->nohandlecache; in cifs_construct_tcon()
4464 vol_info->local_lease = master_tcon->local_lease; in cifs_construct_tcon()
4465 vol_info->no_linux_ext = !master_tcon->unix_ext; in cifs_construct_tcon()
4466 vol_info->sectype = master_tcon->ses->sectype; in cifs_construct_tcon()
4467 vol_info->sign = master_tcon->ses->sign; in cifs_construct_tcon()
4469 rc = cifs_set_vol_auth(vol_info, master_tcon->ses); in cifs_construct_tcon()
4480 ses = cifs_get_smb_ses(master_tcon->ses->server, vol_info); in cifs_construct_tcon()
4487 tcon = cifs_get_tcon(ses, vol_info); in cifs_construct_tcon()
4498 reset_cifs_unix_caps(0, tcon, NULL, vol_info); in cifs_construct_tcon()
4501 kfree(vol_info->username); in cifs_construct_tcon()
4502 kzfree(vol_info->password); in cifs_construct_tcon()
4503 kfree(vol_info); in cifs_construct_tcon()