From: "Krzysztof Wilczyński" <kw@linux.com>
To: Amey Narkhede <ameynarkhede03@gmail.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>,
alex.williamson@redhat.com, raphael.norwitz@nutanix.com,
linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH RESEND v2 3/7] PCI: Add new array for keeping track of ordering of reset methods
Date: Thu, 20 May 2021 17:26:32 +0200 [thread overview]
Message-ID: <20210520152632.GC641812@rocinante.localdomain> (raw)
In-Reply-To: <20210519235426.99728-4-ameynarkhede03@gmail.com>
Hi Amey,
[...]
> +/*
> + * The ordering for functions in pci_reset_fn_methods
> + * is required for reset_methods byte array defined
> + * in struct pci_dev
> + */
A small nitpick: missing period at the end of the sentence in the
comment above, and in other comments too. Might add for completeness
and consistency.
[...]
> +typedef int (*pci_reset_fn_t)(struct pci_dev *, int);
> +
> +struct pci_reset_fn_method {
> + pci_reset_fn_t reset_fn;
> + char *name;
> +};
Question about the custom type definition above: would it be really
needed? It there is only potentially a limited use for it, then perhaps
it would not be useful to have one?
Linus also has some preference on usage of custom types, as per:
https://yarchive.net/comp/linux/typedefs.html
But, in the end, this really boils down to a matter of style and/or
preference.
[...]
> +#define PCI_RESET_FN_METHODS 5
Not sure if worth changing name of this constant, but what about the
following:
#define PCI_RESET_FN_METHODS_NUM 5
Or even perhaps:
#define PCI_RESET_METHODS_NUM 5
So it's a little bit more self-explanatory. This would be in the
similar notion, as per:
https://elixir.bootlin.com/linux/v5.13-rc2/source/include/linux/pci.h#L115
[...]
> + u8 reset_methods[PCI_RESET_FN_METHODS]; /* Array for storing ordering of reset methods */
This comment reads somewhat awkward - we know that an array would be
used, most likely, for storing things, thus what about the following:
/* Reset methods ordered by priority */
Just a suggestion, though.
Krzysztof
next prev parent reply other threads:[~2021-05-20 15:26 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-19 23:54 [PATCH RESEND v2 0/7] Expose and manage PCI device reset Amey Narkhede
2021-05-19 23:54 ` [PATCH RESEND v2 1/7] PCI: merge slot and bus reset implementations Amey Narkhede
2021-05-20 14:54 ` Krzysztof Wilczyński
2021-05-19 23:54 ` [PATCH RESEND v2 2/7] PCI: Add pcie_reset_flr to follow calling convention of other reset methods Amey Narkhede
2021-05-20 15:05 ` Krzysztof Wilczyński
2021-05-24 14:48 ` Amey Narkhede
2021-05-25 15:17 ` Krzysztof Wilczyński
2021-05-25 16:03 ` Amey Narkhede
2021-05-19 23:54 ` [PATCH RESEND v2 3/7] PCI: Add new array for keeping track of ordering of " Amey Narkhede
2021-05-20 15:26 ` Krzysztof Wilczyński [this message]
2021-05-19 23:54 ` [PATCH RESEND v2 4/7] PCI: Remove reset_fn field from pci_dev Amey Narkhede
2021-05-19 23:54 ` [PATCH RESEND v2 5/7] PCI/sysfs: Allow userspace to query and set device reset mechanism Amey Narkhede
2021-05-20 16:37 ` Krzysztof Wilczyński
2021-05-19 23:54 ` [PATCH RESEND v2 6/7] PCI: Add support for a function level reset based on _RST method Amey Narkhede
2021-05-19 23:54 ` [PATCH RESEND v2 7/7] PCI: Enable NO_BUS_RESET quirk for Nvidia GPUs Amey Narkhede
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=20210520152632.GC641812@rocinante.localdomain \
--to=kw@linux.com \
--cc=alex.williamson@redhat.com \
--cc=ameynarkhede03@gmail.com \
--cc=bhelgaas@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=raphael.norwitz@nutanix.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox