bugfix: send packet enable rehash

This commit is contained in:
luwenpeng
2023-10-15 21:05:06 +08:00
parent 2d9fecdf0f
commit db517610e0
3 changed files with 22 additions and 1 deletions

View File

@@ -387,6 +387,11 @@ int marsio_send_burst(struct mr_sendpath *sendpath, queue_id_t qid, marsio_buff_
return marsio_buff_datalen(mbufs[0]);
}
int marsio_send_burst_with_options(struct mr_sendpath *sendpath, queue_id_t sid, marsio_buff_t *mbufs[], int nr_mbufs, uint16_t options)
{
return marsio_send_burst(sendpath, sid, mbufs, nr_mbufs);
}
// new add, only for gtest
void marsio_set_recv_mbuff(struct mr_instance *instance, marsio_buff_t *mbuff)
{