Lines Matching defs:log

87  * @fc: The filesystem context to log errors through.
103 int __fs_parse(struct p_log *log,
117 warn_plog(log, "Deprecated parameter '%s'", param->key);
124 return inval_plog(log, "Unexpected value for '%s'",
128 int ret = p->type(log, p, param, result);
138 * @fc: The filesystem context to log errors through.
192 static int fs_param_bad_value(struct p_log *log, struct fs_parameter *param)
194 return inval_plog(log, "Bad value for '%s'", param->key);
197 int fs_param_is_bool(struct p_log *log, const struct fs_parameter_spec *p,
202 return fs_param_bad_value(log, param);
205 return fs_param_bad_value(log, param);
211 int fs_param_is_u32(struct p_log *log, const struct fs_parameter_spec *p,
217 return fs_param_bad_value(log, param);
222 int fs_param_is_s32(struct p_log *log, const struct fs_parameter_spec *p,
227 return fs_param_bad_value(log, param);
232 int fs_param_is_u64(struct p_log *log, const struct fs_parameter_spec *p,
237 return fs_param_bad_value(log, param);
242 int fs_param_is_enum(struct p_log *log, const struct fs_parameter_spec *p,
247 return fs_param_bad_value(log, param);
250 return fs_param_bad_value(log, param);
256 int fs_param_is_string(struct p_log *log, const struct fs_parameter_spec *p,
260 return fs_param_bad_value(log, param);
265 int fs_param_is_blob(struct p_log *log, const struct fs_parameter_spec *p,
269 return fs_param_bad_value(log, param);
274 int fs_param_is_fd(struct p_log *log, const struct fs_parameter_spec *p,
292 return fs_param_bad_value(log, param);
296 int fs_param_is_blockdev(struct p_log *log, const struct fs_parameter_spec *p,
303 int fs_param_is_path(struct p_log *log, const struct fs_parameter_spec *p,