From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 92964A32A1 for ; Thu, 24 Oct 2019 11:55:16 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 727EA1E8E0; Thu, 24 Oct 2019 11:55:15 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 167451E8C4 for ; Thu, 24 Oct 2019 11:55:14 +0200 (CEST) Received: from mail-vk1-f197.google.com (mail-vk1-f197.google.com [209.85.221.197]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 5F05737E79 for ; Thu, 24 Oct 2019 09:55:13 +0000 (UTC) Received: by mail-vk1-f197.google.com with SMTP id q187so10511330vkq.4 for ; Thu, 24 Oct 2019 02:55:13 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=+eqvKufYM2MlrtsY/yL1QYaJK2sGhBdAdLgTq7VPqSM=; b=WH4e0C5g2cCtPPZfzfFK20PdNRmZo/BKd07pFcYVkZ7Z2n7Qe7F289okT/A8hzcHxg F2homj6Q5BJyc/0e3XqydtPyPyxNGzF4YIISULb1Wi5tuS/a3H56xZoNOZKDkEJz5Nxd 8XNdhd3AbqVgPqWq4/OKQ9qdexEdbo42zKIrrYmw7gfKzfaTGsCbUxw7wWtDZHEIjQqf xX3NL73g2FDTv7lnJslw/SlAyaHWkXOnD94OHrsV2FZIYoPx/pKh8Ngar5bh+tCzQ0Di 4jfqBvVqsXtMSlLwfG2CkFwnOweQ0ZF3B5pWemcCJP1lFaw75fl/U1oA1/LSM/1HSQGv z/AQ== X-Gm-Message-State: APjAAAVT2KWlK6X2sPE0emVGpxqMq+8dzxAoP4M7jV1Ge+YjdAzmejZb fUvry9suOY0kM3AFy3aVKPcerb6wpShTTwXJPr+mbBAnbYgepQUAc2XsGYBOUwFrMAqRA2nj7iO +OoVxgDvpwktqvGP2YTQ= X-Received: by 2002:ab0:628f:: with SMTP id z15mr8034517uao.126.1571910912560; Thu, 24 Oct 2019 02:55:12 -0700 (PDT) X-Google-Smtp-Source: APXvYqy8clP5jGDEMrR7iN/oqW9WpXFHtPGigfoFmTs3C2U73lusnAWv8WDBXLD1zZ2kUjXB2qRsM0nV9abCdk1pHfU= X-Received: by 2002:ab0:628f:: with SMTP id z15mr8034505uao.126.1571910912268; Thu, 24 Oct 2019 02:55:12 -0700 (PDT) MIME-Version: 1.0 References: <20191023160154.27765-1-jin.yu@intel.com> <20191024102159.61904-1-jin.yu@intel.com> <4c486ba4-ef74-1405-a1ec-f65e67149ba6@redhat.com> In-Reply-To: <4c486ba4-ef74-1405-a1ec-f65e67149ba6@redhat.com> From: David Marchand Date: Thu, 24 Oct 2019 11:55:01 +0200 Message-ID: To: Maxime Coquelin Cc: Jin Yu , dev , changpeng.liu@intel.com, Tiwei Bie , Zhihong Wang Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2] vhost: delete vhost scsi example 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Thu, Oct 24, 2019 at 11:50 AM Maxime Coquelin wrote: > > > > On 10/24/19 12:21 PM, Jin Yu wrote: > > This example is too old and SPDK will not maintain this example > > anymore. Also SPDK has submitted a new vhost example vhost-blk. > > We will keep on maintaining vhost-blk and It shows the packed > > ring and live recovery support. > > > > Signed-off-by: Jin Yu > > --- > > V2 - delete the left trace > > --- > > MAINTAINERS | 2 - > > doc/guides/sample_app_ug/index.rst | 1 - > > doc/guides/sample_app_ug/vhost_scsi.rst | 77 ---- > > examples/Makefile | 2 +- > > examples/meson.build | 2 +- > > examples/vhost_scsi/Makefile | 69 ---- > > examples/vhost_scsi/meson.build | 21 - > > examples/vhost_scsi/scsi.c | 515 ------------------------ > > examples/vhost_scsi/scsi_spec.h | 464 --------------------- > > examples/vhost_scsi/vhost_scsi.c | 487 ---------------------- > > examples/vhost_scsi/vhost_scsi.h | 79 ---- > > 11 files changed, 2 insertions(+), 1717 deletions(-) > > delete mode 100644 doc/guides/sample_app_ug/vhost_scsi.rst > > delete mode 100644 examples/vhost_scsi/Makefile > > delete mode 100644 examples/vhost_scsi/meson.build > > delete mode 100644 examples/vhost_scsi/scsi.c > > delete mode 100644 examples/vhost_scsi/scsi_spec.h > > delete mode 100644 examples/vhost_scsi/vhost_scsi.c > > delete mode 100644 examples/vhost_scsi/vhost_scsi.h > > Reviewed-by: Maxime Coquelin Maxime, When applying, can you add a little note in the release notes to indicate this example removal ? Thanks. -- David Marchand