diff options
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/fib_rules.c | 6 | ||||
-rw-r--r-- | net/core/neighbour.c | 8 | ||||
-rw-r--r-- | net/core/rtnetlink.c | 12 |
3 files changed, 13 insertions, 13 deletions
diff --git a/net/core/fib_rules.c b/net/core/fib_rules.c index ab7db83236c9..58a4ba27dfe3 100644 --- a/net/core/fib_rules.c +++ b/net/core/fib_rules.c | |||
@@ -402,7 +402,7 @@ static int fib_nl_newrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) | |||
402 | if (unresolved) | 402 | if (unresolved) |
403 | ops->unresolved_rules++; | 403 | ops->unresolved_rules++; |
404 | 404 | ||
405 | notify_rule_change(RTM_NEWRULE, rule, ops, nlh, NETLINK_CB(skb).pid); | 405 | notify_rule_change(RTM_NEWRULE, rule, ops, nlh, NETLINK_CB(skb).portid); |
406 | flush_route_cache(ops); | 406 | flush_route_cache(ops); |
407 | rules_ops_put(ops); | 407 | rules_ops_put(ops); |
408 | return 0; | 408 | return 0; |
@@ -500,7 +500,7 @@ static int fib_nl_delrule(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) | |||
500 | } | 500 | } |
501 | 501 | ||
502 | notify_rule_change(RTM_DELRULE, rule, ops, nlh, | 502 | notify_rule_change(RTM_DELRULE, rule, ops, nlh, |
503 | NETLINK_CB(skb).pid); | 503 | NETLINK_CB(skb).portid); |
504 | if (ops->delete) | 504 | if (ops->delete) |
505 | ops->delete(rule); | 505 | ops->delete(rule); |
506 | fib_rule_put(rule); | 506 | fib_rule_put(rule); |
@@ -601,7 +601,7 @@ static int dump_rules(struct sk_buff *skb, struct netlink_callback *cb, | |||
601 | if (idx < cb->args[1]) | 601 | if (idx < cb->args[1]) |
602 | goto skip; | 602 | goto skip; |
603 | 603 | ||
604 | if (fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).pid, | 604 | if (fib_nl_fill_rule(skb, rule, NETLINK_CB(cb->skb).portid, |
605 | cb->nlh->nlmsg_seq, RTM_NEWRULE, | 605 | cb->nlh->nlmsg_seq, RTM_NEWRULE, |
606 | NLM_F_MULTI, ops) < 0) | 606 | NLM_F_MULTI, ops) < 0) |
607 | break; | 607 | break; |
diff --git a/net/core/neighbour.c b/net/core/neighbour.c index 117afaf51268..c160adb38e5a 100644 --- a/net/core/neighbour.c +++ b/net/core/neighbour.c | |||
@@ -2102,7 +2102,7 @@ static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb) | |||
2102 | if (tidx < tbl_skip || (family && tbl->family != family)) | 2102 | if (tidx < tbl_skip || (family && tbl->family != family)) |
2103 | continue; | 2103 | continue; |
2104 | 2104 | ||
2105 | if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).pid, | 2105 | if (neightbl_fill_info(skb, tbl, NETLINK_CB(cb->skb).portid, |
2106 | cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL, | 2106 | cb->nlh->nlmsg_seq, RTM_NEWNEIGHTBL, |
2107 | NLM_F_MULTI) <= 0) | 2107 | NLM_F_MULTI) <= 0) |
2108 | break; | 2108 | break; |
@@ -2115,7 +2115,7 @@ static int neightbl_dump_info(struct sk_buff *skb, struct netlink_callback *cb) | |||
2115 | goto next; | 2115 | goto next; |
2116 | 2116 | ||
2117 | if (neightbl_fill_param_info(skb, tbl, p, | 2117 | if (neightbl_fill_param_info(skb, tbl, p, |
2118 | NETLINK_CB(cb->skb).pid, | 2118 | NETLINK_CB(cb->skb).portid, |
2119 | cb->nlh->nlmsg_seq, | 2119 | cb->nlh->nlmsg_seq, |
2120 | RTM_NEWNEIGHTBL, | 2120 | RTM_NEWNEIGHTBL, |
2121 | NLM_F_MULTI) <= 0) | 2121 | NLM_F_MULTI) <= 0) |
@@ -2244,7 +2244,7 @@ static int neigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb, | |||
2244 | continue; | 2244 | continue; |
2245 | if (idx < s_idx) | 2245 | if (idx < s_idx) |
2246 | goto next; | 2246 | goto next; |
2247 | if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid, | 2247 | if (neigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid, |
2248 | cb->nlh->nlmsg_seq, | 2248 | cb->nlh->nlmsg_seq, |
2249 | RTM_NEWNEIGH, | 2249 | RTM_NEWNEIGH, |
2250 | NLM_F_MULTI) <= 0) { | 2250 | NLM_F_MULTI) <= 0) { |
@@ -2281,7 +2281,7 @@ static int pneigh_dump_table(struct neigh_table *tbl, struct sk_buff *skb, | |||
2281 | continue; | 2281 | continue; |
2282 | if (idx < s_idx) | 2282 | if (idx < s_idx) |
2283 | goto next; | 2283 | goto next; |
2284 | if (pneigh_fill_info(skb, n, NETLINK_CB(cb->skb).pid, | 2284 | if (pneigh_fill_info(skb, n, NETLINK_CB(cb->skb).portid, |
2285 | cb->nlh->nlmsg_seq, | 2285 | cb->nlh->nlmsg_seq, |
2286 | RTM_NEWNEIGH, | 2286 | RTM_NEWNEIGH, |
2287 | NLM_F_MULTI, tbl) <= 0) { | 2287 | NLM_F_MULTI, tbl) <= 0) { |
diff --git a/net/core/rtnetlink.c b/net/core/rtnetlink.c index 508c5df4a09c..92575370d9f0 100644 --- a/net/core/rtnetlink.c +++ b/net/core/rtnetlink.c | |||
@@ -1081,7 +1081,7 @@ static int rtnl_dump_ifinfo(struct sk_buff *skb, struct netlink_callback *cb) | |||
1081 | if (idx < s_idx) | 1081 | if (idx < s_idx) |
1082 | goto cont; | 1082 | goto cont; |
1083 | if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, | 1083 | if (rtnl_fill_ifinfo(skb, dev, RTM_NEWLINK, |
1084 | NETLINK_CB(cb->skb).pid, | 1084 | NETLINK_CB(cb->skb).portid, |
1085 | cb->nlh->nlmsg_seq, 0, | 1085 | cb->nlh->nlmsg_seq, 0, |
1086 | NLM_F_MULTI, | 1086 | NLM_F_MULTI, |
1087 | ext_filter_mask) <= 0) | 1087 | ext_filter_mask) <= 0) |
@@ -1899,14 +1899,14 @@ static int rtnl_getlink(struct sk_buff *skb, struct nlmsghdr* nlh, void *arg) | |||
1899 | if (nskb == NULL) | 1899 | if (nskb == NULL) |
1900 | return -ENOBUFS; | 1900 | return -ENOBUFS; |
1901 | 1901 | ||
1902 | err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).pid, | 1902 | err = rtnl_fill_ifinfo(nskb, dev, RTM_NEWLINK, NETLINK_CB(skb).portid, |
1903 | nlh->nlmsg_seq, 0, 0, ext_filter_mask); | 1903 | nlh->nlmsg_seq, 0, 0, ext_filter_mask); |
1904 | if (err < 0) { | 1904 | if (err < 0) { |
1905 | /* -EMSGSIZE implies BUG in if_nlmsg_size */ | 1905 | /* -EMSGSIZE implies BUG in if_nlmsg_size */ |
1906 | WARN_ON(err == -EMSGSIZE); | 1906 | WARN_ON(err == -EMSGSIZE); |
1907 | kfree_skb(nskb); | 1907 | kfree_skb(nskb); |
1908 | } else | 1908 | } else |
1909 | err = rtnl_unicast(nskb, net, NETLINK_CB(skb).pid); | 1909 | err = rtnl_unicast(nskb, net, NETLINK_CB(skb).portid); |
1910 | 1910 | ||
1911 | return err; | 1911 | return err; |
1912 | } | 1912 | } |
@@ -2180,9 +2180,9 @@ static int nlmsg_populate_fdb(struct sk_buff *skb, | |||
2180 | { | 2180 | { |
2181 | struct netdev_hw_addr *ha; | 2181 | struct netdev_hw_addr *ha; |
2182 | int err; | 2182 | int err; |
2183 | u32 pid, seq; | 2183 | u32 portid, seq; |
2184 | 2184 | ||
2185 | pid = NETLINK_CB(cb->skb).pid; | 2185 | portid = NETLINK_CB(cb->skb).portid; |
2186 | seq = cb->nlh->nlmsg_seq; | 2186 | seq = cb->nlh->nlmsg_seq; |
2187 | 2187 | ||
2188 | list_for_each_entry(ha, &list->list, list) { | 2188 | list_for_each_entry(ha, &list->list, list) { |
@@ -2190,7 +2190,7 @@ static int nlmsg_populate_fdb(struct sk_buff *skb, | |||
2190 | goto skip; | 2190 | goto skip; |
2191 | 2191 | ||
2192 | err = nlmsg_populate_fdb_fill(skb, dev, ha->addr, | 2192 | err = nlmsg_populate_fdb_fill(skb, dev, ha->addr, |
2193 | pid, seq, 0, NTF_SELF); | 2193 | portid, seq, 0, NTF_SELF); |
2194 | if (err < 0) | 2194 | if (err < 0) |
2195 | return err; | 2195 | return err; |
2196 | skip: | 2196 | skip: |