diff options
author | David Ahern <dsa@cumulusnetworks.com> | 2017-01-17 15:51:07 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-01-18 15:43:59 -0500 |
commit | fd61c6ba313de6758aeeab58fe03bd9fbbc8cea9 (patch) | |
tree | 4f0511187c4767663fedcfca5f642d3a719fedf8 /include/linux/mroute6.h | |
parent | 1ce463dd75d4ba0c64191e2b9c73c202a5a6cc3a (diff) |
net: ipv6: remove nowait arg to rt6_fill_node
All callers of rt6_fill_node pass 0 for nowait arg. Remove the arg and
simplify rt6_fill_node accordingly.
rt6_fill_node passes the nowait of 0 to ip6mr_get_route. Remove the
nowait arg from it as well.
Signed-off-by: David Ahern <dsa@cumulusnetworks.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/mroute6.h')
-rw-r--r-- | include/linux/mroute6.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/mroute6.h b/include/linux/mroute6.h index 19a1c0c2993b..ce44e3e96d27 100644 --- a/include/linux/mroute6.h +++ b/include/linux/mroute6.h @@ -116,7 +116,7 @@ struct mfc6_cache { struct rtmsg; extern int ip6mr_get_route(struct net *net, struct sk_buff *skb, - struct rtmsg *rtm, int nowait, u32 portid); + struct rtmsg *rtm, u32 portid); #ifdef CONFIG_IPV6_MROUTE extern struct sock *mroute6_socket(struct net *net, struct sk_buff *skb); |