We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce2189d commit c149cc7Copy full SHA for c149cc7
net/netfilter/ipvs/ip_vs_xmit.c
@@ -271,7 +271,7 @@ static inline bool decrement_ttl(struct netns_ipvs *ipvs,
271
skb->dev = dst->dev;
272
icmpv6_send(skb, ICMPV6_TIME_EXCEED,
273
ICMPV6_EXC_HOPLIMIT, 0);
274
- __IP6_INC_STATS(net, idev, IPSTATS_MIB_INHDRERRORS);
+ IP6_INC_STATS(net, idev, IPSTATS_MIB_INHDRERRORS);
275
276
return false;
277
}
@@ -286,7 +286,7 @@ static inline bool decrement_ttl(struct netns_ipvs *ipvs,
286
{
287
if (ip_hdr(skb)->ttl <= 1) {
288
/* Tell the sender its packet died... */
289
- __IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS);
+ IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS);
290
icmp_send(skb, ICMP_TIME_EXCEEDED, ICMP_EXC_TTL, 0);
291
292
0 commit comments