From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 2E9B52C28; Tue, 14 Mar 2017 07:23:45 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1489472626; x=1521008626; h=date:from:to:cc:subject:message-id:references: mime-version:in-reply-to; bh=s+oOFx2/fCHpMNbfeCA3kT0Vwwp4CAZoDi+REIdh5QQ=; b=xj5bM8gvmTq6P3sQawso4VyzT35CVguTK2dGvYnbsQHOwPh/JdSRjMLg FLSsp8LqK0lFa1X+c1QeFIoEXTJCHg==; Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 13 Mar 2017 23:23:44 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,162,1486454400"; d="scan'208";a="75817948" Received: from yliu-dev.sh.intel.com (HELO yliu-dev) ([10.239.67.162]) by fmsmga005.fm.intel.com with ESMTP; 13 Mar 2017 23:23:43 -0700 Date: Tue, 14 Mar 2017 14:22:05 +0800 From: Yuanhan Liu To: Wenfeng Liu Cc: maxime.coquelin@redhat.com, dev@dpdk.org, stable@dpdk.org Message-ID: <20170314062205.GH18844@yliu-dev.sh.intel.com> References: <1489397601-2986-1-git-send-email-liuwf@arraynetworks.com.cn> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1489397601-2986-1-git-send-email-liuwf@arraynetworks.com.cn> User-Agent: Mutt/1.5.23 (2014-03-12) Subject: Re: [dpdk-stable] [PATCH] net/virtio-user: fix tapfds close issue X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 14 Mar 2017 06:23:46 -0000 On Mon, Mar 13, 2017 at 09:33:21AM +0000, Wenfeng Liu wrote: > The valid tap file descriptor range should be equal or greater > than zero instead of non-zero > > Fixes: e3b434818bbb ("net/virtio-user: support kernel vhost") > Cc: stable@dpdk.org Applied to dpdk-next-virtio. Thanks. --yliu > Signed-off-by: Wenfeng Liu > ---