From: Markus Armbruster <armbru@redhat.com>
To: Cao jin <caoj.fnst@cn.fujitsu.com>
Cc: qemu-devel@nongnu.org, Marcel Apfelbaum <marcel@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Hannes Reinecke <hare@suse.de>
Subject: Re: [Qemu-devel] [PATCH v3 6/8] megasas: remove unnecessary megasas_use_msix()
Date: Thu, 29 Sep 2016 16:35:17 +0200 [thread overview]
Message-ID: <87ponm7p0a.fsf@dusky.pond.sub.org> (raw)
In-Reply-To: <1473839464-8670-7-git-send-email-caoj.fnst@cn.fujitsu.com> (Cao jin's message of "Wed, 14 Sep 2016 15:51:02 +0800")
Cao jin <caoj.fnst@cn.fujitsu.com> writes:
> CC: Hannes Reinecke <hare@suse.de>
> CC: Paolo Bonzini <pbonzini@redhat.com>
> CC: Markus Armbruster <armbru@redhat.com>
> CC: Marcel Apfelbaum <marcel@redhat.com>
> CC: Michael S. Tsirkin <mst@redhat.com>
> Signed-off-by: Cao jin <caoj.fnst@cn.fujitsu.com>
> ---
> hw/scsi/megasas.c | 21 +++++++--------------
> 1 file changed, 7 insertions(+), 14 deletions(-)
>
> diff --git a/hw/scsi/megasas.c b/hw/scsi/megasas.c
> index d801dd0..90cd873 100644
> --- a/hw/scsi/megasas.c
> +++ b/hw/scsi/megasas.c
> @@ -155,11 +155,6 @@ static bool megasas_use_queue64(MegasasState *s)
> return s->flags & MEGASAS_MASK_USE_QUEUE64;
> }
>
> -static bool megasas_use_msix(MegasasState *s)
> -{
> - return s->msix != ON_OFF_AUTO_OFF;
> -}
> -
> static bool megasas_is_jbod(MegasasState *s)
> {
> return s->flags & MEGASAS_MASK_USE_JBOD;
> @@ -2295,9 +2290,7 @@ static void megasas_scsi_uninit(PCIDevice *d)
> {
> MegasasState *s = MEGASAS(d);
>
> - if (megasas_use_msix(s)) {
> - msix_uninit(d, &s->mmio_io, &s->mmio_io);
> - }
> + msix_uninit(d, &s->mmio_io, &s->mmio_io);
> msi_uninit(d);
> }
>
> @@ -2349,7 +2342,7 @@ static void megasas_scsi_realize(PCIDevice *dev, Error **errp)
>
> memory_region_init_io(&s->mmio_io, OBJECT(s), &megasas_mmio_ops, s,
> "megasas-mmio", 0x4000);
> - if (megasas_use_msix(s)) {
> + if (s->msix != ON_OFF_AUTO_OFF) {
> ret = msix_init(dev, 15, &s->mmio_io, b->mmio_bar, 0x2000,
> &s->mmio_io, b->mmio_bar, 0x3800, 0x68, &err);
> /* Any error other than -ENOTSUP(board's MSI support is broken)
> @@ -2364,11 +2357,15 @@ static void megasas_scsi_realize(PCIDevice *dev, Error **errp)
> error_propagate(errp, err);
> return;
> }
> - assert(!err || d->msix == ON_OFF_AUTO_AUTO);
> + assert(!err || s->msix == ON_OFF_AUTO_AUTO);
You add this line in PATCH 4. Could it use s->msix from the start?
> /* With msix=auto, we fall back to MSI off silently */
> error_free(err);
> }
>
> + if (msix_enabled(dev)) {
> + msix_vector_use(dev, 0);
> + }
> +
> memory_region_init_io(&s->port_io, OBJECT(s), &megasas_port_ops, s,
> "megasas-io", 256);
> memory_region_init_io(&s->queue_io, OBJECT(s), &megasas_queue_ops, s,
> @@ -2384,10 +2381,6 @@ static void megasas_scsi_realize(PCIDevice *dev, Error **errp)
> pci_register_bar(dev, b->mmio_bar, bar_type, &s->mmio_io);
> pci_register_bar(dev, 3, bar_type, &s->queue_io);
>
> - if (megasas_use_msix(s)) {
> - msix_vector_use(dev, 0);
> - }
> -
> s->fw_state = MFI_FWSTATE_READY;
> if (!s->sas_addr) {
> s->sas_addr = ((NAA_LOCALLY_ASSIGNED_ID << 24) |
Can you explain why you move the code?
next prev parent reply other threads:[~2016-09-29 14:35 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-14 7:50 [Qemu-devel] [PATCH v3 0/8] Convert msix_init() to error Cao jin
2016-09-14 7:50 ` [Qemu-devel] [PATCH v3 1/8] msix: Follow CODING_STYLE Cao jin
2016-09-14 7:50 ` [Qemu-devel] [PATCH v3 2/8] hcd-xhci: check & correct param before using it Cao jin
2016-09-29 13:47 ` Markus Armbruster
2016-09-29 15:21 ` Gerd Hoffmann
2016-09-14 7:50 ` [Qemu-devel] [PATCH v3 3/8] pci: Convert msix_init() to Error and fix callers to check it Cao jin
2016-09-29 14:17 ` Markus Armbruster
2016-09-30 5:44 ` Cao jin
2016-09-30 7:01 ` Markus Armbruster
2016-09-30 7:07 ` Cao jin
2016-09-14 7:51 ` [Qemu-devel] [PATCH v3 4/8] megasas: change behaviour of msix switch Cao jin
2016-09-14 7:51 ` [Qemu-devel] [PATCH v3 5/8] hcd-xhci: " Cao jin
2016-09-29 14:32 ` Markus Armbruster
2016-09-29 15:22 ` Gerd Hoffmann
2016-09-14 7:51 ` [Qemu-devel] [PATCH v3 6/8] megasas: remove unnecessary megasas_use_msix() Cao jin
2016-09-29 14:35 ` Markus Armbruster [this message]
2016-09-30 6:09 ` Cao jin
2016-09-30 7:01 ` Markus Armbruster
2016-09-14 7:51 ` [Qemu-devel] [PATCH v3 7/8] megasas: undo the overwrites of msi user configuration Cao jin
2016-09-14 7:51 ` [Qemu-devel] [PATCH v3 8/8] vmxnet3: remove unnecessary internal msix state flag Cao jin
2016-09-29 14:42 ` Markus Armbruster
2016-09-30 6:58 ` Cao jin
2016-09-30 13:08 ` Markus Armbruster
2016-10-06 9:39 ` Dmitry Fleytman
2016-10-06 15:43 ` Dr. David Alan Gilbert
2016-10-06 19:33 ` Dmitry Fleytman
2016-10-11 3:35 ` Cao jin
2016-10-11 4:18 ` Dmitry Fleytman
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=87ponm7p0a.fsf@dusky.pond.sub.org \
--to=armbru@redhat.com \
--cc=caoj.fnst@cn.fujitsu.com \
--cc=hare@suse.de \
--cc=marcel@redhat.com \
--cc=mst@redhat.com \
--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 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.