mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-28 09:31:14 +00:00
net: ipv6: remove prefix arg to rt6_fill_node
The prefix arg to rt6_fill_node is non-0 in only 1 path - rt6_dump_route where a user is requesting a prefix only dump. Simplify rt6_fill_node by removing the prefix arg and moving the prefix check to rt6_dump_route. Signed-off-by: David Ahern <dsa@cumulusnetworks.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
fd61c6ba31
commit
f8cfe2ceb1
1 changed files with 12 additions and 15 deletions
|
@ -3169,7 +3169,7 @@ static int rt6_fill_node(struct net *net,
|
||||||
struct sk_buff *skb, struct rt6_info *rt,
|
struct sk_buff *skb, struct rt6_info *rt,
|
||||||
struct in6_addr *dst, struct in6_addr *src,
|
struct in6_addr *dst, struct in6_addr *src,
|
||||||
int iif, int type, u32 portid, u32 seq,
|
int iif, int type, u32 portid, u32 seq,
|
||||||
int prefix, unsigned int flags)
|
unsigned int flags)
|
||||||
{
|
{
|
||||||
u32 metrics[RTAX_MAX];
|
u32 metrics[RTAX_MAX];
|
||||||
struct rtmsg *rtm;
|
struct rtmsg *rtm;
|
||||||
|
@ -3177,13 +3177,6 @@ static int rt6_fill_node(struct net *net,
|
||||||
long expires;
|
long expires;
|
||||||
u32 table;
|
u32 table;
|
||||||
|
|
||||||
if (prefix) { /* user wants prefix routes only */
|
|
||||||
if (!(rt->rt6i_flags & RTF_PREFIX_RT)) {
|
|
||||||
/* success since this is not a prefix route */
|
|
||||||
return 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
|
nlh = nlmsg_put(skb, portid, seq, type, sizeof(*rtm), flags);
|
||||||
if (!nlh)
|
if (!nlh)
|
||||||
return -EMSGSIZE;
|
return -EMSGSIZE;
|
||||||
|
@ -3324,18 +3317,22 @@ nla_put_failure:
|
||||||
int rt6_dump_route(struct rt6_info *rt, void *p_arg)
|
int rt6_dump_route(struct rt6_info *rt, void *p_arg)
|
||||||
{
|
{
|
||||||
struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
|
struct rt6_rtnl_dump_arg *arg = (struct rt6_rtnl_dump_arg *) p_arg;
|
||||||
int prefix;
|
|
||||||
|
|
||||||
if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
|
if (nlmsg_len(arg->cb->nlh) >= sizeof(struct rtmsg)) {
|
||||||
struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
|
struct rtmsg *rtm = nlmsg_data(arg->cb->nlh);
|
||||||
prefix = (rtm->rtm_flags & RTM_F_PREFIX) != 0;
|
|
||||||
} else
|
/* user wants prefix routes only */
|
||||||
prefix = 0;
|
if (rtm->rtm_flags & RTM_F_PREFIX &&
|
||||||
|
!(rt->rt6i_flags & RTF_PREFIX_RT)) {
|
||||||
|
/* success since this is not a prefix route */
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return rt6_fill_node(arg->net,
|
return rt6_fill_node(arg->net,
|
||||||
arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
|
arg->skb, rt, NULL, NULL, 0, RTM_NEWROUTE,
|
||||||
NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
|
NETLINK_CB(arg->cb->skb).portid, arg->cb->nlh->nlmsg_seq,
|
||||||
prefix, NLM_F_MULTI);
|
NLM_F_MULTI);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
|
static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
|
||||||
|
@ -3426,7 +3423,7 @@ static int inet6_rtm_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh)
|
||||||
|
|
||||||
err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
|
err = rt6_fill_node(net, skb, rt, &fl6.daddr, &fl6.saddr, iif,
|
||||||
RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
|
RTM_NEWROUTE, NETLINK_CB(in_skb).portid,
|
||||||
nlh->nlmsg_seq, 0, 0);
|
nlh->nlmsg_seq, 0);
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
kfree_skb(skb);
|
kfree_skb(skb);
|
||||||
goto errout;
|
goto errout;
|
||||||
|
@ -3453,7 +3450,7 @@ void inet6_rt_notify(int event, struct rt6_info *rt, struct nl_info *info,
|
||||||
goto errout;
|
goto errout;
|
||||||
|
|
||||||
err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
|
err = rt6_fill_node(net, skb, rt, NULL, NULL, 0,
|
||||||
event, info->portid, seq, 0, nlm_flags);
|
event, info->portid, seq, nlm_flags);
|
||||||
if (err < 0) {
|
if (err < 0) {
|
||||||
/* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
|
/* -EMSGSIZE implies BUG in rt6_nlmsg_size() */
|
||||||
WARN_ON(err == -EMSGSIZE);
|
WARN_ON(err == -EMSGSIZE);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue