diff options
Diffstat (limited to 'include/net/dst.h')
| -rw-r--r-- | include/net/dst.h | 8 | 
1 files changed, 7 insertions, 1 deletions
diff --git a/include/net/dst.h b/include/net/dst.h index 049af33da3b6..cfc043784166 100644 --- a/include/net/dst.h +++ b/include/net/dst.h @@ -107,10 +107,16 @@ struct dst_entry {  	};  }; +struct dst_metrics { +	u32		metrics[RTAX_MAX]; +	atomic_t	refcnt; +}; +extern const struct dst_metrics dst_default_metrics; +  u32 *dst_cow_metrics_generic(struct dst_entry *dst, unsigned long old); -extern const u32 dst_default_metrics[];  #define DST_METRICS_READ_ONLY		0x1UL +#define DST_METRICS_REFCOUNTED		0x2UL  #define DST_METRICS_FLAGS		0x3UL  #define __DST_METRICS_PTR(Y)	\  	((u32 *)((Y) & ~DST_METRICS_FLAGS))  | 
