[NET]: Eliminate duplicate copies of dst_discard
authorHerbert Xu <herbert@gondor.apana.org.au>
Wed, 14 Nov 2007 05:34:06 +0000 (21:34 -0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Jan 2008 22:53:37 +0000 (14:53 -0800)
commit352e512c32b634768303a43768245a0363cebbe7
tree97509ac130ecbe2084808271ccc459918a9d5fc1
parentb4ce92775c2e7ff9cf79cca4e0a19c8c5fd6287b
[NET]: Eliminate duplicate copies of dst_discard

We have a number of copies of dst_discard scattered around the place
which all do the same thing, namely free a packet on the input or
output paths.

This patch deletes all of them except dst_discard and points all the
users to it.

The only non-trivial bit is decnet where it returns an error.
However, conceptually this is identical to the blackhole functions
used in IPv4 and IPv6 which do not return errors.  So they should
either all return errors or all return zero.  For now I've stuck with
the majority and picked zero as the return value.

It doesn't really matter in practice since few if any driver would
react differently depending on a zero return value or NET_RX_DROP.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/dst.h
net/core/dst.c
net/decnet/dn_route.c
net/ipv4/route.c
net/ipv6/exthdrs.c
net/ipv6/route.c