Message ID | 20190104040642.27463-1-tiwei.bie@intel.com (mailing list archive) |
---|---|
Headers |
Return-Path: <dev-bounces@dpdk.org> X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C39361B432; Fri, 4 Jan 2019 05:09:19 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id B28351B3F0 for <dev@dpdk.org>; Fri, 4 Jan 2019 05:09:18 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Jan 2019 20:09:17 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,437,1539673200"; d="scan'208";a="288727269" Received: from dpdk-tbie.sh.intel.com ([10.67.104.173]) by orsmga005.jf.intel.com with ESMTP; 03 Jan 2019 20:09:16 -0800 From: Tiwei Bie <tiwei.bie@intel.com> To: maxime.coquelin@redhat.com, zhihong.wang@intel.com, dev@dpdk.org Date: Fri, 4 Jan 2019 12:06:36 +0800 Message-Id: <20190104040642.27463-1-tiwei.bie@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dpdk-dev] [PATCH 0/6] Some fixes for vhost X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions <dev.dpdk.org> List-Unsubscribe: <https://mails.dpdk.org/options/dev>, <mailto:dev-request@dpdk.org?subject=unsubscribe> List-Archive: <http://mails.dpdk.org/archives/dev/> List-Post: <mailto:dev@dpdk.org> List-Help: <mailto:dev-request@dpdk.org?subject=help> List-Subscribe: <https://mails.dpdk.org/listinfo/dev>, <mailto:dev-request@dpdk.org?subject=subscribe> Errors-To: dev-bounces@dpdk.org Sender: "dev" <dev-bounces@dpdk.org> |
Series |
Some fixes for vhost
|
|
Message
Tiwei Bie
Jan. 4, 2019, 4:06 a.m. UTC
Tiwei Bie (6): vhost: fix desc access in relay helpers vhost: fix possible out of bound access in relay helpers vhost: fix possible dead loop in relay helpers vhost: fix possible out of bound access in vector filling vhost: fix possible dead loop in vector filling vhost: ensure event idx is mapped when negotiated lib/librte_vhost/vdpa.c | 55 ++++++++++++++++++++++++++++------- lib/librte_vhost/vhost_user.c | 15 ++++++---- lib/librte_vhost/virtio_net.c | 16 ++++++++++ 3 files changed, 69 insertions(+), 17 deletions(-)
Comments
On 1/4/19 5:06 AM, Tiwei Bie wrote: > Tiwei Bie (6): > vhost: fix desc access in relay helpers > vhost: fix possible out of bound access in relay helpers > vhost: fix possible dead loop in relay helpers > vhost: fix possible out of bound access in vector filling > vhost: fix possible dead loop in vector filling > vhost: ensure event idx is mapped when negotiated > > lib/librte_vhost/vdpa.c | 55 ++++++++++++++++++++++++++++------- > lib/librte_vhost/vhost_user.c | 15 ++++++---- > lib/librte_vhost/virtio_net.c | 16 ++++++++++ > 3 files changed, 69 insertions(+), 17 deletions(-) > Applied to dpdk-next-virtio Thanks, Maxime