diff options
Diffstat (limited to 'include/net/dst.h')
-rw-r--r-- | include/net/dst.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/include/net/dst.h b/include/net/dst.h index 755ac6c1aa03..03a1c3d52d80 100644 --- a/include/net/dst.h +++ b/include/net/dst.h | |||
@@ -112,10 +112,22 @@ dst_metric_raw(const struct dst_entry *dst, const int metric) | |||
112 | static inline u32 | 112 | static inline u32 |
113 | dst_metric(const struct dst_entry *dst, const int metric) | 113 | dst_metric(const struct dst_entry *dst, const int metric) |
114 | { | 114 | { |
115 | WARN_ON_ONCE(metric == RTAX_HOPLIMIT); | 115 | WARN_ON_ONCE(metric == RTAX_HOPLIMIT || |
116 | metric == RTAX_ADVMSS); | ||
116 | return dst_metric_raw(dst, metric); | 117 | return dst_metric_raw(dst, metric); |
117 | } | 118 | } |
118 | 119 | ||
120 | static inline u32 | ||
121 | dst_metric_advmss(const struct dst_entry *dst) | ||
122 | { | ||
123 | u32 advmss = dst_metric_raw(dst, RTAX_ADVMSS); | ||
124 | |||
125 | if (!advmss) | ||
126 | advmss = dst->ops->default_advmss(dst); | ||
127 | |||
128 | return advmss; | ||
129 | } | ||
130 | |||
119 | static inline void dst_metric_set(struct dst_entry *dst, int metric, u32 val) | 131 | static inline void dst_metric_set(struct dst_entry *dst, int metric, u32 val) |
120 | { | 132 | { |
121 | dst->_metrics[metric-1] = val; | 133 | dst->_metrics[metric-1] = val; |