patch-2_6_7-vs1_9_1_12
[linux-2.6.git] / net / ipv4 / ip_fragment.c
index 375caff..1f007c6 100644 (file)
@@ -263,7 +263,7 @@ static void ip_evictor(void)
                spin_unlock(&qp->lock);
 
                ipq_put(qp);
-               IP_INC_STATS_BH(IpReasmFails);
+               IP_INC_STATS_BH(ReasmFails);
        }
 }
 
@@ -281,8 +281,8 @@ static void ip_expire(unsigned long arg)
 
        ipq_kill(qp);
 
-       IP_INC_STATS_BH(IpReasmTimeout);
-       IP_INC_STATS_BH(IpReasmFails);
+       IP_INC_STATS_BH(ReasmTimeout);
+       IP_INC_STATS_BH(ReasmFails);
 
        if ((qp->last_in&FIRST_IN) && qp->fragments != NULL) {
                struct sk_buff *head = qp->fragments;
@@ -609,7 +609,7 @@ static struct sk_buff *ip_frag_reasm(struct ipq *qp, struct net_device *dev)
        iph = head->nh.iph;
        iph->frag_off = 0;
        iph->tot_len = htons(len);
-       IP_INC_STATS_BH(IpReasmOKs);
+       IP_INC_STATS_BH(ReasmOKs);
        qp->fragments = NULL;
        return head;
 
@@ -625,7 +625,7 @@ out_oversize:
                        "Oversized IP packet from %d.%d.%d.%d.\n",
                        NIPQUAD(qp->saddr));
 out_fail:
-       IP_INC_STATS_BH(IpReasmFails);
+       IP_INC_STATS_BH(ReasmFails);
        return NULL;
 }
 
@@ -636,7 +636,7 @@ struct sk_buff *ip_defrag(struct sk_buff *skb)
        struct ipq *qp;
        struct net_device *dev;
        
-       IP_INC_STATS_BH(IpReasmReqds);
+       IP_INC_STATS_BH(ReasmReqds);
 
        /* Start by cleaning up the memory. */
        if (atomic_read(&ip_frag_mem) > sysctl_ipfrag_high_thresh)
@@ -661,7 +661,7 @@ struct sk_buff *ip_defrag(struct sk_buff *skb)
                return ret;
        }
 
-       IP_INC_STATS_BH(IpReasmFails);
+       IP_INC_STATS_BH(ReasmFails);
        kfree_skb(skb);
        return NULL;
 }