[dpdk-dev] [PATCH v7 1/9] bbdev: add big endian processing data processing info
From: <hidden>
Date: 2021-09-28 08:30:03
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: <hidden>
Date: 2021-09-28 08:30:03
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Nipun Gupta <redacted> This patch intoduces a new info pertaining to bbdev device to process the data in big endian order. Signed-off-by: Nipun Gupta <redacted> --- lib/bbdev/rte_bbdev.h | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/lib/bbdev/rte_bbdev.h b/lib/bbdev/rte_bbdev.h
index 7017124414..3acc008d06 100644
--- a/lib/bbdev/rte_bbdev.h
+++ b/lib/bbdev/rte_bbdev.h@@ -309,6 +309,8 @@ struct rte_bbdev_driver_info { uint16_t min_alignment; /** HARQ memory available in kB */ uint32_t harq_buffer_size; + /** Device support input, output and HARQ data as big-endian */ + uint8_t support_be_data; /** Default queue configuration used if none is supplied */ struct rte_bbdev_queue_conf default_queue_conf; /** Device operation capabilities */
--
2.17.1