Commit d403771c authored by David S. Miller's avatar David S. Miller

net/core/dev.c: Make handle_diverter return 0

parent 454fe23c
...@@ -1411,11 +1411,12 @@ static __inline__ int handle_bridge(struct sk_buff *skb, ...@@ -1411,11 +1411,12 @@ static __inline__ int handle_bridge(struct sk_buff *skb,
#ifdef CONFIG_NET_DIVERT #ifdef CONFIG_NET_DIVERT
static inline void handle_diverter(struct sk_buff *skb) static inline int handle_diverter(struct sk_buff *skb)
{ {
/* if diversion is supported on device, then divert */ /* if diversion is supported on device, then divert */
if (skb->dev->divert && skb->dev->divert->divert) if (skb->dev->divert && skb->dev->divert->divert)
divert_frame(skb); divert_frame(skb);
return 0;
} }
#endif /* CONFIG_NET_DIVERT */ #endif /* CONFIG_NET_DIVERT */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment