From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dv-adm01.admin (ows-185-21-195-233.eu-west-1.compute.outscale.com [185.21.195.233]) by dpdk.org (Postfix) with ESMTP id 10C26952 for ; Tue, 21 Feb 2017 15:25:49 +0100 (CET) Received: from localhost.localdomain (unknown [172.19.166.138]) by dv-adm01.admin (Postfix) with ESMTP id 70D7C40319; Tue, 21 Feb 2017 14:25:49 +0000 (UTC) From: Matthias Gatto To: dev@dpdk.org Cc: Matthias Gatto , yuanhan.liu@linux.intel.com Date: Tue, 21 Feb 2017 15:25:30 +0100 Message-Id: <20170221142530.31472-1-matthias.gatto@outscale.com> X-Mailer: git-send-email 2.10.0 Subject: [dpdk-dev] [PATCH] vhost: try to shrink pfdset when fdset_add fails X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 21 Feb 2017 14:25:49 -0000 fdset_add increment pfdset->num, but fdset_del doesn't decrement pfdset->num, so if we call fdset_add then fdset_del in a loop witout calling fdset_shrink, we can easily exceed MAX_FDS with only a few number of fds used. So my solution is simply to call fdset_shrink in fdset_add when it exceed MAX_FDS. Because fdset_shrink and fdset_add locks pfdset->fd_mutex we can't call fdset_shrink inside fdset_add because that would cause a dead lock, so this patch split fdset_shrink in two, fdset_shrink amd fdset_shrink_nolock. Signed-off-by: Matthias Gatto --- lib/librte_vhost/fd_man.c | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/lib/librte_vhost/fd_man.c b/lib/librte_vhost/fd_man.c index 8a075da..c7a4490 100644 --- a/lib/librte_vhost/fd_man.c +++ b/lib/librte_vhost/fd_man.c @@ -65,17 +65,12 @@ fdset_move(struct fdset *pfdset, int dst, int src) pfdset->rwfds[dst] = pfdset->rwfds[src]; } -/* - * Find deleted fd entries and remove them - */ static void -fdset_shrink(struct fdset *pfdset) +fdset_shrink_nolock(struct fdset *pfdset) { int i; int last_valid_idx = get_last_valid_idx(pfdset, pfdset->num - 1); - pthread_mutex_lock(&pfdset->fd_mutex); - for (i = 0; i < last_valid_idx; i++) { if (pfdset->fd[i].fd != -1) continue; @@ -84,7 +79,16 @@ fdset_shrink(struct fdset *pfdset) last_valid_idx = get_last_valid_idx(pfdset, last_valid_idx - 1); } pfdset->num = last_valid_idx + 1; +} +/* + * Find deleted fd entries and remove them + */ +static void +fdset_shrink(struct fdset *pfdset) +{ + pthread_mutex_lock(&pfdset->fd_mutex); + fdset_shrink_nolock(pfdset); pthread_mutex_unlock(&pfdset->fd_mutex); } @@ -151,8 +155,12 @@ fdset_add(struct fdset *pfdset, int fd, fd_cb rcb, fd_cb wcb, void *dat) pthread_mutex_lock(&pfdset->fd_mutex); i = pfdset->num < MAX_FDS ? pfdset->num++ : -1; if (i == -1) { - pthread_mutex_unlock(&pfdset->fd_mutex); - return -2; + fdset_shrink_nolock(pfdset); + i = pfdset->num < MAX_FDS ? pfdset->num++ : -1; + if (i == -1) { + pthread_mutex_unlock(&pfdset->fd_mutex); + return -2; + } } fdset_add_fd(pfdset, i, fd, rcb, wcb, dat); -- 2.10.0