aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/dst.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/dst.h')
-rw-r--r--include/net/dst.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/include/net/dst.h b/include/net/dst.h
index 65a60fab2f82..6c778799bf10 100644
--- a/include/net/dst.h
+++ b/include/net/dst.h
@@ -61,6 +61,8 @@ struct dst_entry
61 struct hh_cache *hh; 61 struct hh_cache *hh;
62#ifdef CONFIG_XFRM 62#ifdef CONFIG_XFRM
63 struct xfrm_state *xfrm; 63 struct xfrm_state *xfrm;
64#else
65 void *__pad1;
64#endif 66#endif
65 int (*input)(struct sk_buff*); 67 int (*input)(struct sk_buff*);
66 int (*output)(struct sk_buff*); 68 int (*output)(struct sk_buff*);
@@ -71,8 +73,20 @@ struct dst_entry
71 73
72#ifdef CONFIG_NET_CLS_ROUTE 74#ifdef CONFIG_NET_CLS_ROUTE
73 __u32 tclassid; 75 __u32 tclassid;
76#else
77 __u32 __pad2;
74#endif 78#endif
75 79
80
81 /*
82 * Align __refcnt to a 64 bytes alignment
83 * (L1_CACHE_SIZE would be too much)
84 */
85#ifdef CONFIG_64BIT
86 long __pad_to_align_refcnt[2];
87#else
88 long __pad_to_align_refcnt[1];
89#endif
76 /* 90 /*
77 * __refcnt wants to be on a different cache line from 91 * __refcnt wants to be on a different cache line from
78 * input/output/ops or performance tanks badly 92 * input/output/ops or performance tanks badly
@@ -157,6 +171,11 @@ dst_metric_locked(struct dst_entry *dst, int metric)
157 171
158static inline void dst_hold(struct dst_entry * dst) 172static inline void dst_hold(struct dst_entry * dst)
159{ 173{
174 /*
175 * If your kernel compilation stops here, please check
176 * __pad_to_align_refcnt declaration in struct dst_entry
177 */
178 BUILD_BUG_ON(offsetof(struct dst_entry, __refcnt) & 63);
160 atomic_inc(&dst->__refcnt); 179 atomic_inc(&dst->__refcnt);
161} 180}
162 181