DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/compress-perf: add info about socket id used by app and by the driver
       [not found] <1556634100-17286-1-git-send-email-tomaszx.cel@intel.com>
@ 2019-04-30 17:10 ` Trahe, Fiona
  2019-04-30 17:10   ` Trahe, Fiona
  2019-05-28  9:03   ` Trybula, ArturX
  0 siblings, 2 replies; 4+ messages in thread
From: Trahe, Fiona @ 2019-04-30 17:10 UTC (permalink / raw)
  To: dev
  Cc: Trybula, ArturX, Trahe, Fiona, Dybkowski, AdamX, Cel, TomaszX,
	akhil.goyal

Added info about socket id used by compression perf test process and by the driver

Signed-off-by: Tomasz Cel <tomaszx.cel@intel.com>
Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
---
Target 19.08 release

 app/test-compress-perf/main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app/test-compress-perf/main.c b/app/test-compress-perf/main.c
index c2a45d1..21ed12e 100644
--- a/app/test-compress-perf/main.c
+++ b/app/test-compress-perf/main.c
@@ -533,6 +533,9 @@ main(int argc, char **argv)
 	else
 		level = test_data->level.list[0];
 
+	printf("App uses socket: %u\n", rte_socket_id());
+	printf("Driver uses socket: %u\n",
+	       rte_compressdev_socket_id(test_data->cdev_id));
 	printf("Burst size = %u\n", test_data->burst_sz);
 	printf("File size = %zu\n", test_data->input_data_sz);
 
-- 
2.7.4

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

* [dpdk-dev] [PATCH] app/compress-perf: add info about socket id used by app and by the driver
  2019-04-30 17:10 ` [dpdk-dev] [PATCH] app/compress-perf: add info about socket id used by app and by the driver Trahe, Fiona
@ 2019-04-30 17:10   ` Trahe, Fiona
  2019-05-28  9:03   ` Trybula, ArturX
  1 sibling, 0 replies; 4+ messages in thread
From: Trahe, Fiona @ 2019-04-30 17:10 UTC (permalink / raw)
  To: dev
  Cc: Trybula, ArturX, Trahe, Fiona, Dybkowski, AdamX, Cel, TomaszX,
	akhil.goyal

Added info about socket id used by compression perf test process and by the driver

Signed-off-by: Tomasz Cel <tomaszx.cel@intel.com>
Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
---
Target 19.08 release

 app/test-compress-perf/main.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app/test-compress-perf/main.c b/app/test-compress-perf/main.c
index c2a45d1..21ed12e 100644
--- a/app/test-compress-perf/main.c
+++ b/app/test-compress-perf/main.c
@@ -533,6 +533,9 @@ main(int argc, char **argv)
 	else
 		level = test_data->level.list[0];
 
+	printf("App uses socket: %u\n", rte_socket_id());
+	printf("Driver uses socket: %u\n",
+	       rte_compressdev_socket_id(test_data->cdev_id));
 	printf("Burst size = %u\n", test_data->burst_sz);
 	printf("File size = %zu\n", test_data->input_data_sz);
 
-- 
2.7.4


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

* Re: [dpdk-dev] [PATCH] app/compress-perf: add info about socket id used by app and by the driver
  2019-04-30 17:10 ` [dpdk-dev] [PATCH] app/compress-perf: add info about socket id used by app and by the driver Trahe, Fiona
  2019-04-30 17:10   ` Trahe, Fiona
@ 2019-05-28  9:03   ` Trybula, ArturX
  2019-06-19 15:01     ` Akhil Goyal
  1 sibling, 1 reply; 4+ messages in thread
From: Trybula, ArturX @ 2019-05-28  9:03 UTC (permalink / raw)
  To: Trahe, Fiona, dev; +Cc: Dybkowski, AdamX, Cel, TomaszX, akhil.goyal

Added info about socket id used by compression perf test process and by the driver

Signed-off-by: Tomasz Cel <tomaszx.cel@intel.com>
Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
Acked-by: Artur Trybula < arturx.trybula@intel.com>
---

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

* Re: [dpdk-dev] [PATCH] app/compress-perf: add info about socket id used by app and by the driver
  2019-05-28  9:03   ` Trybula, ArturX
@ 2019-06-19 15:01     ` Akhil Goyal
  0 siblings, 0 replies; 4+ messages in thread
From: Akhil Goyal @ 2019-06-19 15:01 UTC (permalink / raw)
  To: Trybula, ArturX, Trahe, Fiona, dev; +Cc: Dybkowski, AdamX, Cel, TomaszX

> 
> Added info about socket id used by compression perf test process and by the
> driver
> 
> Signed-off-by: Tomasz Cel <tomaszx.cel@intel.com>
> Signed-off-by: Fiona Trahe <fiona.trahe@intel.com>
> Acked-by: Artur Trybula < arturx.trybula@intel.com>
> ---

Applied to dpdk-next-crypto

Thanks.

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

end of thread, other threads:[~2019-06-19 15:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1556634100-17286-1-git-send-email-tomaszx.cel@intel.com>
2019-04-30 17:10 ` [dpdk-dev] [PATCH] app/compress-perf: add info about socket id used by app and by the driver Trahe, Fiona
2019-04-30 17:10   ` Trahe, Fiona
2019-05-28  9:03   ` Trybula, ArturX
2019-06-19 15:01     ` Akhil Goyal

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