Skip to content

Commit

Permalink
ipv6: fib6_ifdown cleanup
Browse files Browse the repository at this point in the history
Remove (unnecessary) casts to make code cleaner.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
stephen hemminger authored and David S. Miller committed Dec 19, 2010
1 parent b4aa9e0 commit bc3ef66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions net/ipv6/route.c
Original file line number Diff line number Diff line change
Expand Up @@ -2009,11 +2009,11 @@ struct arg_dev_net {

static int fib6_ifdown(struct rt6_info *rt, void *arg)
{
struct net_device *dev = ((struct arg_dev_net *)arg)->dev;
struct net *net = ((struct arg_dev_net *)arg)->net;
const struct arg_dev_net *adn = arg;
const struct net_device *dev = adn->dev;

if (((void *)rt->rt6i_dev == dev || dev == NULL) &&
rt != net->ipv6.ip6_null_entry) {
if ((rt->rt6i_dev == dev || dev == NULL) &&
rt != adn->net->ipv6.ip6_null_entry) {
RT6_TRACE("deleted by ifdown %p\n", rt);
return -1;
}
Expand Down

0 comments on commit bc3ef66

Please sign in to comment.