mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-19 12:54:00 +00:00
net: Use ip_route_input_noref() in input path
Use ip_route_input_noref() in ip fast path, to avoid two atomic ops per incoming packet. Note: loopback is excluded from this optimization in ip_rcv_finish() Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
407eadd996
commit
4a94445c9a
3 changed files with 5 additions and 5 deletions
net/ipv4
|
@ -854,7 +854,7 @@ static int arp_process(struct sk_buff *skb)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (arp->ar_op == htons(ARPOP_REQUEST) &&
|
if (arp->ar_op == htons(ARPOP_REQUEST) &&
|
||||||
ip_route_input(skb, tip, sip, 0, dev) == 0) {
|
ip_route_input_noref(skb, tip, sip, 0, dev) == 0) {
|
||||||
|
|
||||||
rt = skb_rtable(skb);
|
rt = skb_rtable(skb);
|
||||||
addr_type = rt->rt_type;
|
addr_type = rt->rt_type;
|
||||||
|
|
|
@ -331,8 +331,8 @@ static int ip_rcv_finish(struct sk_buff *skb)
|
||||||
* how the packet travels inside Linux networking.
|
* how the packet travels inside Linux networking.
|
||||||
*/
|
*/
|
||||||
if (skb_dst(skb) == NULL) {
|
if (skb_dst(skb) == NULL) {
|
||||||
int err = ip_route_input(skb, iph->daddr, iph->saddr, iph->tos,
|
int err = ip_route_input_noref(skb, iph->daddr, iph->saddr,
|
||||||
skb->dev);
|
iph->tos, skb->dev);
|
||||||
if (unlikely(err)) {
|
if (unlikely(err)) {
|
||||||
if (err == -EHOSTUNREACH)
|
if (err == -EHOSTUNREACH)
|
||||||
IP_INC_STATS_BH(dev_net(skb->dev),
|
IP_INC_STATS_BH(dev_net(skb->dev),
|
||||||
|
|
|
@ -27,8 +27,8 @@ static inline int xfrm4_rcv_encap_finish(struct sk_buff *skb)
|
||||||
if (skb_dst(skb) == NULL) {
|
if (skb_dst(skb) == NULL) {
|
||||||
const struct iphdr *iph = ip_hdr(skb);
|
const struct iphdr *iph = ip_hdr(skb);
|
||||||
|
|
||||||
if (ip_route_input(skb, iph->daddr, iph->saddr, iph->tos,
|
if (ip_route_input_noref(skb, iph->daddr, iph->saddr,
|
||||||
skb->dev))
|
iph->tos, skb->dev))
|
||||||
goto drop;
|
goto drop;
|
||||||
}
|
}
|
||||||
return dst_input(skb);
|
return dst_input(skb);
|
||||||
|
|
Loading…
Add table
Reference in a new issue