doc: whitespace changes in licenses
[dpdk.git] / examples / ip_reassembly / ipv4_rsmbl.h
index bc94030..b9ab544 100644 (file)
@@ -4,32 +4,31 @@
  *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
  *   All rights reserved.
  * 
- *   Redistribution and use in source and binary forms, with or without 
- *   modification, are permitted provided that the following conditions 
+ *   Redistribution and use in source and binary forms, with or without
+ *   modification, are permitted provided that the following conditions
  *   are met:
  * 
- *     * Redistributions of source code must retain the above copyright 
+ *     * Redistributions of source code must retain the above copyright
  *       notice, this list of conditions and the following disclaimer.
- *     * Redistributions in binary form must reproduce the above copyright 
- *       notice, this list of conditions and the following disclaimer in 
- *       the documentation and/or other materials provided with the 
+ *     * Redistributions in binary form must reproduce the above copyright
+ *       notice, this list of conditions and the following disclaimer in
+ *       the documentation and/or other materials provided with the
  *       distribution.
- *     * Neither the name of Intel Corporation nor the names of its 
- *       contributors may be used to endorse or promote products derived 
+ *     * Neither the name of Intel Corporation nor the names of its
+ *       contributors may be used to endorse or promote products derived
  *       from this software without specific prior written permission.
  * 
- *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
- *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
- *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
- *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
- *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
- *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
- *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
- *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
- *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
- *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- * 
  */
 
 #ifndef _IPV4_RSMBL_H_
@@ -69,7 +68,7 @@ struct ipv4_frag_key {
 
 #define        IPV4_FRAG_KEY_CMP(k1, k2)       \
        (((k1)->src_dst ^ (k2)->src_dst) | ((k1)->id ^ (k2)->id))
-       
+
 
 /*
  * Fragmented packet to reassemble.
@@ -85,6 +84,14 @@ struct ipv4_frag_pkt {
        struct ipv4_frag     frags[MAX_FRAG_NUM];
 } __rte_cache_aligned;
 
+
+struct ipv4_frag_death_row {
+       uint32_t cnt;
+       struct rte_mbuf *row[MAX_PKT_BURST * (MAX_FRAG_NUM + 1)];
+};
+
+#define        IPV4_FRAG_MBUF2DR(dr, mb)       ((dr)->row[(dr)->cnt++] = (mb))
+
 /* logging macros. */
 
 #ifdef IPV4_FRAG_DEBUG
@@ -112,18 +119,42 @@ ipv4_frag_reset(struct ipv4_frag_pkt *fp, uint64_t tms)
 }
 
 static inline void
-ipv4_frag_free(struct ipv4_frag_pkt *fp)
+ipv4_frag_free(struct ipv4_frag_pkt *fp, struct ipv4_frag_death_row *dr)
 {
-       uint32_t i;
+       uint32_t i, k;
 
+       k = dr->cnt;
        for (i = 0; i != fp->last_idx; i++) {
                if (fp->frags[i].mb != NULL) {
-                       rte_pktmbuf_free(fp->frags[i].mb);
+                       dr->row[k++] = fp->frags[i].mb;
                        fp->frags[i].mb = NULL;
                }
        }
 
        fp->last_idx = 0;
+       dr->cnt = k;
+}
+
+static inline void
+ipv4_frag_free_death_row(struct ipv4_frag_death_row *dr, uint32_t prefetch)
+{
+       uint32_t i, k, n;
+
+       k = RTE_MIN(prefetch, dr->cnt);
+       n = dr->cnt;
+
+       for (i = 0; i != k; i++) 
+               rte_prefetch0(dr->row[i]);
+
+       for (i = 0; i != n - k; i++) {
+               rte_prefetch0(dr->row[i + k]);
+               rte_pktmbuf_free(dr->row[i]);
+       }
+
+       for (; i != n; i++)
+               rte_pktmbuf_free(dr->row[i]);
+
+       dr->cnt = 0;
 }
 
 /*
@@ -214,8 +245,8 @@ ipv4_frag_reassemble(const struct ipv4_frag_pkt *fp)
 }
 
 static inline struct rte_mbuf *
-ipv4_frag_process(struct ipv4_frag_pkt *fp, struct rte_mbuf *mb,
-       uint16_t ofs, uint16_t len, uint16_t more_frags)
+ipv4_frag_process(struct ipv4_frag_pkt *fp, struct ipv4_frag_death_row *dr,
+       struct rte_mbuf *mb, uint16_t ofs, uint16_t len, uint16_t more_frags)
 {
        uint32_t idx;
 
@@ -259,9 +290,9 @@ ipv4_frag_process(struct ipv4_frag_pkt *fp, struct rte_mbuf *mb,
                        fp->frags[LAST_FRAG_IDX].len);
 
                /* free all fragments, invalidate the entry. */
-               ipv4_frag_free(fp);
+               ipv4_frag_free(fp, dr);
                IPV4_FRAG_KEY_INVALIDATE(&fp->key);
-               rte_pktmbuf_free(mb);
+               IPV4_FRAG_MBUF2DR(dr, mb);
 
                return (NULL);
        }
@@ -300,7 +331,7 @@ ipv4_frag_process(struct ipv4_frag_pkt *fp, struct rte_mbuf *mb,
                        fp->frags[LAST_FRAG_IDX].len);
 
                /* free associated resources. */
-               ipv4_frag_free(fp);
+               ipv4_frag_free(fp, dr);
        }
 
        /* we are done with that entry, invalidate it. */
@@ -331,8 +362,9 @@ ipv4_frag_process(struct ipv4_frag_pkt *fp, struct rte_mbuf *mb,
  *   - not all fragments of the packet are collected yet.
  */
 static inline struct rte_mbuf *
-ipv4_frag_mbuf(struct ipv4_frag_tbl *tbl, struct rte_mbuf *mb, uint64_t tms,
-       struct ipv4_hdr *ip_hdr, uint16_t ip_ofs, uint16_t ip_flag)
+ipv4_frag_mbuf(struct ipv4_frag_tbl *tbl, struct ipv4_frag_death_row *dr,
+       struct rte_mbuf *mb, uint64_t tms, struct ipv4_hdr *ip_hdr,
+       uint16_t ip_ofs, uint16_t ip_flag)
 {
        struct ipv4_frag_pkt *fp;
        struct ipv4_frag_key key;
@@ -358,8 +390,8 @@ ipv4_frag_mbuf(struct ipv4_frag_tbl *tbl, struct rte_mbuf *mb, uint64_t tms,
                tbl->use_entries);
 
        /* try to find/add entry into the fragment's table. */
-       if ((fp = ipv4_frag_find(tbl, &key, tms)) == NULL) {
-               rte_pktmbuf_free(mb);
+       if ((fp = ipv4_frag_find(tbl, dr, &key, tms)) == NULL) {
+               IPV4_FRAG_MBUF2DR(dr, mb);
                return (NULL);
        }
 
@@ -374,7 +406,7 @@ ipv4_frag_mbuf(struct ipv4_frag_tbl *tbl, struct rte_mbuf *mb, uint64_t tms,
                
 
        /* process the fragmented packet. */
-       mb = ipv4_frag_process(fp, mb, ip_ofs, ip_len, ip_flag);
+       mb = ipv4_frag_process(fp, dr, mb, ip_ofs, ip_len, ip_flag);
        ipv4_frag_inuse(tbl, fp);
 
        IPV4_FRAG_LOG(DEBUG, "%s:%d:\n"