• Home
  • Raw
  • Download

Lines Matching refs:vol

28 cifs_parse_smb_version(char *value, struct smb_vol *vol, bool is_smb3)  in cifs_parse_smb_version()  argument
44 vol->ops = &smb1_operations; in cifs_parse_smb_version()
45 vol->vals = &smb1_values; in cifs_parse_smb_version()
56 vol->ops = &smb20_operations; in cifs_parse_smb_version()
57 vol->vals = &smb20_values; in cifs_parse_smb_version()
68 vol->ops = &smb21_operations; in cifs_parse_smb_version()
69 vol->vals = &smb21_values; in cifs_parse_smb_version()
72 vol->ops = &smb30_operations; in cifs_parse_smb_version()
73 vol->vals = &smb30_values; in cifs_parse_smb_version()
76 vol->ops = &smb30_operations; /* currently identical with 3.0 */ in cifs_parse_smb_version()
77 vol->vals = &smb302_values; in cifs_parse_smb_version()
80 vol->ops = &smb311_operations; in cifs_parse_smb_version()
81 vol->vals = &smb311_values; in cifs_parse_smb_version()
84 vol->ops = &smb30_operations; /* currently identical with 3.0 */ in cifs_parse_smb_version()
85 vol->vals = &smb3any_values; in cifs_parse_smb_version()
88 vol->ops = &smb30_operations; /* currently identical with 3.0 */ in cifs_parse_smb_version()
89 vol->vals = &smbdefault_values; in cifs_parse_smb_version()
115 int cifs_parse_security_flavors(char *value, struct smb_vol *vol) in cifs_parse_security_flavors() argument
124 vol->sectype = Unspecified; in cifs_parse_security_flavors()
125 vol->sign = false; in cifs_parse_security_flavors()
132 vol->sign = true; in cifs_parse_security_flavors()
135 vol->sectype = Kerberos; in cifs_parse_security_flavors()
138 vol->sign = true; in cifs_parse_security_flavors()
141 vol->sectype = RawNTLMSSP; in cifs_parse_security_flavors()
144 vol->sign = true; in cifs_parse_security_flavors()
147 vol->sectype = NTLM; in cifs_parse_security_flavors()
150 vol->sign = true; in cifs_parse_security_flavors()
153 vol->sectype = NTLMv2; in cifs_parse_security_flavors()
157 vol->sectype = LANMAN; in cifs_parse_security_flavors()
161 vol->nullauth = 1; in cifs_parse_security_flavors()
181 cifs_parse_cache_flavor(char *value, struct smb_vol *vol) in cifs_parse_cache_flavor() argument
187 vol->direct_io = false; in cifs_parse_cache_flavor()
188 vol->strict_io = false; in cifs_parse_cache_flavor()
189 vol->cache_ro = false; in cifs_parse_cache_flavor()
190 vol->cache_rw = false; in cifs_parse_cache_flavor()
193 vol->direct_io = false; in cifs_parse_cache_flavor()
194 vol->strict_io = true; in cifs_parse_cache_flavor()
195 vol->cache_ro = false; in cifs_parse_cache_flavor()
196 vol->cache_rw = false; in cifs_parse_cache_flavor()
199 vol->direct_io = true; in cifs_parse_cache_flavor()
200 vol->strict_io = false; in cifs_parse_cache_flavor()
201 vol->cache_ro = false; in cifs_parse_cache_flavor()
202 vol->cache_rw = false; in cifs_parse_cache_flavor()
205 vol->direct_io = false; in cifs_parse_cache_flavor()
206 vol->strict_io = false; in cifs_parse_cache_flavor()
207 vol->cache_ro = true; in cifs_parse_cache_flavor()
208 vol->cache_rw = false; in cifs_parse_cache_flavor()
211 vol->direct_io = false; in cifs_parse_cache_flavor()
212 vol->strict_io = false; in cifs_parse_cache_flavor()
213 vol->cache_ro = false; in cifs_parse_cache_flavor()
214 vol->cache_rw = true; in cifs_parse_cache_flavor()