DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH 1/2] pipeline: fix jump instruction population
@ 2020-10-16 13:57 Cristian Dumitrescu
  2020-10-16 14:12 ` P, Venkata Suresh Kumar
  2020-10-19  7:09 ` David Marchand
  0 siblings, 2 replies; 5+ messages in thread
From: Cristian Dumitrescu @ 2020-10-16 13:57 UTC (permalink / raw)
  To: dev; +Cc: venkata.suresh.kumar.p, cristian.dumitrescu

From: Venkata Suresh Kumar P <venkata.suresh.kumar.p@intel.com>

This patch fixes jump next instruction pointer
population

Fixes: b3947e25bed4 ("pipeline: introduce SWX jump and return instructions")
Cc: cristian.dumitrescu@intel.com

Signed-off-by: Venkata Suresh Kumar P <venkata.suresh.kumar.p@intel.com>
Acked-by: Cristian Dumitrescu <cristian.dumitrescu@intel.com>
---
 lib/librte_pipeline/rte_swx_pipeline.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/librte_pipeline/rte_swx_pipeline.c b/lib/librte_pipeline/rte_swx_pipeline.c
index d5b4a1c..2c9fbf4 100644
--- a/lib/librte_pipeline/rte_swx_pipeline.c
+++ b/lib/librte_pipeline/rte_swx_pipeline.c
@@ -5647,7 +5647,7 @@ struct_field_parse(struct rte_swx_pipeline *p,
 				   data->jmp_label);
 		CHECK(found, EINVAL);
 
-		instr->jmp.ip = &instr[found - instruction_data];
+		instr->jmp.ip = &instructions[found - instruction_data];
 	}
 
 	return 0;
-- 
1.8.3.1


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

end of thread, other threads:[~2020-10-19  7:09 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-16 13:57 [dpdk-dev] [PATCH 1/2] pipeline: fix jump instruction population Cristian Dumitrescu
2020-10-16 14:12 ` P, Venkata Suresh Kumar
2020-10-16 14:17   ` David Marchand
2020-10-16 14:20     ` David Marchand
2020-10-19  7:09 ` David Marchand

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).