From: Hannes Reinecke <hare@suse.de>
To: qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Stefan Haynoczi <stefanha@linux.vnet.ibm.com>,
kvm@vger.kernel.org, Alexander Graf <agraf@suse.de>,
Hannes Reinecke <hare@suse.de>
Subject: [PATCH 0/3] [v5] Megasas HBA Emulation
Date: Fri, 1 Jul 2011 17:35:52 +0200 [thread overview]
Message-ID: <1309534555-22178-1-git-send-email-hare@suse.de> (raw)
Hi all,
after getting various feedback from Paolo, Stefan, and Alexander
I've respun the patches.
Chances since the previous version:
- iov: Update parameter usage in iov_(to|from)_buf()
Updated description for the first patch and clarified the usage
Renamed arguments for io_XXX for clarification
- scsi: Add 'hba_private' to SCSIRequest
Kept 'tag' for tracing and just add 'hba_private' as an
additional field as per request from Paolo
- megasas: checkpatch.pl fixes and update to work with the
changed interface in scsi_req_new(). Also included the
suggested fixes from Alex.
Hannes Reinecke (3):
iov: Update parameter usage in iov_(to|from)_buf()
scsi: Add 'hba_private' to SCSIRequest
megasas: LSI Megaraid SAS emulation
Makefile.objs | 1 +
default-configs/pci.mak | 1 +
hw/esp.c | 2 +-
hw/lsi53c895a.c | 22 +-
hw/megasas.c | 1920 +++++++++++++++++++++++++++++++++++++++++++++++
hw/mfi.h | 1197 +++++++++++++++++++++++++++++
hw/pci_ids.h | 3 +-
hw/scsi-bus.c | 9 +-
hw/scsi-disk.c | 4 +-
hw/scsi-generic.c | 5 +-
hw/scsi.h | 10 +-
hw/spapr_vscsi.c | 29 +-
hw/usb-msd.c | 9 +-
hw/virtio-net.c | 2 +-
hw/virtio-serial-bus.c | 2 +-
iov.c | 49 +-
iov.h | 10 +-
17 files changed, 3192 insertions(+), 83 deletions(-)
create mode 100644 hw/megasas.c
create mode 100644 hw/mfi.h
--
1.7.3.4
WARNING: multiple messages have this Message-ID (diff)
From: Hannes Reinecke <hare@suse.de>
To: qemu-devel@nongnu.org
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Hannes Reinecke <hare@suse.de>,
Stefan Haynoczi <stefanha@linux.vnet.ibm.com>,
kvm@vger.kernel.org, Alexander Graf <agraf@suse.de>
Subject: [Qemu-devel] [PATCH 0/3] [v5] Megasas HBA Emulation
Date: Fri, 1 Jul 2011 17:35:52 +0200 [thread overview]
Message-ID: <1309534555-22178-1-git-send-email-hare@suse.de> (raw)
Hi all,
after getting various feedback from Paolo, Stefan, and Alexander
I've respun the patches.
Chances since the previous version:
- iov: Update parameter usage in iov_(to|from)_buf()
Updated description for the first patch and clarified the usage
Renamed arguments for io_XXX for clarification
- scsi: Add 'hba_private' to SCSIRequest
Kept 'tag' for tracing and just add 'hba_private' as an
additional field as per request from Paolo
- megasas: checkpatch.pl fixes and update to work with the
changed interface in scsi_req_new(). Also included the
suggested fixes from Alex.
Hannes Reinecke (3):
iov: Update parameter usage in iov_(to|from)_buf()
scsi: Add 'hba_private' to SCSIRequest
megasas: LSI Megaraid SAS emulation
Makefile.objs | 1 +
default-configs/pci.mak | 1 +
hw/esp.c | 2 +-
hw/lsi53c895a.c | 22 +-
hw/megasas.c | 1920 +++++++++++++++++++++++++++++++++++++++++++++++
hw/mfi.h | 1197 +++++++++++++++++++++++++++++
hw/pci_ids.h | 3 +-
hw/scsi-bus.c | 9 +-
hw/scsi-disk.c | 4 +-
hw/scsi-generic.c | 5 +-
hw/scsi.h | 10 +-
hw/spapr_vscsi.c | 29 +-
hw/usb-msd.c | 9 +-
hw/virtio-net.c | 2 +-
hw/virtio-serial-bus.c | 2 +-
iov.c | 49 +-
iov.h | 10 +-
17 files changed, 3192 insertions(+), 83 deletions(-)
create mode 100644 hw/megasas.c
create mode 100644 hw/mfi.h
--
1.7.3.4
next reply other threads:[~2011-07-01 15:36 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-07-01 15:35 Hannes Reinecke [this message]
2011-07-01 15:35 ` [Qemu-devel] [PATCH 0/3] [v5] Megasas HBA Emulation Hannes Reinecke
2011-07-01 15:35 ` [PATCH 1/3] iov: Update parameter usage in iov_(to|from)_buf() Hannes Reinecke
2011-07-01 15:35 ` [Qemu-devel] " Hannes Reinecke
2011-07-01 15:35 ` [PATCH 2/3] scsi: Add 'hba_private' to SCSIRequest Hannes Reinecke
2011-07-01 15:35 ` [Qemu-devel] " Hannes Reinecke
2011-07-01 15:35 ` [PATCH 3/3] megasas: LSI Megaraid SAS emulation Hannes Reinecke
2011-07-01 15:35 ` [Qemu-devel] " Hannes Reinecke
2011-07-01 16:42 ` Alexander Graf
2011-07-01 16:42 ` [Qemu-devel] " Alexander Graf
2011-07-02 13:50 ` Hannes Reinecke
2011-07-02 13:50 ` [Qemu-devel] " Hannes Reinecke
2011-07-02 12:28 ` Alexander Graf
2011-07-02 12:28 ` [Qemu-devel] " Alexander Graf
2011-07-03 14:36 ` Paolo Bonzini
2011-07-03 14:36 ` [Qemu-devel] " Paolo Bonzini
2011-07-04 6:13 ` Hannes Reinecke
2011-07-04 6:13 ` [Qemu-devel] " Hannes Reinecke
2011-07-04 6:34 ` Paolo Bonzini
2011-07-04 6:34 ` [Qemu-devel] " Paolo Bonzini
2011-07-04 7:26 ` Hannes Reinecke
2011-07-04 7:26 ` [Qemu-devel] " Hannes Reinecke
2011-07-04 10:29 ` Paolo Bonzini
2011-07-04 10:29 ` [Qemu-devel] " Paolo Bonzini
2011-07-04 12:52 ` Hannes Reinecke
2011-07-04 12:52 ` [Qemu-devel] " Hannes Reinecke
2011-07-04 12:56 ` Paolo Bonzini
2011-07-04 12:56 ` [Qemu-devel] " Paolo Bonzini
2011-07-02 16:14 ` Stefan Hajnoczi
2011-07-02 16:14 ` Stefan Hajnoczi
2011-07-04 8:37 ` Hannes Reinecke
2011-07-04 8:37 ` Hannes Reinecke
2011-07-01 15:57 ` [PATCH 2/3] scsi: Add 'hba_private' to SCSIRequest Paolo Bonzini
2011-07-01 15:57 ` [Qemu-devel] " Paolo Bonzini
2011-07-01 16:19 ` [PATCH 1/3] iov: Update parameter usage in iov_(to|from)_buf() Alexander Graf
2011-07-01 16:19 ` [Qemu-devel] " Alexander Graf
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=1309534555-22178-1-git-send-email-hare@suse.de \
--to=hare@suse.de \
--cc=agraf@suse.de \
--cc=kvm@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@linux.vnet.ibm.com \
/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.