Lines Matching defs:metric
149 dst_metric_raw(const struct dst_entry *dst, const int metric)
153 return p[metric-1];
157 dst_metric(const struct dst_entry *dst, const int metric)
159 WARN_ON_ONCE(metric == RTAX_HOPLIMIT ||
160 metric == RTAX_ADVMSS ||
161 metric == RTAX_MTU);
162 return dst_metric_raw(dst, metric);
176 static inline void dst_metric_set(struct dst_entry *dst, int metric, u32 val)
181 p[metric-1] = val;
202 static inline unsigned long dst_metric_rtt(const struct dst_entry *dst, int metric)
204 return msecs_to_jiffies(dst_metric(dst, metric));
215 dst_metric_locked(const struct dst_entry *dst, int metric)
217 return dst_metric(dst, RTAX_LOCK) & (1 << metric);