mirror of
https://github.com/openvswitch/ovs
synced 2025-09-05 16:55:42 +00:00
The linux-2.6 and compat-2.6 directories apply equally to the upcoming Linux 3.0 release, so this drops the 2.6 suffix and updates Makefiles. Signed-off-by: Jesse Gross <jesse@nicira.com> Acked-by: Ben Pfaff <blp@nicira.com>
18 lines
258 B
C
18 lines
258 B
C
#ifndef __NET_DST_WRAPPER_H
|
|
#define __NET_DST_WRAPPER_H 1
|
|
|
|
#include_next <net/dst.h>
|
|
|
|
#ifndef HAVE_SKB_DST_ACCESSOR_FUNCS
|
|
|
|
static inline void skb_dst_drop(struct sk_buff *skb)
|
|
{
|
|
if (skb->dst)
|
|
dst_release(skb_dst(skb));
|
|
skb->dst = NULL;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|