]> git.droids-corp.org - dpdk.git/blobdiff - app/test/test_mbuf.c
test/mbuf: fix forged mbuf in clone test
[dpdk.git] / app / test / test_mbuf.c
index 2a97afe2044a3e0ff490c3e6540593d7fb234e37..aafad0cf62067436f122cdb87c71f3bc47eff396 100644 (file)
@@ -332,8 +332,11 @@ testclone_testupdate_testdetach(struct rte_mempool *pktmbuf_pool)
        m->next = rte_pktmbuf_alloc(pktmbuf_pool);
        if (m->next == NULL)
                GOTO_FAIL("Next Pkt Null\n");
+       m->nb_segs = 2;
 
        rte_pktmbuf_append(m->next, sizeof(uint32_t));
+       m->pkt_len = 2 * sizeof(uint32_t);
+
        data = rte_pktmbuf_mtod(m->next, unaligned_uint32_t *);
        *data = MAGIC_DATA;