Lines Matching defs:metric
168 dst_metric_raw(const struct dst_entry *dst, const int metric)
172 return p[metric-1];
176 dst_metric(const struct dst_entry *dst, const int metric)
178 WARN_ON_ONCE(metric == RTAX_HOPLIMIT ||
179 metric == RTAX_ADVMSS ||
180 metric == RTAX_MTU);
181 return dst_metric_raw(dst, metric);
195 static inline void dst_metric_set(struct dst_entry *dst, int metric, u32 val)
200 p[metric-1] = val;
223 static inline unsigned long dst_metric_rtt(const struct dst_entry *dst, int metric)
225 return msecs_to_jiffies(dst_metric(dst, metric));
229 dst_metric_locked(const struct dst_entry *dst, int metric)
231 return dst_metric(dst, RTAX_LOCK) & (1 << metric);