]> git.droids-corp.org - dpdk.git/commitdiff
ipc: fix return without mutex unlock
authorAnatoly Burakov <anatoly.burakov@intel.com>
Tue, 17 Apr 2018 15:46:25 +0000 (16:46 +0100)
committerThomas Monjalon <thomas@monjalon.net>
Mon, 23 Apr 2018 20:44:24 +0000 (22:44 +0200)
gettimeofday() returning a negative value is highly unlikely,
but if it ever happens, we will exit without unlocking the mutex.
Arguably at that point we'll have bigger problems, but fix this
issue anyway.

Coverity issue: 272595
Fixes: f05e26051c15 ("eal: add IPC asynchronous request")
Signed-off-by: Anatoly Burakov <anatoly.burakov@intel.com>
Acked-by: Jianfeng Tan <jianfeng.tan@intel.com>
lib/librte_eal/common/eal_common_proc.c

index 74bc30017b44767e8bc2637d4ab548d5971d67d6..ad02c00316754fef2d861cf649beabeb856552d1 100644 (file)
@@ -525,6 +525,7 @@ async_reply_handle(void *arg __rte_unused)
                wait_for_async_messages();
 
                if (gettimeofday(&now, NULL) < 0) {
+                       pthread_mutex_unlock(&pending_requests.lock);
                        RTE_LOG(ERR, EAL, "Cannot get current time\n");
                        break;
                }