From: Bjorn Helgaas <helgaas@kernel.org>
To: Deepa Dinamani <deepa.kernel@gmail.com>
Cc: mika.westerberg@linux.intel.com, alex.williamson@redhat.com,
logang@deltatee.com, linux-pci@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] pci: Warn if BME cannot be turned off during kexec
Date: Mon, 6 Jan 2020 07:54:55 -0600 [thread overview]
Message-ID: <20200106135455.GA104407@google.com> (raw)
In-Reply-To: <20200104225052.27275-1-deepa.kernel@gmail.com>
Hi Deepa,
Thanks for the patches. Since these two patches touch the same piece
of code in pci_device_shutdown(), they conflict with each other. I
could resolve this myself, but maybe you could make them a series that
applies cleanly together?
Can you also please edit the subject lines so they match the
convention (use "git log --oneline drivers/pci/pci-driver.c" to see
it).
On Sat, Jan 04, 2020 at 02:50:52PM -0800, Deepa Dinamani wrote:
> BME not being off is a security risk, so for whatever
> reason if we cannot disable it, print a warning.
"BME" is not a common term in drivers/pci; can you use "Bus Master
Enable" (to match the PCIe spec) or "PCI_COMMAND_MASTER" (to match the
Linux code)?
Can you also explain why this is a security risk? It looks like we
disable bus mastering if the device is in D0-D3hot. If the device is
in D3cold, it's powered off, so we can't read/write config space. But
if it's in D3cold, the device is powered off, so it can't be a bus
master either, so why would we warn about it?
> Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
> ---
> drivers/pci/pci-driver.c | 8 ++++++--
> 1 file changed, 6 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/pci/pci-driver.c b/drivers/pci/pci-driver.c
> index 0454ca0e4e3f..6c866a81f46c 100644
> --- a/drivers/pci/pci-driver.c
> +++ b/drivers/pci/pci-driver.c
> @@ -491,8 +491,12 @@ static void pci_device_shutdown(struct device *dev)
> * If it is not a kexec reboot, firmware will hit the PCI
> * devices with big hammer and stop their DMA any way.
> */
> - if (kexec_in_progress && (pci_dev->current_state <= PCI_D3hot))
> - pci_clear_master(pci_dev);
> + if (kexec_in_progress) {
> + if (likely(pci_dev->current_state <= PCI_D3hot))
No need to use "likely" here unless you can measure a difference. I
doubt this is a performance path.
> + pci_clear_master(pci_dev);
> + else
> + dev_warn(dev, "Unable to turn off BME during kexec");
How often and for what sort of devices would you expect this warning
to be emitted? If this is a common situation and the user can't do
anything about it, the warnings will clutter the logs and train users
to ignore them.
Bjorn
> + }
> }
>
> #ifdef CONFIG_PM
> --
> 2.17.1
>
next prev parent reply other threads:[~2020-01-06 13:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-04 22:50 [PATCH] pci: Warn if BME cannot be turned off during kexec Deepa Dinamani
2020-01-06 13:54 ` Bjorn Helgaas [this message]
2020-01-06 19:38 ` Deepa Dinamani
2020-01-08 17:44 ` Deepa Dinamani
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=20200106135455.GA104407@google.com \
--to=helgaas@kernel.org \
--cc=alex.williamson@redhat.com \
--cc=deepa.kernel@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=logang@deltatee.com \
--cc=mika.westerberg@linux.intel.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