summaryrefslogtreecommitdiff
path: root/include/net/dst.h
diff options
context:
space:
mode:
authorBharat Nihalani <bnihalani@nvidia.com>2013-12-19 23:29:52 -0800
committerGerrit Code Review <gerrit2@nvidia.com>2013-12-19 23:29:52 -0800
commit2b2f508eeb26fd48e6c56b8bd59aa7ad1abf5fd3 (patch)
tree07326c802b07a0477a0d48a1be6d0dfc34507a54 /include/net/dst.h
parent3321cd648c8ac7af09d52e200ab7816024cfc06d (diff)
parent4186e42658f8f3e95fa4f87f917872e8a3431057 (diff)
Merge "Merge tag 'v3.10.24' into HEAD" into dev-kernel-3.10
Diffstat (limited to 'include/net/dst.h')
-rw-r--r--include/net/dst.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/net/dst.h b/include/net/dst.h
index 1f8fd109e225..e0c97f5a57cf 100644
--- a/include/net/dst.h
+++ b/include/net/dst.h
@@ -477,10 +477,22 @@ static inline struct dst_entry *xfrm_lookup(struct net *net,
{
return dst_orig;
}
+
+static inline struct xfrm_state *dst_xfrm(const struct dst_entry *dst)
+{
+ return NULL;
+}
+
#else
extern struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
const struct flowi *fl, struct sock *sk,
int flags);
+
+/* skb attached with this dst needs transformation if dst->xfrm is valid */
+static inline struct xfrm_state *dst_xfrm(const struct dst_entry *dst)
+{
+ return dst->xfrm;
+}
#endif
#endif /* _NET_DST_H */