mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
net: dst: provide accessor function to dst->xfrm
dst->xfrm is conditionally defined. Provide accessor funtion that is always available. Signed-off-by: Vlad Yasevich <vyasevich@gmail.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
6f93ac740a
commit
e87b3998d7
@ -479,10 +479,22 @@ static inline struct dst_entry *xfrm_lookup(struct net *net,
|
|||||||
{
|
{
|
||||||
return dst_orig;
|
return dst_orig;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static inline struct xfrm_state *dst_xfrm(const struct dst_entry *dst)
|
||||||
|
{
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
|
||||||
#else
|
#else
|
||||||
extern struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
|
extern struct dst_entry *xfrm_lookup(struct net *net, struct dst_entry *dst_orig,
|
||||||
const struct flowi *fl, struct sock *sk,
|
const struct flowi *fl, struct sock *sk,
|
||||||
int flags);
|
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
|
||||||
|
|
||||||
#endif /* _NET_DST_H */
|
#endif /* _NET_DST_H */
|
||||||
|
Loading…
Reference in New Issue
Block a user