Lines Matching defs:weight
3004 uint64_t *weight = data;
3011 r = cg_blkio_weight_parse(rvalue, weight);
3013 log_syntax(unit, LOG_ERR, filename, line, r, "Block IO weight '%s' invalid. Ignoring.", rvalue);
3035 const char *weight;
3052 weight = rvalue + n;
3053 weight += strspn(weight, WHITESPACE);
3055 if (isempty(weight)) {
3056 log_syntax(unit, LOG_ERR, filename, line, 0, "Expected block device and device weight. Ignoring.");
3069 r = cg_blkio_weight_parse(weight, &u);
3071 log_syntax(unit, LOG_ERR, filename, line, r, "Block IO weight '%s' invalid. Ignoring.", weight);
3084 w->weight = u;