nvme: add mutex to nvme_driver_init
This will allow spdk_nvme_probe and variants to be
called from multiple threads in parallel.
Signed-off-by: Jim Harris <james.r.harris@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2680 (master)
(cherry picked from commit 18f79f2449
)
Change-Id: I534db605c9e192b943afe973981b7b503d8b7e34
Signed-off-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/2695
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Ben Walker <benjamin.walker@intel.com>
This commit is contained in:
parent
8bfa974cc2
commit
239eae6000
@ -350,10 +350,19 @@ nvme_robust_mutex_init_shared(pthread_mutex_t *mtx)
|
||||
int
|
||||
nvme_driver_init(void)
|
||||
{
|
||||
static pthread_mutex_t g_init_mutex = PTHREAD_MUTEX_INITIALIZER;
|
||||
int ret = 0;
|
||||
/* Any socket ID */
|
||||
int socket_id = -1;
|
||||
|
||||
/* Use a special process-private mutex to ensure the global
|
||||
* nvme driver object (g_spdk_nvme_driver) gets initialized by
|
||||
* only one thread. Once that object is established and its
|
||||
* mutex is initialized, we can unlock this mutex and use that
|
||||
* one instead.
|
||||
*/
|
||||
pthread_mutex_lock(&g_init_mutex);
|
||||
|
||||
/* Each process needs its own pid. */
|
||||
g_spdk_nvme_pid = getpid();
|
||||
|
||||
@ -366,6 +375,7 @@ nvme_driver_init(void)
|
||||
if (spdk_process_is_primary()) {
|
||||
/* The unique named memzone already reserved. */
|
||||
if (g_spdk_nvme_driver != NULL) {
|
||||
pthread_mutex_unlock(&g_init_mutex);
|
||||
return 0;
|
||||
} else {
|
||||
g_spdk_nvme_driver = spdk_memzone_reserve(SPDK_NVME_DRIVER_NAME,
|
||||
@ -375,7 +385,7 @@ nvme_driver_init(void)
|
||||
|
||||
if (g_spdk_nvme_driver == NULL) {
|
||||
SPDK_ERRLOG("primary process failed to reserve memory\n");
|
||||
|
||||
pthread_mutex_unlock(&g_init_mutex);
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
@ -393,15 +403,16 @@ nvme_driver_init(void)
|
||||
}
|
||||
if (g_spdk_nvme_driver->initialized == false) {
|
||||
SPDK_ERRLOG("timeout waiting for primary process to init\n");
|
||||
|
||||
pthread_mutex_unlock(&g_init_mutex);
|
||||
return -1;
|
||||
}
|
||||
} else {
|
||||
SPDK_ERRLOG("primary process is not started yet\n");
|
||||
|
||||
pthread_mutex_unlock(&g_init_mutex);
|
||||
return -1;
|
||||
}
|
||||
|
||||
pthread_mutex_unlock(&g_init_mutex);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -415,9 +426,14 @@ nvme_driver_init(void)
|
||||
if (ret != 0) {
|
||||
SPDK_ERRLOG("failed to initialize mutex\n");
|
||||
spdk_memzone_free(SPDK_NVME_DRIVER_NAME);
|
||||
pthread_mutex_unlock(&g_init_mutex);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* The lock in the shared g_spdk_nvme_driver object is now ready to
|
||||
* be used - so we can unlock the g_init_mutex here.
|
||||
*/
|
||||
pthread_mutex_unlock(&g_init_mutex);
|
||||
nvme_robust_mutex_lock(&g_spdk_nvme_driver->lock);
|
||||
|
||||
g_spdk_nvme_driver->initialized = false;
|
||||
|
Loading…
Reference in New Issue
Block a user