DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 1/1] test/bbdev: use helper function to set IOVA addr
@ 2022-11-01  7:48 Srikanth Yalavarthi
  2022-11-01  9:46 ` [PATCH v2 " Srikanth Yalavarthi
  0 siblings, 1 reply; 4+ messages in thread
From: Srikanth Yalavarthi @ 2022-11-01  7:48 UTC (permalink / raw)
  To: Nicolas Chautru, Maxime Coquelin; +Cc: dev, Srikanth Yalavarthi

Use helper function rte_mbuf_iova_set to set IOVA address
to fix compilation failures.

Fixes: 0acdb98667 ("test/bbdev: add FFT operations cases")

Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
---
 app/test-bbdev/test_bbdev_perf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c
index 8cf4359a2c..b285d3f3a7 100644
--- a/app/test-bbdev/test_bbdev_perf.c
+++ b/app/test-bbdev/test_bbdev_perf.c
@@ -1142,7 +1142,7 @@ init_op_data_objs(struct rte_bbdev_op_data *bufs,
 					"rte malloc failed with %u bytes",
 					seg->length + 1024);
 				m_head->buf_addr = data;
-				m_head->buf_iova = rte_malloc_virt2iova(data);
+				rte_mbuf_iova_set(m_head, rte_malloc_virt2iova(data));
 				m_head->data_off = 0;
 				m_head->data_len = seg->length;
 			} else {
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2 1/1] test/bbdev: use helper function to set IOVA addr
  2022-11-01  7:48 [PATCH 1/1] test/bbdev: use helper function to set IOVA addr Srikanth Yalavarthi
@ 2022-11-01  9:46 ` Srikanth Yalavarthi
  0 siblings, 0 replies; 4+ messages in thread
From: Srikanth Yalavarthi @ 2022-11-01  9:46 UTC (permalink / raw)
  To: Nicolas Chautru, Maxime Coquelin; +Cc: dev, Srikanth Yalavarthi

Use helper function rte_mbuf_iova_set to set IOVA address
to fix compilation failures.

Below error was observed:

dpdk/app/test-bbdev/test_bbdev_perf.c: In function ‘init_op_data_objs’:
dpdk/app/test-bbdev/test_bbdev_perf.c:1145:11: error:
‘struct rte_mbuf’ has no member named ‘buf_iova’
 1145 |     m_head->buf_iova = rte_malloc_virt2iova(data);
      |           ^~

Fixes: 0acdb98667 ("test/bbdev: add FFT operations cases")

Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
Change-Id: I9d4cda5f7fcd3a05b3cc8af7eaeccdf977b7fecd
---
 app/test-bbdev/test_bbdev_perf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c
index 8cf4359a2c..b285d3f3a7 100644
--- a/app/test-bbdev/test_bbdev_perf.c
+++ b/app/test-bbdev/test_bbdev_perf.c
@@ -1142,7 +1142,7 @@ init_op_data_objs(struct rte_bbdev_op_data *bufs,
 					"rte malloc failed with %u bytes",
 					seg->length + 1024);
 				m_head->buf_addr = data;
-				m_head->buf_iova = rte_malloc_virt2iova(data);
+				rte_mbuf_iova_set(m_head, rte_malloc_virt2iova(data));
 				m_head->data_off = 0;
 				m_head->data_len = seg->length;
 			} else {
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 1/1] test/bbdev: use helper function to set IOVA addr
  2022-11-01  9:53 [PATCH " Srikanth Yalavarthi
@ 2022-11-03  6:31 ` Jerin Jacob
  0 siblings, 0 replies; 4+ messages in thread
From: Jerin Jacob @ 2022-11-03  6:31 UTC (permalink / raw)
  To: Srikanth Yalavarthi; +Cc: Nicolas Chautru, Maxime Coquelin, dev

On Tue, Nov 1, 2022 at 3:23 PM Srikanth Yalavarthi
<syalavarthi@marvell.com> wrote:
>
> Use helper function rte_mbuf_iova_set to set IOVA address
> to fix compilation failures.
>
> Below error was observed:
>
> dpdk/app/test-bbdev/test_bbdev_perf.c: In function ‘init_op_data_objs’:
> dpdk/app/test-bbdev/test_bbdev_perf.c:1145:11: error:
> ‘struct rte_mbuf’ has no member named ‘buf_iova’
>  1145 |     m_head->buf_iova = rte_malloc_virt2iova(data);
>       |           ^~
>
> Fixes: 0acdb98667 ("test/bbdev: add FFT operations cases")

Is this change came after rte_mbuf_iova_set() API introduction?

>
> Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>

Acked-by: Jerin Jacob <jerinj@marvell.com>


> ---
>  app/test-bbdev/test_bbdev_perf.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c
> index 8cf4359a2c..b285d3f3a7 100644
> --- a/app/test-bbdev/test_bbdev_perf.c
> +++ b/app/test-bbdev/test_bbdev_perf.c
> @@ -1142,7 +1142,7 @@ init_op_data_objs(struct rte_bbdev_op_data *bufs,
>                                         "rte malloc failed with %u bytes",
>                                         seg->length + 1024);
>                                 m_head->buf_addr = data;
> -                               m_head->buf_iova = rte_malloc_virt2iova(data);
> +                               rte_mbuf_iova_set(m_head, rte_malloc_virt2iova(data));
>                                 m_head->data_off = 0;
>                                 m_head->data_len = seg->length;
>                         } else {
> --
> 2.17.1
>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH 1/1] test/bbdev: use helper function to set IOVA addr
@ 2022-11-01  9:53 Srikanth Yalavarthi
  2022-11-03  6:31 ` Jerin Jacob
  0 siblings, 1 reply; 4+ messages in thread
From: Srikanth Yalavarthi @ 2022-11-01  9:53 UTC (permalink / raw)
  To: Nicolas Chautru, Maxime Coquelin; +Cc: dev, Srikanth Yalavarthi

Use helper function rte_mbuf_iova_set to set IOVA address
to fix compilation failures.

Below error was observed:

dpdk/app/test-bbdev/test_bbdev_perf.c: In function ‘init_op_data_objs’:
dpdk/app/test-bbdev/test_bbdev_perf.c:1145:11: error:
‘struct rte_mbuf’ has no member named ‘buf_iova’
 1145 |     m_head->buf_iova = rte_malloc_virt2iova(data);
      |           ^~

Fixes: 0acdb98667 ("test/bbdev: add FFT operations cases")

Signed-off-by: Srikanth Yalavarthi <syalavarthi@marvell.com>
---
 app/test-bbdev/test_bbdev_perf.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c
index 8cf4359a2c..b285d3f3a7 100644
--- a/app/test-bbdev/test_bbdev_perf.c
+++ b/app/test-bbdev/test_bbdev_perf.c
@@ -1142,7 +1142,7 @@ init_op_data_objs(struct rte_bbdev_op_data *bufs,
 					"rte malloc failed with %u bytes",
 					seg->length + 1024);
 				m_head->buf_addr = data;
-				m_head->buf_iova = rte_malloc_virt2iova(data);
+				rte_mbuf_iova_set(m_head, rte_malloc_virt2iova(data));
 				m_head->data_off = 0;
 				m_head->data_len = seg->length;
 			} else {
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-11-03  6:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-01  7:48 [PATCH 1/1] test/bbdev: use helper function to set IOVA addr Srikanth Yalavarthi
2022-11-01  9:46 ` [PATCH v2 " Srikanth Yalavarthi
2022-11-01  9:53 [PATCH " Srikanth Yalavarthi
2022-11-03  6:31 ` Jerin Jacob

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).