<div dir="ltr">Hello,<br><br>I need clarification while creating direct/indirect buffers for mbuf. I couldn't find exact documentation, and I just looked over the fragmentation test case and saw that two pools were created. One is a <br>direct pool, and the other is an indirect pool. Here are the methods to create pools:<br>direct_pool = rte_pktmbuf_pool_create("FRAG_D_MBUF_POOL",<br>                          NUM_MBUFS, BURST, 0,<br>                          RTE_MBUF_DEFAULT_BUF_SIZE,<br>                          SOCKET_ID_ANY);<br>indirect_pool = rte_pktmbuf_pool_create("FRAG_I_MBUF_POOL",<br>                        NUM_MBUFS, BURST, 0,<br>                        0, SOCKET_ID_ANY)<br><br>I couldn't see the exact difference. Just the "data_room_size" parameter is different. If this parameter is 0, then is the pool indirect?<br><br>Thanks all</div>