DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] eal: make eal_parse_coremask external
@ 2022-08-19 22:33 Timothy McDaniel
  2022-08-20 10:00 ` Dmitry Kozlyuk
  2022-09-15  3:39 ` Abdullah Sevincer
  0 siblings, 2 replies; 4+ messages in thread
From: Timothy McDaniel @ 2022-08-19 22:33 UTC (permalink / raw)
  To: jerinj; +Cc: bruce.richardson, mdr, thomas, dev

DLB2 has a need to parse a user supplied coremask as part
of an optimization that associates optimal core/resource
pairs.  Therefore eal_parse_coremask has been renamed
to rte_eal_parse_coremask and exported.

Signed-off-by: Timothy McDaniel <timothy.mcdaniel@intel.com>
---
 lib/eal/common/eal_common_options.c | 6 +++---
 lib/eal/common/eal_options.h        | 2 ++
 lib/eal/version.map                 | 3 +++
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/lib/eal/common/eal_common_options.c b/lib/eal/common/eal_common_options.c
index 4c2def0155..2d6535781b 100644
--- a/lib/eal/common/eal_common_options.c
+++ b/lib/eal/common/eal_common_options.c
@@ -742,8 +742,8 @@ check_core_list(int *lcores, unsigned int count)
 	return -1;
 }
 
-static int
-eal_parse_coremask(const char *coremask, int *cores)
+int
+rte_eal_parse_coremask(const char *coremask, int *cores)
 {
 	const char *coremask_orig = coremask;
 	int lcores[RTE_MAX_LCORE];
@@ -1649,7 +1649,7 @@ eal_parse_common_option(int opt, const char *optarg,
 		if (eal_service_cores_parsed())
 			RTE_LOG(WARNING, EAL,
 				"Service cores parsed before dataplane cores. Please ensure -c is before -s or -S\n");
-		if (eal_parse_coremask(optarg, lcore_indexes) < 0) {
+		if (rte_eal_parse_coremask(optarg, lcore_indexes) < 0) {
 			RTE_LOG(ERR, EAL, "invalid coremask syntax\n");
 			return -1;
 		}
diff --git a/lib/eal/common/eal_options.h b/lib/eal/common/eal_options.h
index 3cc9cb6412..21df6886f8 100644
--- a/lib/eal/common/eal_options.h
+++ b/lib/eal/common/eal_options.h
@@ -108,5 +108,7 @@ int eal_plugins_init(void);
 int eal_save_args(int argc, char **argv);
 int handle_eal_info_request(const char *cmd, const char *params __rte_unused,
 		struct rte_tel_data *d);
+__rte_experimental
+int rte_eal_parse_coremask(const char *coremask, int *cores);
 
 #endif /* EAL_OPTIONS_H */
diff --git a/lib/eal/version.map b/lib/eal/version.map
index 1f293e768b..3780853443 100644
--- a/lib/eal/version.map
+++ b/lib/eal/version.map
@@ -424,6 +424,9 @@ EXPERIMENTAL {
 	rte_thread_self;
 	rte_thread_set_affinity_by_id;
 	rte_thread_set_priority;
+
+	#added in 22.11
+	rte_eal_parse_coremask;
 };
 
 INTERNAL {
-- 
2.25.1


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

* Re: [PATCH] eal: make eal_parse_coremask external
  2022-08-19 22:33 [PATCH] eal: make eal_parse_coremask external Timothy McDaniel
@ 2022-08-20 10:00 ` Dmitry Kozlyuk
  2022-09-15  3:39 ` Abdullah Sevincer
  1 sibling, 0 replies; 4+ messages in thread
From: Dmitry Kozlyuk @ 2022-08-20 10:00 UTC (permalink / raw)
  To: Timothy McDaniel; +Cc: jerinj, bruce.richardson, mdr, thomas, dev

2022-08-19 17:33 (UTC-0500), Timothy McDaniel:
> DLB2 has a need to parse a user supplied coremask as part
> of an optimization that associates optimal core/resource
> pairs.  Therefore eal_parse_coremask has been renamed
> to rte_eal_parse_coremask and exported.

INTERNAL would be sufficient since the function is only used within DPDK.
EXPERIMENTAL is for symbols that would be used by consumer apps.

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

* [PATCH] eal: make eal_parse_coremask external
  2022-08-19 22:33 [PATCH] eal: make eal_parse_coremask external Timothy McDaniel
  2022-08-20 10:00 ` Dmitry Kozlyuk
@ 2022-09-15  3:39 ` Abdullah Sevincer
  2022-09-23 10:36   ` David Marchand
  1 sibling, 1 reply; 4+ messages in thread
From: Abdullah Sevincer @ 2022-09-15  3:39 UTC (permalink / raw)
  To: dev; +Cc: Abdullah Sevincer

DLB2 has a need to parse a user supplied coremask as part
of an optimization that associates optimal core/resource
pairs.  Therefore eal_parse_coremask has been renamed
to rte_eal_parse_coremask and exported.

Signed-off-by: Abdullah Sevincer <abdullah.sevincer@intel.com>
---
 lib/eal/common/eal_common_options.c | 6 +++---
 lib/eal/common/eal_options.h        | 2 ++
 lib/eal/version.map                 | 1 +
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/lib/eal/common/eal_common_options.c b/lib/eal/common/eal_common_options.c
index 4c2def0155..2d6535781b 100644
--- a/lib/eal/common/eal_common_options.c
+++ b/lib/eal/common/eal_common_options.c
@@ -742,8 +742,8 @@ check_core_list(int *lcores, unsigned int count)
 	return -1;
 }
 
-static int
-eal_parse_coremask(const char *coremask, int *cores)
+int
+rte_eal_parse_coremask(const char *coremask, int *cores)
 {
 	const char *coremask_orig = coremask;
 	int lcores[RTE_MAX_LCORE];
@@ -1649,7 +1649,7 @@ eal_parse_common_option(int opt, const char *optarg,
 		if (eal_service_cores_parsed())
 			RTE_LOG(WARNING, EAL,
 				"Service cores parsed before dataplane cores. Please ensure -c is before -s or -S\n");
-		if (eal_parse_coremask(optarg, lcore_indexes) < 0) {
+		if (rte_eal_parse_coremask(optarg, lcore_indexes) < 0) {
 			RTE_LOG(ERR, EAL, "invalid coremask syntax\n");
 			return -1;
 		}
diff --git a/lib/eal/common/eal_options.h b/lib/eal/common/eal_options.h
index 3cc9cb6412..0cfb57cd1f 100644
--- a/lib/eal/common/eal_options.h
+++ b/lib/eal/common/eal_options.h
@@ -108,5 +108,7 @@ int eal_plugins_init(void);
 int eal_save_args(int argc, char **argv);
 int handle_eal_info_request(const char *cmd, const char *params __rte_unused,
 		struct rte_tel_data *d);
+__rte_internal
+int rte_eal_parse_coremask(const char *coremask, int *cores);
 
 #endif /* EAL_OPTIONS_H */
diff --git a/lib/eal/version.map b/lib/eal/version.map
index 1f293e768b..c643bc1612 100644
--- a/lib/eal/version.map
+++ b/lib/eal/version.map
@@ -464,4 +464,5 @@ INTERNAL {
 	rte_mem_map;
 	rte_mem_page_size;
 	rte_mem_unmap;
+	rte_eal_parse_coremask;
 };
-- 
2.25.1


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

* Re: [PATCH] eal: make eal_parse_coremask external
  2022-09-15  3:39 ` Abdullah Sevincer
@ 2022-09-23 10:36   ` David Marchand
  0 siblings, 0 replies; 4+ messages in thread
From: David Marchand @ 2022-09-23 10:36 UTC (permalink / raw)
  To: Abdullah Sevincer; +Cc: dev, Jerin Jacob Kollanukkaran, Timothy McDaniel

Hello Abdullah,

On Thu, Sep 15, 2022 at 5:39 AM Abdullah Sevincer
<abdullah.sevincer@intel.com> wrote:
>
> DLB2 has a need to parse a user supplied coremask as part
> of an optimization that associates optimal core/resource
> pairs.  Therefore eal_parse_coremask has been renamed
> to rte_eal_parse_coremask and exported.

Please version new revisions of a patch for your next contributions.


>
> Signed-off-by: Abdullah Sevincer <abdullah.sevincer@intel.com>
> ---
>  lib/eal/common/eal_common_options.c | 6 +++---
>  lib/eal/common/eal_options.h        | 2 ++
>  lib/eal/version.map                 | 1 +
>  3 files changed, 6 insertions(+), 3 deletions(-)
>
> diff --git a/lib/eal/common/eal_common_options.c b/lib/eal/common/eal_common_options.c
> index 4c2def0155..2d6535781b 100644
> --- a/lib/eal/common/eal_common_options.c
> +++ b/lib/eal/common/eal_common_options.c
> @@ -742,8 +742,8 @@ check_core_list(int *lcores, unsigned int count)
>         return -1;
>  }
>
> -static int
> -eal_parse_coremask(const char *coremask, int *cores)
> +int
> +rte_eal_parse_coremask(const char *coremask, int *cores)
>  {
>         const char *coremask_orig = coremask;
>         int lcores[RTE_MAX_LCORE];
> @@ -1649,7 +1649,7 @@ eal_parse_common_option(int opt, const char *optarg,
>                 if (eal_service_cores_parsed())
>                         RTE_LOG(WARNING, EAL,
>                                 "Service cores parsed before dataplane cores. Please ensure -c is before -s or -S\n");
> -               if (eal_parse_coremask(optarg, lcore_indexes) < 0) {
> +               if (rte_eal_parse_coremask(optarg, lcore_indexes) < 0) {
>                         RTE_LOG(ERR, EAL, "invalid coremask syntax\n");
>                         return -1;
>                 }
> diff --git a/lib/eal/common/eal_options.h b/lib/eal/common/eal_options.h
> index 3cc9cb6412..0cfb57cd1f 100644
> --- a/lib/eal/common/eal_options.h
> +++ b/lib/eal/common/eal_options.h
> @@ -108,5 +108,7 @@ int eal_plugins_init(void);
>  int eal_save_args(int argc, char **argv);
>  int handle_eal_info_request(const char *cmd, const char *params __rte_unused,
>                 struct rte_tel_data *d);
> +__rte_internal
> +int rte_eal_parse_coremask(const char *coremask, int *cores);

I moved this to rte_eal.h and added a (doxygen) description of what
this helper does.

>
>  #endif /* EAL_OPTIONS_H */
> diff --git a/lib/eal/version.map b/lib/eal/version.map
> index 1f293e768b..c643bc1612 100644
> --- a/lib/eal/version.map
> +++ b/lib/eal/version.map
> @@ -464,4 +464,5 @@ INTERNAL {
>         rte_mem_map;
>         rte_mem_page_size;
>         rte_mem_unmap;
> +       rte_eal_parse_coremask;

Fixed to alphabetical order.


Applied, thanks.


-- 
David Marchand


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

end of thread, other threads:[~2022-09-23 10:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-19 22:33 [PATCH] eal: make eal_parse_coremask external Timothy McDaniel
2022-08-20 10:00 ` Dmitry Kozlyuk
2022-09-15  3:39 ` Abdullah Sevincer
2022-09-23 10:36   ` 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).