All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hannes Reinecke <hare@suse.de>
To: kvm@vger.kernel.org
Cc: virtualization@lists.linux-foundation.org, qemu-devel@nongnu.org
Subject: [PATCH 0/4] megaraid_sas HBA emulation
Date: Tue, 27 Oct 2009 16:26:14 +0100	[thread overview]
Message-ID: <4AE71116.6080809@suse.de> (raw)

Hi all,

this patchset implements an emulation for the megaraid_sas HBA.
It provides emulates an LSI MegaRAID SAS 8708EM2 HBA, ie
presenting to the guest a virtual SCSI adapter.
Internally it is using aio for read/write requests and
either SG_IO or SCSI command emulation for everything else.

The reason for choosing the megaraid_sas HBA and not, say,
implementing a virtio scsi interface is because:
- the megaraid_sas is using a very simple firmware interface,
  comparable to virtio
- the HBA driver are already existent, so I only have to
  write the backend :-)

The device can be accessed by

-drive if=raid,file=XXX

In order to support SCSI command emulation I had to update /
patch up the existing SCSI disk support. This might be
not to everyones taste, so I'm open to alternative
suggestions.

But I certainly do _not_ want to update the SCSI disk
emulation, as this is really quite tied to the SCSI parallel
interface used by the old lsi53c895a.c.
Plus it doesn't do scatter-gather list handling, which
is quite impossible to fix without proper documentation.

Of course, if anyone else would step in here, I won't object :-)

It currently runs guests with 2.6.27 and up; Windows XP
support is not quite there yet. Anything else might work;
if not, enable debugging and sent me the logfile.

As usual, comment / suggestions  etc welcome.

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		      zSeries & Storage
hare@suse.de			      +49 911 74053 688
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: Markus Rex, HRB 16746 (AG Nürnberg)

WARNING: multiple messages have this Message-ID (diff)
From: Hannes Reinecke <hare@suse.de>
To: kvm@vger.kernel.org
Cc: qemu-devel@nongnu.org, virtualization@lists.linux-foundation.org
Subject: [Qemu-devel] [PATCH 0/4] megaraid_sas HBA emulation
Date: Tue, 27 Oct 2009 16:26:14 +0100	[thread overview]
Message-ID: <4AE71116.6080809@suse.de> (raw)

Hi all,

this patchset implements an emulation for the megaraid_sas HBA.
It provides emulates an LSI MegaRAID SAS 8708EM2 HBA, ie
presenting to the guest a virtual SCSI adapter.
Internally it is using aio for read/write requests and
either SG_IO or SCSI command emulation for everything else.

The reason for choosing the megaraid_sas HBA and not, say,
implementing a virtio scsi interface is because:
- the megaraid_sas is using a very simple firmware interface,
  comparable to virtio
- the HBA driver are already existent, so I only have to
  write the backend :-)

The device can be accessed by

-drive if=raid,file=XXX

In order to support SCSI command emulation I had to update /
patch up the existing SCSI disk support. This might be
not to everyones taste, so I'm open to alternative
suggestions.

But I certainly do _not_ want to update the SCSI disk
emulation, as this is really quite tied to the SCSI parallel
interface used by the old lsi53c895a.c.
Plus it doesn't do scatter-gather list handling, which
is quite impossible to fix without proper documentation.

Of course, if anyone else would step in here, I won't object :-)

It currently runs guests with 2.6.27 and up; Windows XP
support is not quite there yet. Anything else might work;
if not, enable debugging and sent me the logfile.

As usual, comment / suggestions  etc welcome.

Cheers,

Hannes
-- 
Dr. Hannes Reinecke		      zSeries & Storage
hare@suse.de			      +49 911 74053 688
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: Markus Rex, HRB 16746 (AG Nürnberg)

             reply	other threads:[~2009-10-27 15:26 UTC|newest]

Thread overview: 54+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-10-27 15:26 Hannes Reinecke [this message]
2009-10-27 15:26 ` [Qemu-devel] [PATCH 0/4] megaraid_sas HBA emulation Hannes Reinecke
2009-10-27 16:47 ` Gerd Hoffmann
2009-10-27 16:47   ` Gerd Hoffmann
2009-10-28  8:11   ` Hannes Reinecke
2009-10-28  8:11     ` Hannes Reinecke
2009-10-28  8:20     ` Avi Kivity
2009-10-28  8:20       ` Avi Kivity
2009-10-28  8:20     ` Avi Kivity
2009-10-28  8:40     ` Christoph Hellwig
2009-10-28  8:40       ` Christoph Hellwig
2009-10-28  8:40     ` Christoph Hellwig
2009-10-28 10:54     ` Gerd Hoffmann
2009-10-28 10:54     ` Gerd Hoffmann
2009-10-28 10:54       ` Gerd Hoffmann
2009-10-28 13:58       ` Gerd Hoffmann
2009-10-28 13:58       ` Gerd Hoffmann
2009-10-28 19:25         ` Hannes Reinecke
2009-10-29  4:37           ` Christoph Hellwig
2009-10-29  4:37             ` Christoph Hellwig
2009-10-29  8:47             ` Gerd Hoffmann
2009-10-29  8:47             ` Gerd Hoffmann
2009-10-29  8:47               ` Gerd Hoffmann
2009-10-29 12:57             ` Gerd Hoffmann
2009-10-29 12:57               ` Gerd Hoffmann
2009-10-29 14:57               ` Christoph Hellwig
2009-10-29 14:57                 ` Christoph Hellwig
2009-10-29 15:14                 ` Anthony Liguori
2009-10-29 15:14                   ` Anthony Liguori
2009-10-29 15:15                   ` Christoph Hellwig
2009-10-29 15:15                     ` Christoph Hellwig
2009-10-29 15:25                     ` Anthony Liguori
2009-10-29 15:25                       ` Anthony Liguori
2009-10-30  8:55                       ` Gerd Hoffmann
2009-10-30  8:55                       ` Gerd Hoffmann
2009-10-30  8:55                         ` Gerd Hoffmann
2009-10-29 15:25                     ` Anthony Liguori
2009-10-29 15:15                   ` Christoph Hellwig
2009-10-29 15:14                 ` Anthony Liguori
2009-10-29 14:57               ` Christoph Hellwig
2009-10-30  8:12               ` Hannes Reinecke
2009-10-30  8:12                 ` Hannes Reinecke
2009-11-03 21:03                 ` Gerd Hoffmann
2009-11-03 21:03                 ` Gerd Hoffmann
2009-11-03 21:03                   ` Gerd Hoffmann
2009-10-30  8:12               ` Hannes Reinecke
2009-10-29 12:57             ` Gerd Hoffmann
2009-10-29  4:37           ` Christoph Hellwig
2009-10-28 19:25         ` Hannes Reinecke
2009-10-28  8:11   ` Hannes Reinecke
2009-10-27 16:47 ` Gerd Hoffmann
2009-11-11  1:49 ` Paul Brook
2009-11-11  1:49 ` Paul Brook
  -- strict thread matches above, loose matches on Subject: below --
2009-10-27 15:26 Hannes Reinecke

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=4AE71116.6080809@suse.de \
    --to=hare@suse.de \
    --cc=kvm@vger.kernel.org \
    --cc=qemu-devel@nongnu.org \
    --cc=virtualization@lists.linux-foundation.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.