From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pg0-f66.google.com (mail-pg0-f66.google.com [74.125.83.66]) by dpdk.org (Postfix) with ESMTP id 21C5C2C8 for ; Fri, 7 Jul 2017 07:07:43 +0200 (CEST) Received: by mail-pg0-f66.google.com with SMTP id d193so2691202pgc.2 for ; Thu, 06 Jul 2017 22:07:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fridaylinux-org.20150623.gappssmtp.com; s=20150623; h=date:from:to:cc:subject:message-id:references:mime-version :content-disposition:in-reply-to:user-agent; bh=ogUgYrrzborC+1LlPqonMRmwcA19tvSrW3KamtuE1SA=; b=1FJoLsYCJlA6JBNPNliP+6Z9M1Dnmfu7fMnSDGtmQG0kw7K02nGbtOfGsyCG9uBySZ StI6Yjj7r5lGOnvj4Hn20f7iE4ugmsxrP/fCxzy+rutPbZktD8gEPcmgEvhmGtFoDm9h lIhrTk9i8WSylGHGJrHGVSvXXlRJL9zlJCLQZbv0AF3GeSZNgth34dMtwE4A3qHL4KO5 1qQNhq02eT19OJrWfMkghAY49tmaY6CZ6Kt/GkfVUabVf/kwo+Ep1k5Zfu+s9ezXwnW4 U/XzgFl/HvpAUBFKW678Up5phhRrGkVePLRHS4JT0yBRY/kDZOcmLsV7QFvA741P4vdQ muDw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=ogUgYrrzborC+1LlPqonMRmwcA19tvSrW3KamtuE1SA=; b=qAOS1g6IOS3KFYzk8Dg4Pi/iYa5C9PkCKGuu7CviwUsdj6gqf0EYyzyEyYLfHM1ABv qwC1dZIz6svu92nXtPeyjvDpdHaD1Z15nTHHaxevEZt9CLxc6FkeY5P/RRqSmAYiTz5w amFTWtKZr3ohQBeKiCosA6N9CcsIqe2IwNt7siYd0UYzBX4752olMRcFM/x2oxJUSe5w x0S3mPTj98f6aTngy5AcOPk3s0AOLMqYkRXqfJnyBHnRf6O7BasT0GNr2kD+hhSQd5ON 7+ZksP2W6UiGktvS9Csseo5bd5zEBGQdzASpORNwgk01v916lVfLGOpqkV5e1DLMBIRS mc1w== X-Gm-Message-State: AIVw110W50vZDBkskOpoWE8Ded36mzwKdc3qTQSLOQGc5JDot3pfkqUw Q2JTgtOoPxMVG3KLkxsLvw== X-Received: by 10.98.72.75 with SMTP id v72mr29610749pfa.67.1499404063165; Thu, 06 Jul 2017 22:07:43 -0700 (PDT) Received: from yliu-home ([45.63.61.64]) by smtp.gmail.com with ESMTPSA id h90sm3784205pfh.133.2017.07.06.22.07.40 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 06 Jul 2017 22:07:42 -0700 (PDT) Date: Fri, 7 Jul 2017 13:07:34 +0800 From: Yuanhan Liu To: Changpeng Liu Cc: dev@dpdk.org Message-ID: <20170707050734.GW11626@yliu-home> References: <1499487291-17053-1-git-send-email-changpeng.liu@intel.com> <1499491297-17800-1-git-send-email-changpeng.liu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1499491297-17800-1-git-send-email-changpeng.liu@intel.com> User-Agent: Mutt/1.5.24 (2015-08-30) Subject: Re: [dpdk-dev] [PATCH v3] examples/vhost: introduce a new vhost-user-scsi sample application 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: Fri, 07 Jul 2017 05:07:44 -0000 On Sat, Jul 08, 2017 at 01:21:37PM +0800, Changpeng Liu wrote: > vhost-user protocol is common to many virtio devices, such as > virtio_net/virtio_scsi/virtio_blk. Since DPDK vhost library > removed the NET specific data structures, the vhost library > is common to other virtio devices, such as virtio-scsi. > > Here we introduce a simple memory based block device that > can be presented to Guest VM through vhost-user-scsi-pci > controller. Similar with vhost-net, the sample application > will process the I/Os sent via virt rings. > > Signed-off-by: Changpeng Liu Applied to dpdk-next-virtio. Thanks. --yliu