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 DB3E3A3295 for ; Wed, 23 Oct 2019 15:52:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A221F1C1B6; Wed, 23 Oct 2019 15:52:17 +0200 (CEST) Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 3BA671C1A5 for ; Wed, 23 Oct 2019 15:52:16 +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 96136757C8 for ; Wed, 23 Oct 2019 13:52:15 +0000 (UTC) Received: by mail-vk1-f197.google.com with SMTP id m205so6351534vke.11 for ; Wed, 23 Oct 2019 06:52:15 -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=fLbqo4OZKdfLNkcIxGEw5zW6iNDJP9J78MYB+RCJ/MQ=; b=sGmP3RinI3nKJSLIM71lqlsa9En/M2wZgHhem20SAtzGFLoaE3DSAcczJzZjwRMa06 zK+X2Uuxz60ioRqIUyGGdqGn42HwBcaaICVu2nXDdnqpMrAy6tXISm/UBp5NAypVHRZy LZdpqcdDG1detVuqbLelMOwwWdE0m9JrpWmn1ecmk+mRKuji5j2dIhlnVYlR8IZkZEnH EDediy70EVfCsW2tYhjtDYoAheRG9GUm9anXouamQ3ZlpmRyVrPv3+qlGzO1zgmNlXAt QAIWshe31BBrPoLvGJQdL8lXxa9/xgR/7TnJmQrGch0e0bMqiq2h0tKm/VtQfg/mKefG PmAA== X-Gm-Message-State: APjAAAVwGX84qo1stpQ/Gyf/uARXd7Hs0AWbhSsbRKT+w9ly5hHyeNb3 dceS6MFmd4A/ul+ucKhAijudqMqaBW/v86wnxkej+L8Vd1xHso7HyPDFLXc/x1NrlNLiMfJydD7 UGooQpBiItfpYIklPNzo= X-Received: by 2002:ab0:304e:: with SMTP id x14mr5520981ual.41.1571838734675; Wed, 23 Oct 2019 06:52:14 -0700 (PDT) X-Google-Smtp-Source: APXvYqy0ESQ7TD2Gis4Gvl0oWRkoHussH1sy40rwdGEMM3q2k1kKCpb52oPw+AaMGcbw5Qf2QdfxzOzrATtDpxKBIE8= X-Received: by 2002:ab0:304e:: with SMTP id x14mr5520965ual.41.1571838734282; Wed, 23 Oct 2019 06:52:14 -0700 (PDT) MIME-Version: 1.0 References: <20191023160154.27765-1-jin.yu@intel.com> In-Reply-To: <20191023160154.27765-1-jin.yu@intel.com> From: David Marchand Date: Wed, 23 Oct 2019 15:52:02 +0200 Message-ID: To: Jin Yu Cc: dev , changpeng.liu@intel.com, Maxime Coquelin , Tiwei Bie , Zhihong Wang Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] 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 Wed, Oct 23, 2019 at 10:20 AM 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 > --- > 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 ----- > 6 files changed, 1635 deletions(-) > 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 http://mails.dpdk.org/archives/test-report/2019-October/104036.html Did you check that there is no trace left ? A quick grep gives me: $ git grep -l vhost_scsi MAINTAINERS doc/guides/sample_app_ug/index.rst doc/guides/sample_app_ug/vhost_scsi.rst examples/Makefile examples/meson.build examples/vhost_scsi/Makefile examples/vhost_scsi/meson.build examples/vhost_scsi/scsi.c examples/vhost_scsi/vhost_scsi.c examples/vhost_scsi/vhost_scsi.h -- David Marchand