From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tonghao Zhang Subject: Re: [PATCH 1/2] vhost: make sure vhost fdset-thread created successfully Date: Fri, 23 Mar 2018 09:53:46 +0800 Message-ID: References: <1521722398-93353-1-git-send-email-xiangxia.m.yue@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Cc: "dev@dpdk.org" To: "Tan, Jianfeng" Return-path: Received: from mail-ot0-f196.google.com (mail-ot0-f196.google.com [74.125.82.196]) by dpdk.org (Postfix) with ESMTP id 612372B9C for ; Fri, 23 Mar 2018 02:53:47 +0100 (CET) Received: by mail-ot0-f196.google.com with SMTP id h26-v6so4227823otj.12 for ; Thu, 22 Mar 2018 18:53:47 -0700 (PDT) In-Reply-To: List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Mar 23, 2018 at 9:30 AM, Tan, Jianfeng wrote: > Hi Xiangxia, > >> -----Original Message----- >> From: xiangxia.m.yue@gmail.com [mailto:xiangxia.m.yue@gmail.com] >> Sent: Thursday, March 22, 2018 8:40 PM >> To: Tan, Jianfeng >> Cc: dev@dpdk.org; Tonghao Zhang >> Subject: [PATCH 1/2] vhost: make sure vhost fdset-thread created >> successfully >> >> From: Tonghao Zhang >> >> When first call the 'rte_vhost_driver_start', the >> fdset_event_dispatch thread should be created successfully. >> Because the vhost uses it to poll socket events for vhost >> server or clients. Without it, for example, vhost will not >> get the connection event. >> >> This patch returns err code directly when created not successful. >> >> Signed-off-by: Tonghao Zhang > > Except a nit below, > > Reviewed-by: Jianfeng Tan > >> --- >> lib/librte_vhost/socket.c | 4 +++- >> 1 file changed, 3 insertions(+), 1 deletion(-) >> >> diff --git a/lib/librte_vhost/socket.c b/lib/librte_vhost/socket.c >> index 83befdc..8ca01df 100644 >> --- a/lib/librte_vhost/socket.c >> +++ b/lib/librte_vhost/socket.c >> @@ -831,9 +831,11 @@ struct vhost_device_ops const * >> if (fdset_tid == 0) { >> int ret = pthread_create(&fdset_tid, NULL, >> fdset_event_dispatch, >> &vhost_user.fdset); >> - if (ret != 0) >> + if (ret != 0) { >> RTE_LOG(ERR, VHOST_CONFIG, >> "failed to create fdset handling thread"); >> + return ret; > > According to the declaration below, we shall return 0 or -1. I will send v2 > /** > * > * Start the vhost-user driver. > * > * This function triggers the vhost-user negotiation. > * > * @param path > * The vhost-user socket file path > * @return > * 0 on success, -1 on failure > */ > int rte_vhost_driver_start(const char *path); > >> + } >> } >> >> if (vsocket->is_server) >> -- >> 1.8.3.1 >