* [PATCH] mem: explicitly initialise shared locks
@ 2023-10-27 8:00 David Marchand
2023-10-27 9:33 ` fengchengwen
2024-02-01 15:36 ` David Marchand
0 siblings, 2 replies; 3+ messages in thread
From: David Marchand @ 2023-10-27 8:00 UTC (permalink / raw)
To: dev; +Cc: Thomas Monjalon
Locks in the DPDK shared memory were not initialised so far.
This is not really a problem as the early_mem_config structure is stored
in the bss section (and so set to 0 by default).
Yet, for consistency, explicitly initialise those locks with relevant
initialiser macros.
Suggested-by: Thomas Monjalon <thomas@monjalon.net>
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
lib/eal/common/eal_common_config.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/lib/eal/common/eal_common_config.c b/lib/eal/common/eal_common_config.c
index 0daf0f3188..2d6c04a49a 100644
--- a/lib/eal/common/eal_common_config.c
+++ b/lib/eal/common/eal_common_config.c
@@ -8,7 +8,14 @@
#include "eal_memcfg.h"
/* early configuration structure, when memory config is not mmapped */
-static struct rte_mem_config early_mem_config;
+static struct rte_mem_config early_mem_config = {
+ .mlock = RTE_RWLOCK_INITIALIZER,
+ .qlock = RTE_RWLOCK_INITIALIZER,
+ .mplock = RTE_RWLOCK_INITIALIZER,
+ .tlock = RTE_SPINLOCK_INITIALIZER,
+ .ethdev_lock = RTE_SPINLOCK_INITIALIZER,
+ .memory_hotplug_lock = RTE_RWLOCK_INITIALIZER,
+};
/* Address of global and public configuration */
static struct rte_config rte_config = {
--
2.41.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mem: explicitly initialise shared locks
2023-10-27 8:00 [PATCH] mem: explicitly initialise shared locks David Marchand
@ 2023-10-27 9:33 ` fengchengwen
2024-02-01 15:36 ` David Marchand
1 sibling, 0 replies; 3+ messages in thread
From: fengchengwen @ 2023-10-27 9:33 UTC (permalink / raw)
To: David Marchand, dev; +Cc: Thomas Monjalon
Acked-by: Chengwen Feng <fengchengwen@huawei.com>
On 2023/10/27 16:00, David Marchand wrote:
> Locks in the DPDK shared memory were not initialised so far.
> This is not really a problem as the early_mem_config structure is stored
> in the bss section (and so set to 0 by default).
> Yet, for consistency, explicitly initialise those locks with relevant
> initialiser macros.
>
> Suggested-by: Thomas Monjalon <thomas@monjalon.net>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> ---
> lib/eal/common/eal_common_config.c | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/lib/eal/common/eal_common_config.c b/lib/eal/common/eal_common_config.c
> index 0daf0f3188..2d6c04a49a 100644
> --- a/lib/eal/common/eal_common_config.c
> +++ b/lib/eal/common/eal_common_config.c
> @@ -8,7 +8,14 @@
> #include "eal_memcfg.h"
>
> /* early configuration structure, when memory config is not mmapped */
> -static struct rte_mem_config early_mem_config;
> +static struct rte_mem_config early_mem_config = {
> + .mlock = RTE_RWLOCK_INITIALIZER,
> + .qlock = RTE_RWLOCK_INITIALIZER,
> + .mplock = RTE_RWLOCK_INITIALIZER,
> + .tlock = RTE_SPINLOCK_INITIALIZER,
> + .ethdev_lock = RTE_SPINLOCK_INITIALIZER,
> + .memory_hotplug_lock = RTE_RWLOCK_INITIALIZER,
> +};
>
> /* Address of global and public configuration */
> static struct rte_config rte_config = {
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] mem: explicitly initialise shared locks
2023-10-27 8:00 [PATCH] mem: explicitly initialise shared locks David Marchand
2023-10-27 9:33 ` fengchengwen
@ 2024-02-01 15:36 ` David Marchand
1 sibling, 0 replies; 3+ messages in thread
From: David Marchand @ 2024-02-01 15:36 UTC (permalink / raw)
To: David Marchand; +Cc: dev, Thomas Monjalon, Chengwen Feng
On Fri, Oct 27, 2023 at 10:01 AM David Marchand
<david.marchand@redhat.com> wrote:
>
> Locks in the DPDK shared memory were not initialised so far.
> This is not really a problem as the early_mem_config structure is stored
> in the bss section (and so set to 0 by default).
> Yet, for consistency, explicitly initialise those locks with relevant
> initialiser macros.
>
> Suggested-by: Thomas Monjalon <thomas@monjalon.net>
> Signed-off-by: David Marchand <david.marchand@redhat.com>
> Acked-by: Chengwen Feng <fengchengwen@huawei.com>
Applied, thanks.
--
David Marchand
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-02-01 15:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-27 8:00 [PATCH] mem: explicitly initialise shared locks David Marchand
2023-10-27 9:33 ` fengchengwen
2024-02-01 15: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).