* [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors
@ 2019-03-18 4:15 Jerin Jacob Kollanukkaran
2019-03-18 4:15 ` Jerin Jacob Kollanukkaran
2019-03-18 7:54 ` David Marchand
0 siblings, 2 replies; 6+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-03-18 4:15 UTC (permalink / raw)
To: Amr Mokhtar, Olivier Matz, Andrew Rybchenko
Cc: dev, thomas, Jerin Jacob Kollanukkaran
From: Jerin Jacob <jerinj@marvell.com>
Use eal's RTE_INIT abstraction for defining constructors.
Signed-off-by: Jerin Jacob <jerinj@marvell.com>
---
app/test-bbdev/main.h | 3 +--
app/test/resource.h | 2 +-
app/test/test.h | 3 +--
lib/librte_mempool/rte_mempool.h | 7 +++----
4 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/app/test-bbdev/main.h b/app/test-bbdev/main.h
index 20a55efca..2bbe1b822 100644
--- a/app/test-bbdev/main.h
+++ b/app/test-bbdev/main.h
@@ -103,8 +103,7 @@ void add_test_command(struct test_command *t);
.command = RTE_STR(name), \
.callback = test_func_##name, \
}; \
- static void __attribute__((constructor, used)) \
- test_register_##name(void) \
+ RTE_INIT(test_register_##name) \
{ \
add_test_command(&test_struct_##name); \
}
diff --git a/app/test/resource.h b/app/test/resource.h
index 223fa22ae..c75ebd4b5 100644
--- a/app/test/resource.h
+++ b/app/test/resource.h
@@ -98,7 +98,7 @@ static struct resource linkres_ ##n = { \
.begin = b, \
.end = e, \
}; \
-static void __attribute__((constructor, used)) resinitfn_ ##n(void) \
+RTE_INIT(resinitfn_ ##n) \
{ \
resource_register(&linkres_ ##n); \
}
diff --git a/app/test/test.h b/app/test/test.h
index 7c2443230..9b3846b1e 100644
--- a/app/test/test.h
+++ b/app/test/test.h
@@ -177,8 +177,7 @@ void add_test_command(struct test_command *t);
.command = RTE_STR(cmd), \
.callback = func, \
}; \
- static void __attribute__((constructor, used)) \
- test_register_##cmd(void) \
+ RTE_INIT(test_register_##cmd) \
{ \
add_test_command(&test_struct_##cmd); \
}
diff --git a/lib/librte_mempool/rte_mempool.h b/lib/librte_mempool/rte_mempool.h
index 7c9cd9a2f..fd19470d7 100644
--- a/lib/librte_mempool/rte_mempool.h
+++ b/lib/librte_mempool/rte_mempool.h
@@ -832,10 +832,9 @@ int rte_mempool_register_ops(const struct rte_mempool_ops *ops);
* Note that the rte_mempool_register_ops fails silently here when
* more than RTE_MEMPOOL_MAX_OPS_IDX is registered.
*/
-#define MEMPOOL_REGISTER_OPS(ops) \
- void mp_hdlr_init_##ops(void); \
- void __attribute__((constructor, used)) mp_hdlr_init_##ops(void)\
- { \
+#define MEMPOOL_REGISTER_OPS(ops) \
+ RTE_INIT(mp_hdlr_init_##ops) \
+ { \
rte_mempool_register_ops(&ops); \
}
--
2.21.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors
2019-03-18 4:15 [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors Jerin Jacob Kollanukkaran
@ 2019-03-18 4:15 ` Jerin Jacob Kollanukkaran
2019-03-18 7:54 ` David Marchand
1 sibling, 0 replies; 6+ messages in thread
From: Jerin Jacob Kollanukkaran @ 2019-03-18 4:15 UTC (permalink / raw)
To: Amr Mokhtar, Olivier Matz, Andrew Rybchenko
Cc: dev, thomas, Jerin Jacob Kollanukkaran
From: Jerin Jacob <jerinj@marvell.com>
Use eal's RTE_INIT abstraction for defining constructors.
Signed-off-by: Jerin Jacob <jerinj@marvell.com>
---
app/test-bbdev/main.h | 3 +--
app/test/resource.h | 2 +-
app/test/test.h | 3 +--
lib/librte_mempool/rte_mempool.h | 7 +++----
4 files changed, 6 insertions(+), 9 deletions(-)
diff --git a/app/test-bbdev/main.h b/app/test-bbdev/main.h
index 20a55efca..2bbe1b822 100644
--- a/app/test-bbdev/main.h
+++ b/app/test-bbdev/main.h
@@ -103,8 +103,7 @@ void add_test_command(struct test_command *t);
.command = RTE_STR(name), \
.callback = test_func_##name, \
}; \
- static void __attribute__((constructor, used)) \
- test_register_##name(void) \
+ RTE_INIT(test_register_##name) \
{ \
add_test_command(&test_struct_##name); \
}
diff --git a/app/test/resource.h b/app/test/resource.h
index 223fa22ae..c75ebd4b5 100644
--- a/app/test/resource.h
+++ b/app/test/resource.h
@@ -98,7 +98,7 @@ static struct resource linkres_ ##n = { \
.begin = b, \
.end = e, \
}; \
-static void __attribute__((constructor, used)) resinitfn_ ##n(void) \
+RTE_INIT(resinitfn_ ##n) \
{ \
resource_register(&linkres_ ##n); \
}
diff --git a/app/test/test.h b/app/test/test.h
index 7c2443230..9b3846b1e 100644
--- a/app/test/test.h
+++ b/app/test/test.h
@@ -177,8 +177,7 @@ void add_test_command(struct test_command *t);
.command = RTE_STR(cmd), \
.callback = func, \
}; \
- static void __attribute__((constructor, used)) \
- test_register_##cmd(void) \
+ RTE_INIT(test_register_##cmd) \
{ \
add_test_command(&test_struct_##cmd); \
}
diff --git a/lib/librte_mempool/rte_mempool.h b/lib/librte_mempool/rte_mempool.h
index 7c9cd9a2f..fd19470d7 100644
--- a/lib/librte_mempool/rte_mempool.h
+++ b/lib/librte_mempool/rte_mempool.h
@@ -832,10 +832,9 @@ int rte_mempool_register_ops(const struct rte_mempool_ops *ops);
* Note that the rte_mempool_register_ops fails silently here when
* more than RTE_MEMPOOL_MAX_OPS_IDX is registered.
*/
-#define MEMPOOL_REGISTER_OPS(ops) \
- void mp_hdlr_init_##ops(void); \
- void __attribute__((constructor, used)) mp_hdlr_init_##ops(void)\
- { \
+#define MEMPOOL_REGISTER_OPS(ops) \
+ RTE_INIT(mp_hdlr_init_##ops) \
+ { \
rte_mempool_register_ops(&ops); \
}
--
2.21.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors
2019-03-18 4:15 [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors Jerin Jacob Kollanukkaran
2019-03-18 4:15 ` Jerin Jacob Kollanukkaran
@ 2019-03-18 7:54 ` David Marchand
2019-03-18 7:54 ` David Marchand
2019-03-27 22:11 ` Thomas Monjalon
1 sibling, 2 replies; 6+ messages in thread
From: David Marchand @ 2019-03-18 7:54 UTC (permalink / raw)
To: Jerin Jacob Kollanukkaran
Cc: Amr Mokhtar, Olivier Matz, Andrew Rybchenko, dev, thomas
On Mon, Mar 18, 2019 at 5:16 AM Jerin Jacob Kollanukkaran <
jerinj@marvell.com> wrote:
> From: Jerin Jacob <jerinj@marvell.com>
>
> Use eal's RTE_INIT abstraction for defining constructors.
>
> Signed-off-by: Jerin Jacob <jerinj@marvell.com>
> ---
> app/test-bbdev/main.h | 3 +--
> app/test/resource.h | 2 +-
> app/test/test.h | 3 +--
> lib/librte_mempool/rte_mempool.h | 7 +++----
> 4 files changed, 6 insertions(+), 9 deletions(-)
>
> diff --git a/app/test-bbdev/main.h b/app/test-bbdev/main.h
> index 20a55efca..2bbe1b822 100644
> --- a/app/test-bbdev/main.h
> +++ b/app/test-bbdev/main.h
> @@ -103,8 +103,7 @@ void add_test_command(struct test_command *t);
> .command = RTE_STR(name), \
> .callback = test_func_##name, \
> }; \
> - static void __attribute__((constructor, used)) \
> - test_register_##name(void) \
> + RTE_INIT(test_register_##name) \
> { \
> add_test_command(&test_struct_##name); \
> }
> diff --git a/app/test/resource.h b/app/test/resource.h
> index 223fa22ae..c75ebd4b5 100644
> --- a/app/test/resource.h
> +++ b/app/test/resource.h
> @@ -98,7 +98,7 @@ static struct resource linkres_ ##n = { \
> .begin = b, \
> .end = e, \
> }; \
> -static void __attribute__((constructor, used)) resinitfn_ ##n(void) \
> +RTE_INIT(resinitfn_ ##n) \
> { \
> resource_register(&linkres_ ##n); \
> }
> diff --git a/app/test/test.h b/app/test/test.h
> index 7c2443230..9b3846b1e 100644
> --- a/app/test/test.h
> +++ b/app/test/test.h
> @@ -177,8 +177,7 @@ void add_test_command(struct test_command *t);
> .command = RTE_STR(cmd), \
> .callback = func, \
> }; \
> - static void __attribute__((constructor, used)) \
> - test_register_##cmd(void) \
> + RTE_INIT(test_register_##cmd) \
> { \
> add_test_command(&test_struct_##cmd); \
> }
> diff --git a/lib/librte_mempool/rte_mempool.h
> b/lib/librte_mempool/rte_mempool.h
> index 7c9cd9a2f..fd19470d7 100644
> --- a/lib/librte_mempool/rte_mempool.h
> +++ b/lib/librte_mempool/rte_mempool.h
> @@ -832,10 +832,9 @@ int rte_mempool_register_ops(const struct
> rte_mempool_ops *ops);
> * Note that the rte_mempool_register_ops fails silently here when
> * more than RTE_MEMPOOL_MAX_OPS_IDX is registered.
> */
> -#define MEMPOOL_REGISTER_OPS(ops) \
> - void mp_hdlr_init_##ops(void); \
> - void __attribute__((constructor, used)) mp_hdlr_init_##ops(void)\
> - { \
> +#define MEMPOOL_REGISTER_OPS(ops) \
> + RTE_INIT(mp_hdlr_init_##ops) \
> + { \
> rte_mempool_register_ops(&ops); \
> }
>
> --
> 2.21.0
>
>
Reviewed-by: David Marchand <david.marchand@redhat.com>
--
David Marchand
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors
2019-03-18 7:54 ` David Marchand
@ 2019-03-18 7:54 ` David Marchand
2019-03-27 22:11 ` Thomas Monjalon
1 sibling, 0 replies; 6+ messages in thread
From: David Marchand @ 2019-03-18 7:54 UTC (permalink / raw)
To: Jerin Jacob Kollanukkaran
Cc: Amr Mokhtar, Olivier Matz, Andrew Rybchenko, dev, thomas
On Mon, Mar 18, 2019 at 5:16 AM Jerin Jacob Kollanukkaran <
jerinj@marvell.com> wrote:
> From: Jerin Jacob <jerinj@marvell.com>
>
> Use eal's RTE_INIT abstraction for defining constructors.
>
> Signed-off-by: Jerin Jacob <jerinj@marvell.com>
> ---
> app/test-bbdev/main.h | 3 +--
> app/test/resource.h | 2 +-
> app/test/test.h | 3 +--
> lib/librte_mempool/rte_mempool.h | 7 +++----
> 4 files changed, 6 insertions(+), 9 deletions(-)
>
> diff --git a/app/test-bbdev/main.h b/app/test-bbdev/main.h
> index 20a55efca..2bbe1b822 100644
> --- a/app/test-bbdev/main.h
> +++ b/app/test-bbdev/main.h
> @@ -103,8 +103,7 @@ void add_test_command(struct test_command *t);
> .command = RTE_STR(name), \
> .callback = test_func_##name, \
> }; \
> - static void __attribute__((constructor, used)) \
> - test_register_##name(void) \
> + RTE_INIT(test_register_##name) \
> { \
> add_test_command(&test_struct_##name); \
> }
> diff --git a/app/test/resource.h b/app/test/resource.h
> index 223fa22ae..c75ebd4b5 100644
> --- a/app/test/resource.h
> +++ b/app/test/resource.h
> @@ -98,7 +98,7 @@ static struct resource linkres_ ##n = { \
> .begin = b, \
> .end = e, \
> }; \
> -static void __attribute__((constructor, used)) resinitfn_ ##n(void) \
> +RTE_INIT(resinitfn_ ##n) \
> { \
> resource_register(&linkres_ ##n); \
> }
> diff --git a/app/test/test.h b/app/test/test.h
> index 7c2443230..9b3846b1e 100644
> --- a/app/test/test.h
> +++ b/app/test/test.h
> @@ -177,8 +177,7 @@ void add_test_command(struct test_command *t);
> .command = RTE_STR(cmd), \
> .callback = func, \
> }; \
> - static void __attribute__((constructor, used)) \
> - test_register_##cmd(void) \
> + RTE_INIT(test_register_##cmd) \
> { \
> add_test_command(&test_struct_##cmd); \
> }
> diff --git a/lib/librte_mempool/rte_mempool.h
> b/lib/librte_mempool/rte_mempool.h
> index 7c9cd9a2f..fd19470d7 100644
> --- a/lib/librte_mempool/rte_mempool.h
> +++ b/lib/librte_mempool/rte_mempool.h
> @@ -832,10 +832,9 @@ int rte_mempool_register_ops(const struct
> rte_mempool_ops *ops);
> * Note that the rte_mempool_register_ops fails silently here when
> * more than RTE_MEMPOOL_MAX_OPS_IDX is registered.
> */
> -#define MEMPOOL_REGISTER_OPS(ops) \
> - void mp_hdlr_init_##ops(void); \
> - void __attribute__((constructor, used)) mp_hdlr_init_##ops(void)\
> - { \
> +#define MEMPOOL_REGISTER_OPS(ops) \
> + RTE_INIT(mp_hdlr_init_##ops) \
> + { \
> rte_mempool_register_ops(&ops); \
> }
>
> --
> 2.21.0
>
>
Reviewed-by: David Marchand <david.marchand@redhat.com>
--
David Marchand
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors
2019-03-18 7:54 ` David Marchand
2019-03-18 7:54 ` David Marchand
@ 2019-03-27 22:11 ` Thomas Monjalon
2019-03-27 22:11 ` Thomas Monjalon
1 sibling, 1 reply; 6+ messages in thread
From: Thomas Monjalon @ 2019-03-27 22:11 UTC (permalink / raw)
To: Jerin Jacob Kollanukkaran
Cc: dev, David Marchand, Amr Mokhtar, Olivier Matz, Andrew Rybchenko
> > From: Jerin Jacob <jerinj@marvell.com>
> >
> > Use eal's RTE_INIT abstraction for defining constructors.
> >
> > Signed-off-by: Jerin Jacob <jerinj@marvell.com>
> >
> Reviewed-by: David Marchand <david.marchand@redhat.com>
Applied, thanks
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors
2019-03-27 22:11 ` Thomas Monjalon
@ 2019-03-27 22:11 ` Thomas Monjalon
0 siblings, 0 replies; 6+ messages in thread
From: Thomas Monjalon @ 2019-03-27 22:11 UTC (permalink / raw)
To: Jerin Jacob Kollanukkaran
Cc: dev, David Marchand, Amr Mokhtar, Olivier Matz, Andrew Rybchenko
> > From: Jerin Jacob <jerinj@marvell.com>
> >
> > Use eal's RTE_INIT abstraction for defining constructors.
> >
> > Signed-off-by: Jerin Jacob <jerinj@marvell.com>
> >
> Reviewed-by: David Marchand <david.marchand@redhat.com>
Applied, thanks
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2019-03-27 22:11 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-18 4:15 [dpdk-dev] [PATCH] eal: use eal abstraction for defining constructors Jerin Jacob Kollanukkaran
2019-03-18 4:15 ` Jerin Jacob Kollanukkaran
2019-03-18 7:54 ` David Marchand
2019-03-18 7:54 ` David Marchand
2019-03-27 22:11 ` Thomas Monjalon
2019-03-27 22:11 ` Thomas Monjalon
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).