Lines Matching defs:value
131 /* Mount options which take numeric value */
158 /* Mount options which take string value */
199 cifs_parse_security_flavors(struct fs_context *fc, char *value, struct smb3_fs_context *ctx)
211 switch (match_token(value, cifs_secflavor_tokens, args)) {
239 cifs_errorf(fc, "bad security option: %s\n", value);
256 cifs_parse_cache_flavor(struct fs_context *fc, char *value, struct smb3_fs_context *ctx)
260 switch (match_token(value, cifs_cacheflavor_tokens, args)) {
292 cifs_errorf(fc, "bad cache= option: %s\n", value);
341 cifs_parse_smb_version(struct fs_context *fc, char *value, struct smb3_fs_context *ctx, bool is_smb3)
345 switch (match_token(value, cifs_smb_version_tokens, args)) {
405 cifs_errorf(fc, "Unknown vers= option specified: %s\n", value);
629 char *value;
648 value = strchr(key, '=');
649 if (value) {
650 if (value == key)
652 *value++ = 0;
653 len = strlen(value);
656 ret = vfs_parse_fs_string(fc, key, value, len);
914 * fs_parse can not handle string options with an empty value so
1180 cifs_errorf(fc, "%s: Invalid max_credits value\n",
1188 cifs_errorf(fc, "%s: Invalid max_channels value, needs to be 1-%d\n",
1382 /* For all other value, error */