Skip to content

Commit

Permalink
ipv6: sit: Convert to dst_neigh_lookup()
Browse files Browse the repository at this point in the history
The only semantic difference is that we now hold a reference to the
neighbour and thus have to release it.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Jan 26, 2012
1 parent 3923297 commit 1e2927b
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions net/ipv6/sit.c
Original file line number Diff line number Diff line change
Expand Up @@ -680,9 +680,10 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
/* ISATAP (RFC4214) - must come before 6to4 */
if (dev->priv_flags & IFF_ISATAP) {
struct neighbour *neigh = NULL;
bool do_tx_error = false;

if (skb_dst(skb))
neigh = dst_get_neighbour_noref(skb_dst(skb));
neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);

if (neigh == NULL) {
if (net_ratelimit())
Expand All @@ -697,6 +698,10 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
ipv6_addr_is_isatap(addr6))
dst = addr6->s6_addr32[3];
else
do_tx_error = true;

neigh_release(neigh);
if (do_tx_error)
goto tx_error;
}

Expand All @@ -705,9 +710,10 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,

if (!dst) {
struct neighbour *neigh = NULL;
bool do_tx_error = false;

if (skb_dst(skb))
neigh = dst_get_neighbour_noref(skb_dst(skb));
neigh = dst_neigh_lookup(skb_dst(skb), &iph6->daddr);

if (neigh == NULL) {
if (net_ratelimit())
Expand All @@ -723,10 +729,14 @@ static netdev_tx_t ipip6_tunnel_xmit(struct sk_buff *skb,
addr_type = ipv6_addr_type(addr6);
}

if ((addr_type & IPV6_ADDR_COMPATv4) == 0)
goto tx_error_icmp;
if ((addr_type & IPV6_ADDR_COMPATv4) != 0)
dst = addr6->s6_addr32[3];
else
do_tx_error = true;

dst = addr6->s6_addr32[3];
neigh_release(neigh);
if (do_tx_error)
goto tx_error;
}

rt = ip_route_output_ports(dev_net(dev), &fl4, NULL,
Expand Down

0 comments on commit 1e2927b

Please sign in to comment.