|
@@ -214,7 +214,7 @@ static int br_validate_ipv4(struct net *net, struct sk_buff *skb)
|
|
|
|
|
|
iph = ip_hdr(skb);
|
|
iph = ip_hdr(skb);
|
|
if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
|
|
if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl)))
|
|
- goto inhdr_error;
|
|
|
|
|
|
+ goto csum_error;
|
|
|
|
|
|
len = ntohs(iph->tot_len);
|
|
len = ntohs(iph->tot_len);
|
|
if (skb->len < len) {
|
|
if (skb->len < len) {
|
|
@@ -236,6 +236,8 @@ static int br_validate_ipv4(struct net *net, struct sk_buff *skb)
|
|
*/
|
|
*/
|
|
return 0;
|
|
return 0;
|
|
|
|
|
|
|
|
+csum_error:
|
|
|
|
+ __IP_INC_STATS(net, IPSTATS_MIB_CSUMERRORS);
|
|
inhdr_error:
|
|
inhdr_error:
|
|
__IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS);
|
|
__IP_INC_STATS(net, IPSTATS_MIB_INHDRERRORS);
|
|
drop:
|
|
drop:
|