From patchwork Fri Aug 18 13:41:23 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 130522 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 9023A4309C; Fri, 18 Aug 2023 15:41:39 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 984FA43036; Fri, 18 Aug 2023 15:41:38 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mails.dpdk.org (Postfix) with ESMTP id 4155B43000 for ; Fri, 18 Aug 2023 15:41:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1692366096; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=l6vEvH/sSVUjTCQO+5Bbb12M9vyTIwkiSJ0XYH+vMzY=; b=QOI/iCNcCpA+2+7h9eZPwm0ZoFYeukKqVCJTUaaNVBt+dzDvBm/y0bF40j6ArljEhFOb7m e4kPk6BuyYY6Y31G0uxdXQDqNVE4S6w8D76Yn0VkxKwt7zuvp3c3lbAK31OrcsDkIkv0uU vM7V9zbYv6d5OXiFkRYe3Rp2w9ggFs4= Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-548-QYoPyR1pO1i2ayY5-cLewA-1; Fri, 18 Aug 2023 09:41:33 -0400 X-MC-Unique: QYoPyR1pO1i2ayY5-cLewA-1 Received: from smtp.corp.redhat.com (int-mx10.intmail.prod.int.rdu2.redhat.com [10.11.54.10]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id DDF713811816; Fri, 18 Aug 2023 13:41:32 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.226.19]) by smtp.corp.redhat.com (Postfix) with ESMTP id 5E589492C13; Fri, 18 Aug 2023 13:41:31 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: probb@iol.unh.edu, =?utf-8?q?Morten_Br=C3=B8rup?= , Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko Subject: [PATCH v2 1/2] ethdev: protect shared memory accesses under one lock Date: Fri, 18 Aug 2023 15:41:23 +0200 Message-ID: <20230818134124.2478945-2-david.marchand@redhat.com> In-Reply-To: <20230818134124.2478945-1-david.marchand@redhat.com> References: <20230818091321.2404089-1-david.marchand@redhat.com> <20230818134124.2478945-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.10 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org ethdev currently uses two locks to protect access around eth_dev_shared_data: - one (process local) for avoiding multiple threads to reserve/lookup the eth_dev_shared_data memzone, - one (shared with other processes) for protecting port allocation/destruction, Simplify the logic and put everything under a single lock in DPDK shared memory config. Signed-off-by: David Marchand Acked-by: Morten Brørup --- lib/eal/common/eal_common_mcfg.c | 6 +++ lib/eal/common/eal_memcfg.h | 1 + lib/eal/include/rte_eal_memconfig.h | 4 ++ lib/eal/version.map | 1 + lib/ethdev/ethdev_driver.c | 30 ++++++++------- lib/ethdev/ethdev_private.c | 9 ----- lib/ethdev/ethdev_private.h | 9 +++-- lib/ethdev/rte_ethdev.c | 60 ++++++++++++++++------------- 8 files changed, 68 insertions(+), 52 deletions(-) diff --git a/lib/eal/common/eal_common_mcfg.c b/lib/eal/common/eal_common_mcfg.c index b60d41f7b6..2a785e74c4 100644 --- a/lib/eal/common/eal_common_mcfg.c +++ b/lib/eal/common/eal_common_mcfg.c @@ -177,6 +177,12 @@ rte_mcfg_timer_unlock(void) rte_spinlock_unlock(rte_mcfg_timer_get_lock()); } +rte_spinlock_t * +rte_mcfg_ethdev_get_lock(void) +{ + return &rte_eal_get_configuration()->mem_config->ethdev_lock; +} + bool rte_mcfg_get_single_file_segments(void) { diff --git a/lib/eal/common/eal_memcfg.h b/lib/eal/common/eal_memcfg.h index 8889ba063f..d5c63e2f4d 100644 --- a/lib/eal/common/eal_memcfg.h +++ b/lib/eal/common/eal_memcfg.h @@ -37,6 +37,7 @@ struct rte_mem_config { rte_rwlock_t qlock; /**< used by tailqs for thread safety. */ rte_rwlock_t mplock; /**< used by mempool library for thread safety. */ rte_spinlock_t tlock; /**< used by timer library for thread safety. */ + rte_spinlock_t ethdev_lock; /**< used by ethdev library. */ rte_rwlock_t memory_hotplug_lock; /**< Indicates whether memory hotplug request is in progress. */ diff --git a/lib/eal/include/rte_eal_memconfig.h b/lib/eal/include/rte_eal_memconfig.h index c527f9aa29..0b1d0d4ff0 100644 --- a/lib/eal/include/rte_eal_memconfig.h +++ b/lib/eal/include/rte_eal_memconfig.h @@ -39,6 +39,10 @@ __rte_internal rte_spinlock_t * rte_mcfg_timer_get_lock(void); +__rte_internal +rte_spinlock_t * +rte_mcfg_ethdev_get_lock(void); + /** * Lock the internal EAL shared memory configuration for shared access. */ diff --git a/lib/eal/version.map b/lib/eal/version.map index 7940431e5a..0029db3c73 100644 --- a/lib/eal/version.map +++ b/lib/eal/version.map @@ -456,6 +456,7 @@ INTERNAL { rte_intr_vec_list_free; rte_intr_vec_list_index_get; rte_intr_vec_list_index_set; + rte_mcfg_ethdev_get_lock; rte_mcfg_mem_get_lock; rte_mcfg_mempool_get_lock; rte_mcfg_tailq_get_lock; diff --git a/lib/ethdev/ethdev_driver.c b/lib/ethdev/ethdev_driver.c index 0be1e8ca04..5bb9c3f97c 100644 --- a/lib/ethdev/ethdev_driver.c +++ b/lib/ethdev/ethdev_driver.c @@ -44,6 +44,7 @@ eth_dev_allocated(const char *name) static uint16_t eth_dev_find_free_port(void) + __rte_exclusive_locks_required(rte_mcfg_ethdev_get_lock()) { uint16_t i; @@ -60,6 +61,7 @@ eth_dev_find_free_port(void) static struct rte_eth_dev * eth_dev_get(uint16_t port_id) + __rte_exclusive_locks_required(rte_mcfg_ethdev_get_lock()) { struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id]; @@ -86,10 +88,10 @@ rte_eth_dev_allocate(const char *name) return NULL; } - eth_dev_shared_data_prepare(); + /* Synchronize port creation between primary and secondary processes. */ + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); - /* Synchronize port creation between primary and secondary threads. */ - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + eth_dev_shared_data_prepare(); if (eth_dev_allocated(name) != NULL) { RTE_ETHDEV_LOG(ERR, @@ -113,7 +115,7 @@ rte_eth_dev_allocate(const char *name) pthread_mutex_init(ð_dev->data->flow_ops_mutex, NULL); unlock: - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); return eth_dev; } @@ -123,13 +125,13 @@ rte_eth_dev_allocated(const char *name) { struct rte_eth_dev *ethdev; - eth_dev_shared_data_prepare(); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + eth_dev_shared_data_prepare(); ethdev = eth_dev_allocated(name); - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); return ethdev; } @@ -145,10 +147,10 @@ rte_eth_dev_attach_secondary(const char *name) uint16_t i; struct rte_eth_dev *eth_dev = NULL; - eth_dev_shared_data_prepare(); - /* Synchronize port attachment to primary port creation and release. */ - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); + + eth_dev_shared_data_prepare(); for (i = 0; i < RTE_MAX_ETHPORTS; i++) { if (strcmp(eth_dev_shared_data->data[i].name, name) == 0) @@ -163,7 +165,7 @@ rte_eth_dev_attach_secondary(const char *name) RTE_ASSERT(eth_dev->data->port_id == i); } - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); return eth_dev; } @@ -219,7 +221,9 @@ rte_eth_dev_release_port(struct rte_eth_dev *eth_dev) if (eth_dev == NULL) return -EINVAL; + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); eth_dev_shared_data_prepare(); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); if (eth_dev->state != RTE_ETH_DEV_UNUSED) rte_eth_dev_callback_process(eth_dev, @@ -227,7 +231,7 @@ rte_eth_dev_release_port(struct rte_eth_dev *eth_dev) eth_dev_fp_ops_reset(rte_eth_fp_ops + eth_dev->data->port_id); - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); eth_dev->state = RTE_ETH_DEV_UNUSED; eth_dev->device = NULL; @@ -251,7 +255,7 @@ rte_eth_dev_release_port(struct rte_eth_dev *eth_dev) memset(eth_dev->data, 0, sizeof(struct rte_eth_dev_data)); } - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); return 0; } diff --git a/lib/ethdev/ethdev_private.c b/lib/ethdev/ethdev_private.c index 14ec8c6ccf..6756625729 100644 --- a/lib/ethdev/ethdev_private.c +++ b/lib/ethdev/ethdev_private.c @@ -11,12 +11,8 @@ static const char *MZ_RTE_ETH_DEV_DATA = "rte_eth_dev_data"; -/* Shared memory between primary and secondary processes. */ struct eth_dev_shared *eth_dev_shared_data; -/* spinlock for shared data allocation */ -static rte_spinlock_t eth_dev_shared_data_lock = RTE_SPINLOCK_INITIALIZER; - /* spinlock for eth device callbacks */ rte_spinlock_t eth_dev_cb_lock = RTE_SPINLOCK_INITIALIZER; @@ -328,8 +324,6 @@ eth_dev_shared_data_prepare(void) const unsigned int flags = 0; const struct rte_memzone *mz; - rte_spinlock_lock(ð_dev_shared_data_lock); - if (eth_dev_shared_data == NULL) { if (rte_eal_process_type() == RTE_PROC_PRIMARY) { /* Allocate port data and ownership shared memory. */ @@ -345,13 +339,10 @@ eth_dev_shared_data_prepare(void) if (rte_eal_process_type() == RTE_PROC_PRIMARY) { eth_dev_shared_data->next_owner_id = RTE_ETH_DEV_NO_OWNER + 1; - rte_spinlock_init(ð_dev_shared_data->ownership_lock); memset(eth_dev_shared_data->data, 0, sizeof(eth_dev_shared_data->data)); } } - - rte_spinlock_unlock(ð_dev_shared_data_lock); } void diff --git a/lib/ethdev/ethdev_private.h b/lib/ethdev/ethdev_private.h index acb4b335c8..f7706e6a95 100644 --- a/lib/ethdev/ethdev_private.h +++ b/lib/ethdev/ethdev_private.h @@ -7,6 +7,7 @@ #include +#include #include #include @@ -14,11 +15,12 @@ struct eth_dev_shared { uint64_t next_owner_id; - rte_spinlock_t ownership_lock; struct rte_eth_dev_data data[RTE_MAX_ETHPORTS]; }; -extern struct eth_dev_shared *eth_dev_shared_data; +/* Shared memory between primary and secondary processes. */ +extern struct eth_dev_shared *eth_dev_shared_data + __rte_guarded_by(rte_mcfg_ethdev_get_lock()); /** * The user application callback description. @@ -65,7 +67,8 @@ void eth_dev_fp_ops_setup(struct rte_eth_fp_ops *fpo, const struct rte_eth_dev *dev); -void eth_dev_shared_data_prepare(void); +void eth_dev_shared_data_prepare(void) + __rte_exclusive_locks_required(rte_mcfg_ethdev_get_lock()); void eth_dev_rxq_release(struct rte_eth_dev *dev, uint16_t qid); void eth_dev_txq_release(struct rte_eth_dev *dev, uint16_t qid); diff --git a/lib/ethdev/rte_ethdev.c b/lib/ethdev/rte_ethdev.c index 0840d2b594..b91191b554 100644 --- a/lib/ethdev/rte_ethdev.c +++ b/lib/ethdev/rte_ethdev.c @@ -409,6 +409,7 @@ rte_eth_dev_is_valid_port(uint16_t port_id) static int eth_is_valid_owner_id(uint64_t owner_id) + __rte_exclusive_locks_required(rte_mcfg_ethdev_get_lock()) { if (owner_id == RTE_ETH_DEV_NO_OWNER || eth_dev_shared_data->next_owner_id <= owner_id) @@ -437,13 +438,12 @@ rte_eth_dev_owner_new(uint64_t *owner_id) return -EINVAL; } - eth_dev_shared_data_prepare(); - - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); + eth_dev_shared_data_prepare(); *owner_id = eth_dev_shared_data->next_owner_id++; - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); rte_ethdev_trace_owner_new(*owner_id); @@ -453,6 +453,7 @@ rte_eth_dev_owner_new(uint64_t *owner_id) static int eth_dev_owner_set(const uint16_t port_id, const uint64_t old_owner_id, const struct rte_eth_dev_owner *new_owner) + __rte_exclusive_locks_required(rte_mcfg_ethdev_get_lock()) { struct rte_eth_dev *ethdev = &rte_eth_devices[port_id]; struct rte_eth_dev_owner *port_owner; @@ -503,13 +504,12 @@ rte_eth_dev_owner_set(const uint16_t port_id, { int ret; - eth_dev_shared_data_prepare(); - - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); + eth_dev_shared_data_prepare(); ret = eth_dev_owner_set(port_id, RTE_ETH_DEV_NO_OWNER, owner); - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); rte_ethdev_trace_owner_set(port_id, owner, ret); @@ -523,13 +523,12 @@ rte_eth_dev_owner_unset(const uint16_t port_id, const uint64_t owner_id) {.id = RTE_ETH_DEV_NO_OWNER, .name = ""}; int ret; - eth_dev_shared_data_prepare(); - - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); + eth_dev_shared_data_prepare(); ret = eth_dev_owner_set(port_id, owner_id, &new_owner); - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); rte_ethdev_trace_owner_unset(port_id, owner_id, ret); @@ -542,10 +541,9 @@ rte_eth_dev_owner_delete(const uint64_t owner_id) uint16_t port_id; int ret = 0; - eth_dev_shared_data_prepare(); - - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); + eth_dev_shared_data_prepare(); if (eth_is_valid_owner_id(owner_id)) { for (port_id = 0; port_id < RTE_MAX_ETHPORTS; port_id++) { struct rte_eth_dev_data *data = @@ -564,7 +562,7 @@ rte_eth_dev_owner_delete(const uint64_t owner_id) ret = -EINVAL; } - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); rte_ethdev_trace_owner_delete(owner_id, ret); @@ -591,11 +589,12 @@ rte_eth_dev_owner_get(const uint16_t port_id, struct rte_eth_dev_owner *owner) return -EINVAL; } - eth_dev_shared_data_prepare(); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); - rte_spinlock_lock(ð_dev_shared_data->ownership_lock); + eth_dev_shared_data_prepare(); rte_memcpy(owner, ðdev->data->owner, sizeof(*owner)); - rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); + + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); rte_ethdev_trace_owner_get(port_id, owner); @@ -675,9 +674,12 @@ rte_eth_dev_get_name_by_port(uint16_t port_id, char *name) return -EINVAL; } + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); /* shouldn't check 'rte_eth_devices[i].data', * because it might be overwritten by VDEV PMD */ tmp = eth_dev_shared_data->data[port_id].name; + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); + strcpy(name, tmp); rte_ethdev_trace_get_name_by_port(port_id, name); @@ -688,6 +690,7 @@ rte_eth_dev_get_name_by_port(uint16_t port_id, char *name) int rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id) { + int ret = -ENODEV; uint16_t pid; if (name == NULL) { @@ -701,16 +704,19 @@ rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id) return -EINVAL; } - RTE_ETH_FOREACH_VALID_DEV(pid) - if (!strcmp(name, eth_dev_shared_data->data[pid].name)) { - *port_id = pid; - - rte_ethdev_trace_get_port_by_name(name, *port_id); + rte_spinlock_lock(rte_mcfg_ethdev_get_lock()); + RTE_ETH_FOREACH_VALID_DEV(pid) { + if (strcmp(name, eth_dev_shared_data->data[pid].name) != 0) + continue; - return 0; - } + *port_id = pid; + rte_ethdev_trace_get_port_by_name(name, *port_id); + ret = 0; + break; + } + rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); - return -ENODEV; + return ret; } int From patchwork Fri Aug 18 13:41:24 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: David Marchand X-Patchwork-Id: 130523 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 51CBA4309C; Fri, 18 Aug 2023 15:41:45 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id CFFE843255; Fri, 18 Aug 2023 15:41:41 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by mails.dpdk.org (Postfix) with ESMTP id 8676E43251 for ; Fri, 18 Aug 2023 15:41:40 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1692366100; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=pBMMHZpEhEXinaDT8WFWs6LWSipsReVXbzgo3RiarYE=; b=O1cAJR/9pVoqXuN4JEI+1W/FPcaJLrFwC2U5YiAb7KZ0m6F7T2pQdcP/6ykkYJSbAEl7YE 3K0+bmCgFHelbg2GNQtx9nHoH+K6CiE+anO7AY9ltgteAv1qKb/E8UccdMjUlhuEdcghy2 OmxfT09N7YGBKreq0oJdf6+C1rfqnoc= Received: from mimecast-mx02.redhat.com (66.187.233.73 [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-219-uZolW63BMN-vhzDcsMgS2w-1; Fri, 18 Aug 2023 09:41:36 -0400 X-MC-Unique: uZolW63BMN-vhzDcsMgS2w-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 46F193C0FC98; Fri, 18 Aug 2023 13:41:36 +0000 (UTC) Received: from dmarchan.redhat.com (unknown [10.45.226.19]) by smtp.corp.redhat.com (Postfix) with ESMTP id F06B91121314; Fri, 18 Aug 2023 13:41:34 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: probb@iol.unh.edu, =?utf-8?q?Morten_Br=C3=B8rup?= , Thomas Monjalon , Ferruh Yigit , Andrew Rybchenko , Anatoly Burakov Subject: [PATCH v2 2/2] ethdev: cleanup shared data with the last port Date: Fri, 18 Aug 2023 15:41:24 +0200 Message-ID: <20230818134124.2478945-3-david.marchand@redhat.com> In-Reply-To: <20230818134124.2478945-1-david.marchand@redhat.com> References: <20230818091321.2404089-1-david.marchand@redhat.com> <20230818134124.2478945-1-david.marchand@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 3.1 on 10.11.54.3 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org If no port is allocated, ethdev (from a primary process) can release the memzone used to store port data. This makes it possible for the DPDK memory allocator to release associated resources back to the OS. Signed-off-by: David Marchand Acked-by: Morten Brørup --- lib/ethdev/ethdev_driver.c | 7 +++++++ lib/ethdev/ethdev_private.c | 16 +++++++++++++++- lib/ethdev/ethdev_private.h | 3 +++ 3 files changed, 25 insertions(+), 1 deletion(-) diff --git a/lib/ethdev/ethdev_driver.c b/lib/ethdev/ethdev_driver.c index 5bb9c3f97c..340e448c1d 100644 --- a/lib/ethdev/ethdev_driver.c +++ b/lib/ethdev/ethdev_driver.c @@ -113,6 +113,8 @@ rte_eth_dev_allocate(const char *name) eth_dev->data->backer_port_id = RTE_MAX_ETHPORTS; eth_dev->data->mtu = RTE_ETHER_MTU; pthread_mutex_init(ð_dev->data->flow_ops_mutex, NULL); + RTE_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY); + eth_dev_shared_data->allocated_count++; unlock: rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); @@ -253,6 +255,11 @@ rte_eth_dev_release_port(struct rte_eth_dev *eth_dev) rte_free(eth_dev->data->dev_private); pthread_mutex_destroy(ð_dev->data->flow_ops_mutex); memset(eth_dev->data, 0, sizeof(struct rte_eth_dev_data)); + eth_dev->data = NULL; + + eth_dev_shared_data->allocated_count--; + if (eth_dev_shared_data->allocated_count == 0) + eth_dev_shared_data_release(); } rte_spinlock_unlock(rte_mcfg_ethdev_get_lock()); diff --git a/lib/ethdev/ethdev_private.c b/lib/ethdev/ethdev_private.c index 6756625729..6fe2e37c56 100644 --- a/lib/ethdev/ethdev_private.c +++ b/lib/ethdev/ethdev_private.c @@ -11,6 +11,7 @@ static const char *MZ_RTE_ETH_DEV_DATA = "rte_eth_dev_data"; +static const struct rte_memzone *eth_dev_shared_mz; struct eth_dev_shared *eth_dev_shared_data; /* spinlock for eth device callbacks */ @@ -324,7 +325,7 @@ eth_dev_shared_data_prepare(void) const unsigned int flags = 0; const struct rte_memzone *mz; - if (eth_dev_shared_data == NULL) { + if (eth_dev_shared_mz == NULL) { if (rte_eal_process_type() == RTE_PROC_PRIMARY) { /* Allocate port data and ownership shared memory. */ mz = rte_memzone_reserve(MZ_RTE_ETH_DEV_DATA, @@ -335,16 +336,29 @@ eth_dev_shared_data_prepare(void) if (mz == NULL) rte_panic("Cannot allocate ethdev shared data\n"); + eth_dev_shared_mz = mz; eth_dev_shared_data = mz->addr; if (rte_eal_process_type() == RTE_PROC_PRIMARY) { eth_dev_shared_data->next_owner_id = RTE_ETH_DEV_NO_OWNER + 1; + eth_dev_shared_data->allocated_count = 0; memset(eth_dev_shared_data->data, 0, sizeof(eth_dev_shared_data->data)); } } } +void +eth_dev_shared_data_release(void) +{ + RTE_ASSERT(rte_eal_process_type() == RTE_PROC_PRIMARY); + if (eth_dev_shared_mz != NULL) { + rte_memzone_free(eth_dev_shared_mz); + eth_dev_shared_mz = NULL; + eth_dev_shared_data = NULL; + } +} + void eth_dev_rxq_release(struct rte_eth_dev *dev, uint16_t qid) { diff --git a/lib/ethdev/ethdev_private.h b/lib/ethdev/ethdev_private.h index f7706e6a95..c456ba9a50 100644 --- a/lib/ethdev/ethdev_private.h +++ b/lib/ethdev/ethdev_private.h @@ -15,6 +15,7 @@ struct eth_dev_shared { uint64_t next_owner_id; + uint64_t allocated_count; struct rte_eth_dev_data data[RTE_MAX_ETHPORTS]; }; @@ -69,6 +70,8 @@ void eth_dev_fp_ops_setup(struct rte_eth_fp_ops *fpo, void eth_dev_shared_data_prepare(void) __rte_exclusive_locks_required(rte_mcfg_ethdev_get_lock()); +void eth_dev_shared_data_release(void) + __rte_exclusive_locks_required(rte_mcfg_ethdev_get_lock()); void eth_dev_rxq_release(struct rte_eth_dev *dev, uint16_t qid); void eth_dev_txq_release(struct rte_eth_dev *dev, uint16_t qid);