Skip to content

Commit

Permalink
net: ipv6: Introduce ip6_sk_dst_hoplimit.
Browse files Browse the repository at this point in the history
This replaces 6 identical code snippets with a call to a new
static inline function.

Signed-off-by: Lorenzo Colitti <lorenzo@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Lorenzo Colitti authored and David S. Miller committed Apr 30, 2014
1 parent a22adce commit 5c98631
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 48 deletions.
5 changes: 0 additions & 5 deletions include/net/addrconf.h
Original file line number Diff line number Diff line change
Expand Up @@ -306,11 +306,6 @@ static inline void addrconf_addr_solict_mult(const struct in6_addr *addr,
htonl(0xFF000000) | addr->s6_addr32[3]);
}

static inline bool ipv6_addr_is_multicast(const struct in6_addr *addr)
{
return (addr->s6_addr32[0] & htonl(0xFF000000)) == htonl(0xFF000000);
}

static inline bool ipv6_addr_is_ll_all_nodes(const struct in6_addr *addr)
{
#if defined(CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS) && BITS_PER_LONG == 64
Expand Down
19 changes: 19 additions & 0 deletions include/net/ipv6.h
Original file line number Diff line number Diff line change
Expand Up @@ -583,6 +583,11 @@ static inline bool ipv6_addr_orchid(const struct in6_addr *a)
return (a->s6_addr32[0] & htonl(0xfffffff0)) == htonl(0x20010010);
}

static inline bool ipv6_addr_is_multicast(const struct in6_addr *addr)
{
return (addr->s6_addr32[0] & htonl(0xFF000000)) == htonl(0xFF000000);
}

static inline void ipv6_addr_set_v4mapped(const __be32 addr,
struct in6_addr *v4mapped)
{
Expand Down Expand Up @@ -664,6 +669,20 @@ void ipv6_select_ident(struct frag_hdr *fhdr, struct rt6_info *rt);

int ip6_dst_hoplimit(struct dst_entry *dst);

static inline int ip6_sk_dst_hoplimit(struct ipv6_pinfo *np, struct flowi6 *fl6,
struct dst_entry *dst)
{
int hlimit;

if (ipv6_addr_is_multicast(&fl6->daddr))
hlimit = np->mcast_hops;
else
hlimit = np->hop_limit;
if (hlimit < 0)
hlimit = ip6_dst_hoplimit(dst);
return hlimit;
}

/*
* Header manipulation
*/
Expand Down
14 changes: 2 additions & 12 deletions net/ipv6/icmp.c
Original file line number Diff line number Diff line change
Expand Up @@ -493,12 +493,7 @@ static void icmp6_send(struct sk_buff *skb, u8 type, u8 code, __u32 info)
if (IS_ERR(dst))
goto out;

if (ipv6_addr_is_multicast(&fl6.daddr))
hlimit = np->mcast_hops;
else
hlimit = np->hop_limit;
if (hlimit < 0)
hlimit = ip6_dst_hoplimit(dst);
hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);

msg.skb = skb;
msg.offset = skb_network_offset(skb);
Expand Down Expand Up @@ -593,12 +588,7 @@ static void icmpv6_echo_reply(struct sk_buff *skb)
if (IS_ERR(dst))
goto out;

if (ipv6_addr_is_multicast(&fl6.daddr))
hlimit = np->mcast_hops;
else
hlimit = np->hop_limit;
if (hlimit < 0)
hlimit = ip6_dst_hoplimit(dst);
hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);

idev = __in6_dev_get(skb->dev);

Expand Down
1 change: 0 additions & 1 deletion net/ipv6/ip6_flowlabel.c
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
#include <net/sock.h>

#include <net/ipv6.h>
#include <net/addrconf.h>
#include <net/rawv6.h>
#include <net/transp_v6.h>

Expand Down
7 changes: 1 addition & 6 deletions net/ipv6/ping.c
Original file line number Diff line number Diff line change
Expand Up @@ -168,12 +168,7 @@ int ping_v6_sendmsg(struct kiocb *iocb, struct sock *sk, struct msghdr *msg,
pfh.wcheck = 0;
pfh.family = AF_INET6;

if (ipv6_addr_is_multicast(&fl6.daddr))
hlimit = np->mcast_hops;
else
hlimit = np->hop_limit;
if (hlimit < 0)
hlimit = ip6_dst_hoplimit(dst);
hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);

lock_sock(sk);
err = ip6_append_data(sk, ping_getfrag, &pfh, len,
Expand Down
10 changes: 2 additions & 8 deletions net/ipv6/raw.c
Original file line number Diff line number Diff line change
Expand Up @@ -873,14 +873,8 @@ static int rawv6_sendmsg(struct kiocb *iocb, struct sock *sk,
err = PTR_ERR(dst);
goto out;
}
if (hlimit < 0) {
if (ipv6_addr_is_multicast(&fl6.daddr))
hlimit = np->mcast_hops;
else
hlimit = np->hop_limit;
if (hlimit < 0)
hlimit = ip6_dst_hoplimit(dst);
}
if (hlimit < 0)
hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);

if (tclass < 0)
tclass = np->tclass;
Expand Down
10 changes: 2 additions & 8 deletions net/ipv6/udp.c
Original file line number Diff line number Diff line change
Expand Up @@ -1232,14 +1232,8 @@ int udpv6_sendmsg(struct kiocb *iocb, struct sock *sk,
goto out;
}

if (hlimit < 0) {
if (ipv6_addr_is_multicast(&fl6.daddr))
hlimit = np->mcast_hops;
else
hlimit = np->hop_limit;
if (hlimit < 0)
hlimit = ip6_dst_hoplimit(dst);
}
if (hlimit < 0)
hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);

if (tclass < 0)
tclass = np->tclass;
Expand Down
10 changes: 2 additions & 8 deletions net/l2tp/l2tp_ip6.c
Original file line number Diff line number Diff line change
Expand Up @@ -605,14 +605,8 @@ static int l2tp_ip6_sendmsg(struct kiocb *iocb, struct sock *sk,
goto out;
}

if (hlimit < 0) {
if (ipv6_addr_is_multicast(&fl6.daddr))
hlimit = np->mcast_hops;
else
hlimit = np->hop_limit;
if (hlimit < 0)
hlimit = ip6_dst_hoplimit(dst);
}
if (hlimit < 0)
hlimit = ip6_sk_dst_hoplimit(np, &fl6, dst);

if (tclass < 0)
tclass = np->tclass;
Expand Down

0 comments on commit 5c98631

Please sign in to comment.