From: Klaus Jensen <its@irrelevant.dk>
To: Markus Armbruster <armbru@redhat.com>
Cc: qemu-devel@nongnu.org, qemu-block@nongnu.org,
Keith Busch <kbusch@kernel.org>,
Klaus Jensen <k.jensen@samsung.com>
Subject: Re: [PATCH 2/2] hw/nvme: cleanup error reporting in nvme_init_pci()
Date: Wed, 9 Nov 2022 13:35:06 +0100 [thread overview]
Message-ID: <Y2ueekJGratzJUD1@cormorant.local> (raw)
In-Reply-To: <87sfisnw82.fsf@pond.sub.org>
[-- Attachment #1: Type: text/plain, Size: 2109 bytes --]
On Nov 9 13:33, Markus Armbruster wrote:
> Klaus Jensen <its@irrelevant.dk> writes:
>
> > From: Klaus Jensen <k.jensen@samsung.com>
> >
> > Replace the local Error variable with errp and ERRP_GUARD().
> >
> > Signed-off-by: Klaus Jensen <k.jensen@samsung.com>
> > ---
> > hw/nvme/ctrl.c | 12 ++++++------
> > 1 file changed, 6 insertions(+), 6 deletions(-)
> >
> > diff --git a/hw/nvme/ctrl.c b/hw/nvme/ctrl.c
> > index 4cc6ae753295..38eb5ec54f9d 100644
> > --- a/hw/nvme/ctrl.c
> > +++ b/hw/nvme/ctrl.c
> > @@ -7345,13 +7345,13 @@ static int nvme_add_pm_capability(PCIDevice *pci_dev, uint8_t offset)
> >
> > static int nvme_init_pci(NvmeCtrl *n, PCIDevice *pci_dev, Error **errp)
> > {
> > + ERRP_GUARD();
> > +
>
> Drop the blank line, please.
>
Roger.
> > uint8_t *pci_conf = pci_dev->config;
> > uint64_t bar_size;
> > unsigned msix_table_offset, msix_pba_offset;
> > int ret;
> >
> > - Error *err = NULL;
> > -
> > pci_conf[PCI_INTERRUPT_PIN] = 1;
> > pci_config_set_prog_interface(pci_conf, 0x2);
> >
> > @@ -7388,13 +7388,13 @@ static int nvme_init_pci(NvmeCtrl *n, PCIDevice *pci_dev, Error **errp)
> > }
> > ret = msix_init(pci_dev, n->params.msix_qsize,
> > &n->bar0, 0, msix_table_offset,
> > - &n->bar0, 0, msix_pba_offset, 0, &err);
> > + &n->bar0, 0, msix_pba_offset, 0, errp);
> > if (ret < 0) {
> > if (ret == -ENOTSUP) {
> > - warn_report_err(err);
> > + warn_report_err(*errp);
> > + *errp = NULL;
> > } else {
> > - error_propagate(errp, err);
> > - return ret;
> > + return -1;
> > }
> > }
>
> Suggest to reduce nesting:
>
> if (ret == -ENOTSUP) {
> warn_report_err(*errp);
> *errp = NULL;
> } else if (ret < 0) {
> return -1;
> }
>
> Entirely up to you.
>
> Reviewed-by: Markus Armbruster <armbru@redhat.com>
>
Makes sense, thanks!
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
prev parent reply other threads:[~2022-11-09 12:35 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-09 10:53 [PATCH 0/2] hw/nvme: errp fixes Klaus Jensen
2022-11-09 10:53 ` [PATCH 1/2] hw/nvme: fix incorrect use of errp/local_err Klaus Jensen
2022-11-09 12:29 ` Markus Armbruster
2022-11-09 12:33 ` Klaus Jensen
2022-11-09 12:36 ` Markus Armbruster
2022-11-09 12:41 ` Klaus Jensen
2022-11-09 13:01 ` Markus Armbruster
2022-11-09 10:53 ` [PATCH 2/2] hw/nvme: cleanup error reporting in nvme_init_pci() Klaus Jensen
2022-11-09 12:33 ` Markus Armbruster
2022-11-09 12:35 ` Klaus Jensen [this message]
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=Y2ueekJGratzJUD1@cormorant.local \
--to=its@irrelevant.dk \
--cc=armbru@redhat.com \
--cc=k.jensen@samsung.com \
--cc=kbusch@kernel.org \
--cc=qemu-block@nongnu.org \
--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).