Commit c4b1010f authored by Denis Cheng's avatar Denis Cheng Committed by David S. Miller

[NET]: Merge dst_discard_in and dst_discard_out.

Signed-off-by: default avatarDenis Cheng <crquan@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c36befb5
...@@ -111,13 +111,7 @@ static void dst_run_gc(unsigned long dummy) ...@@ -111,13 +111,7 @@ static void dst_run_gc(unsigned long dummy)
spin_unlock(&dst_lock); spin_unlock(&dst_lock);
} }
static int dst_discard_in(struct sk_buff *skb) static int dst_discard(struct sk_buff *skb)
{
kfree_skb(skb);
return 0;
}
static int dst_discard_out(struct sk_buff *skb)
{ {
kfree_skb(skb); kfree_skb(skb);
return 0; return 0;
...@@ -138,8 +132,7 @@ void * dst_alloc(struct dst_ops * ops) ...@@ -138,8 +132,7 @@ void * dst_alloc(struct dst_ops * ops)
dst->ops = ops; dst->ops = ops;
dst->lastuse = jiffies; dst->lastuse = jiffies;
dst->path = dst; dst->path = dst;
dst->input = dst_discard_in; dst->input = dst->output = dst_discard;
dst->output = dst_discard_out;
#if RT_CACHE_DEBUG >= 2 #if RT_CACHE_DEBUG >= 2
atomic_inc(&dst_total); atomic_inc(&dst_total);
#endif #endif
...@@ -153,8 +146,7 @@ static void ___dst_free(struct dst_entry * dst) ...@@ -153,8 +146,7 @@ static void ___dst_free(struct dst_entry * dst)
protocol module is unloaded. protocol module is unloaded.
*/ */
if (dst->dev == NULL || !(dst->dev->flags&IFF_UP)) { if (dst->dev == NULL || !(dst->dev->flags&IFF_UP)) {
dst->input = dst_discard_in; dst->input = dst->output = dst_discard;
dst->output = dst_discard_out;
} }
dst->obsolete = 2; dst->obsolete = 2;
} }
...@@ -242,8 +234,7 @@ static inline void dst_ifdown(struct dst_entry *dst, struct net_device *dev, ...@@ -242,8 +234,7 @@ static inline void dst_ifdown(struct dst_entry *dst, struct net_device *dev,
return; return;
if (!unregister) { if (!unregister) {
dst->input = dst_discard_in; dst->input = dst->output = dst_discard;
dst->output = dst_discard_out;
} else { } else {
dst->dev = &loopback_dev; dst->dev = &loopback_dev;
dev_hold(&loopback_dev); dev_hold(&loopback_dev);
......
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