From: Wenchao Xia <xiawenc@linux.vnet.ibm.com>
To: Asias He <asias@redhat.com>
Cc: Libaiqing <libaiqing@huawei.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"nab@linux-iscsi.org" <nab@linux-iscsi.org>,
Haofeng <haofeng@huawei.com>, Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH 6/9] vhost-scsi: new device supporting the tcm_vhost Linux kernel module
Date: Thu, 20 Jun 2013 11:22:11 +0800 [thread overview]
Message-ID: <51C27563.2010907@linux.vnet.ibm.com> (raw)
In-Reply-To: <20130620013348.GA9802@hj.localdomain>
于 2013-6-20 9:33, Asias He 写道:
> On Wed, Jun 19, 2013 at 12:55:10PM +0000, Libaiqing wrote:
>> Hi paolo,
>> The vhost-scsi device can be used as boot device?
>> I tested with your config + 3.10 rc6 + seabios 1.7.2.2,but failed.
>> Could you give me some advise to debug this problem ? I can provide more information if need.
>
> Boot from vhost-scsi is supposed to work. The seabios you used should be
> fine which contains the fixes for vhost-scsi.
>
> Instead of playing with the /sys/kernel/config/target directly, I really
> recommend using targetcli utils.
>
> Nab, I think we really should write some docs for people to use
> vhost-scsi.
A section in qemu-options.hx would be great, currently an example is
good enough to me.
>
> This is how I install and use targetcli in RHEL6. Note you need upstream
> kernel and qemu bits for vhost-scsi.
>
> # yum groupinstall 'Development tools'
> # yum install python-devel epydoc python-simpleparse
>
> # git clone git://github.com/agrover/rtslib-fb.git
> # git clone git://github.com/agrover/targetcli-fb.git
> # git clone git://github.com/agrover/configshell-fb.git
> # for i in rtslib-fb configshell-fb targetcli-fb; do
> make -C $i rpm
> yum localinstall $i/dist/*.noarch.rpm
> done
>
> In targetcli, create a backstore and vhost wwpn, e.g.
> # targetcli
> /> /backstores/ramdisk create r0 1g
> /> /vhost create
> /> cd /vhost/naa.500140527cb6616b/tpg1/luns
> /> create /backstores/ramdisk/r0
>
> # qemu -device vhost-scsi-pci,wwpn=naa.500140527cb6616b ...
>
> Hope this helps.
>
>> Regards,
>> baiqing
>>
>>> -----Original Message-----
>>> From: qemu-devel-bounces+libaiqing=huawei.com@nongnu.org
>>> [mailto:qemu-devel-bounces+libaiqing=huawei.com@nongnu.org] On
>>> Behalf Of Paolo Bonzini
>>> Sent: Tuesday, May 28, 2013 4:01 PM
>>> To: Wenchao Xia
>>> Cc: asias@redhat.com; qemu-devel@nongnu.org; nab@linux-iscsi.org;
>>> Michael S. Tsirkin
>>> Subject: Re: [Qemu-devel] [PATCH 6/9] vhost-scsi: new device supporting the
>>> tcm_vhost Linux kernel module
>>>
>>> Il 28/05/2013 09:13, Wenchao Xia ha scritto:
>>>>>> From: Nicholas Bellinger <nab@linux-iscsi.org>
>>>>>>
>>>>>> The WWPN specified in configfs is passed to "-device vhost-scsi-pci".
>>>>>> The tgpt field of the SET_ENDPOINT ioctl is obsolete now, so it is not
>>>>>> available from the QEMU command-line. Instead, I hardcode it to
>>> zero.
>>>>>>
>>>> Hi, Paolo
>>>> Any document about how to config it correctly in configfs, before
>>>> invoking qemu with the WWPN number?
>>>
>>> Unfortunately no, but vhost-scsi doesn't have many knobs (unlike
>>> iSCSI for example) so it's quite simple. Here is an example:
>>>
>>> cd /sys/kernel/config/target
>>> mkdir -p core/fileio_0/fileio
>>> echo 'fd_dev_name=/home/pbonzini/test.img,fd_dev_size=5905580032' >
>>> core/fileio_0/fileio/control
>>> echo 1 > core/fileio_0/fileio/enable
>>> mkdir -p vhost/naa.600140554cf3a18e/tpgt_0/lun/lun_0
>>> cd vhost/naa.600140554cf3a18e/tpgt_0
>>> ln -sf ../../../../../core/fileio_0/fileio/ lun/lun_0/virtual_scsi_port
>>> echo naa.60014053226f0388 > nexus
>>>
>>> The "nexus" value is the initiator WWN. naa.600140554cf3a18e is the
>>> target WWN that you have to pass to "-device vhost-scsi-pci".
>>>
>>> Paolo
>>
>
--
Best Regards
Wenchao Xia
next prev parent reply other threads:[~2013-06-20 3:23 UTC|newest]
Thread overview: 56+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-19 14:24 [Qemu-devel] [PULL 0/9] SCSI updates for 2013-04-13 Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 1/9] scsi: avoid assertion failure on VERIFY command Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 2/9] scsi: VMWare PVSCSI paravirtual device implementation Paolo Bonzini
2013-06-21 3:47 ` Libaiqing
2013-06-21 7:36 ` Paolo Bonzini
2013-06-21 11:44 ` Dmitry Fleytman
2013-06-21 12:00 ` Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 3/9] vhost: Add vhost_commit callback for SeaBIOS ROM region re-mapping Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 4/9] virtio-scsi: create VirtIOSCSICommon Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 5/9] virtio: simplify Makefile conditionals Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 6/9] vhost-scsi: new device supporting the tcm_vhost Linux kernel module Paolo Bonzini
2013-05-28 7:13 ` Wenchao Xia
2013-05-28 8:01 ` Paolo Bonzini
2013-05-28 8:33 ` Asias He
2013-05-28 9:00 ` Wenchao Xia
2013-05-29 9:05 ` Wenchao Xia
2013-05-29 9:27 ` Asias He
2013-05-29 15:10 ` Badari Pulavarty
2013-05-29 22:17 ` Asias He
2013-05-30 4:29 ` Nicholas A. Bellinger
2013-05-30 5:36 ` Nicholas A. Bellinger
2013-05-30 18:00 ` Badari Pulavarty
2013-06-06 22:53 ` [Qemu-devel] vhost-scsi and pscsi Badari
2013-05-30 2:09 ` [Qemu-devel] [PATCH 6/9] vhost-scsi: new device supporting the tcm_vhost Linux kernel module Wenchao Xia
2013-06-19 12:55 ` Libaiqing
2013-06-20 1:33 ` Asias He
2013-06-20 3:22 ` Wenchao Xia [this message]
2013-06-20 8:49 ` Libaiqing
2013-06-20 9:38 ` Asias He
2013-06-21 10:16 ` Libaiqing
2013-07-03 3:08 ` Libaiqing
2013-07-03 3:18 ` Asias He
2013-07-03 3:23 ` Asias He
2013-07-03 8:08 ` Asias He
2013-07-03 12:33 ` Libaiqing
2013-07-04 11:23 ` Paolo Bonzini
2013-07-08 0:59 ` Libaiqing
2013-07-04 7:00 ` Libaiqing
2013-07-05 0:00 ` Asias He
2013-07-05 6:52 ` Asias He
2013-07-05 11:17 ` Vadim Rozenfeld
2013-07-10 1:50 ` Asias He
2013-04-19 14:24 ` [Qemu-devel] [PATCH 7/9] vhost-scsi-pci: " Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 8/9] vhost-scsi-ccw: " Paolo Bonzini
2013-04-19 14:24 ` [Qemu-devel] [PATCH 9/9] vhost-scsi-s390: " Paolo Bonzini
2013-04-23 23:17 ` [Qemu-devel] [PULL 0/9] SCSI updates for 2013-04-13 Nicholas A. Bellinger
2013-04-24 5:59 ` [Qemu-devel] seabios for qemu 1.5 Gerd Hoffmann
2013-04-24 6:11 ` Amos Kong
2013-05-16 4:46 ` Amos Kong
2013-05-27 6:17 ` Gerd Hoffmann
2013-04-30 16:01 ` Paolo Bonzini
2013-04-24 4:56 ` [Qemu-devel] [PULL 0/9] SCSI updates for 2013-04-13 Stefan Weil
2013-04-24 8:19 ` Paolo Bonzini
2013-04-24 16:56 ` Stefan Weil
2013-04-26 8:40 ` Paolo Bonzini
2013-06-17 21:18 ` Anthony Liguori
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=51C27563.2010907@linux.vnet.ibm.com \
--to=xiawenc@linux.vnet.ibm.com \
--cc=asias@redhat.com \
--cc=haofeng@huawei.com \
--cc=libaiqing@huawei.com \
--cc=mst@redhat.com \
--cc=nab@linux-iscsi.org \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).