From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yuanhan Liu Subject: Re: [PATCH 3/6] vhost: add reconnect ability Date: Mon, 9 May 2016 11:12:54 -0700 Message-ID: <20160509181254.GE5641@yliu-dev.sh.intel.com> References: <1462603224-29510-1-git-send-email-yuanhan.liu@linux.intel.com> <1462603224-29510-4-git-send-email-yuanhan.liu@linux.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: "dev@dpdk.org" To: "Xie, Huawei" Return-path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 2E227803B for ; Mon, 9 May 2016 20:08:29 +0200 (CEST) Content-Disposition: inline In-Reply-To: List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Mon, May 09, 2016 at 04:47:02PM +0000, Xie, Huawei wrote: > On 5/7/2016 2:36 PM, Yuanhan Liu wrote: > > +static void * > > +vhost_user_client_reconnect(void *arg) > > +{ > > + struct reconnect_info *reconn = arg; > > + int ret; > > + > > + RTE_LOG(ERR, VHOST_CONFIG, "reconnecting...\n"); > > + while (1) { > > + ret = connect(reconn->fd, (struct sockaddr *)&reconn->un, > > + sizeof(reconn->un)); > > + if (ret == 0) > > + break; > > + sleep(1); > > + } > > + > > + vhost_user_add_connection(reconn->fd, reconn->vsocket); > > + free(reconn); > > + > > + return NULL; > > +} > > + > > We could create hundreds of vhost-user ports in OVS. Wihout connections > with QEMU established, those ports are just inactive. This works fine in > server mode. > With client modes, do we need to create hundreds of vhost threads? This > would be too interruptible. > How about we create only one thread and do the reconnections for all the > unconnected socket? Yes, good point and good suggestion. Will do it in v2. Thanks. --yliu