linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] PCI: Tone down resource mmap warning
@ 2017-11-29 22:57 Bjorn Helgaas
  2017-11-30  1:38 ` Fengguang Wu
  0 siblings, 1 reply; 3+ messages in thread
From: Bjorn Helgaas @ 2017-11-29 22:57 UTC (permalink / raw)
  To: linux-pci; +Cc: Dave Jones, Fengguang Wu, linux-kernel, David Woodhouse

From: Bjorn Helgaas <bhelgaas@google.com>

When a process tries to mmap more space than is available in a PCI BAR, we
emit a warning and a backtrace.  The mmap fails anyway, so the backtrace is
mainly for debugging.  It seems like overkill now, so reduce this to a
dev_info() and remove the backtrace.

This was added by b5ff7df3df9e ("Check mapped ranges on sysfs resource
files").

Reported-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
---
 drivers/pci/pci-sysfs.c |    6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
index 06c7f0b85cd2..97f071674605 100644
--- a/drivers/pci/pci-sysfs.c
+++ b/drivers/pci/pci-sysfs.c
@@ -1217,11 +1217,9 @@ static int pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
 		return -EINVAL;
 
 	if (!pci_mmap_fits(pdev, bar, vma, PCI_MMAP_SYSFS)) {
-		WARN(1, "process \"%s\" tried to map 0x%08lx bytes at page 0x%08lx on %s BAR %d (start 0x%16Lx, size 0x%16Lx)\n",
+		dev_info(&pdev->dev, "process \"%s\" tried to map 0x%lx bytes at page 0x%lx of BAR %d %pR\n",
 			current->comm, vma->vm_end-vma->vm_start, vma->vm_pgoff,
-			pci_name(pdev), bar,
-			(u64)pci_resource_start(pdev, bar),
-			(u64)pci_resource_len(pdev, bar));
+			bar, res);
 		return -EINVAL;
 	}
 	mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io;

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] PCI: Tone down resource mmap warning
  2017-11-29 22:57 [PATCH] PCI: Tone down resource mmap warning Bjorn Helgaas
@ 2017-11-30  1:38 ` Fengguang Wu
  2017-11-30  5:08   ` Bjorn Helgaas
  0 siblings, 1 reply; 3+ messages in thread
From: Fengguang Wu @ 2017-11-30  1:38 UTC (permalink / raw)
  To: Bjorn Helgaas; +Cc: linux-pci, Dave Jones, linux-kernel, David Woodhouse

This is perhaps the most clean solution. Thank you for the patch!  -fengguang

On Wed, Nov 29, 2017 at 04:57:08PM -0600, Bjorn Helgaas wrote:
>From: Bjorn Helgaas <bhelgaas@google.com>
>
>When a process tries to mmap more space than is available in a PCI BAR, we
>emit a warning and a backtrace.  The mmap fails anyway, so the backtrace is
>mainly for debugging.  It seems like overkill now, so reduce this to a
>dev_info() and remove the backtrace.
>
>This was added by b5ff7df3df9e ("Check mapped ranges on sysfs resource
>files").
>
>Reported-by: Fengguang Wu <fengguang.wu@intel.com>
>Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
>---
> drivers/pci/pci-sysfs.c |    6 ++----
> 1 file changed, 2 insertions(+), 4 deletions(-)
>
>diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
>index 06c7f0b85cd2..97f071674605 100644
>--- a/drivers/pci/pci-sysfs.c
>+++ b/drivers/pci/pci-sysfs.c
>@@ -1217,11 +1217,9 @@ static int pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
> 		return -EINVAL;
>
> 	if (!pci_mmap_fits(pdev, bar, vma, PCI_MMAP_SYSFS)) {
>-		WARN(1, "process \"%s\" tried to map 0x%08lx bytes at page 0x%08lx on %s BAR %d (start 0x%16Lx, size 0x%16Lx)\n",
>+		dev_info(&pdev->dev, "process \"%s\" tried to map 0x%lx bytes at page 0x%lx of BAR %d %pR\n",
> 			current->comm, vma->vm_end-vma->vm_start, vma->vm_pgoff,
>-			pci_name(pdev), bar,
>-			(u64)pci_resource_start(pdev, bar),
>-			(u64)pci_resource_len(pdev, bar));
>+			bar, res);
> 		return -EINVAL;
> 	}
> 	mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io;
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] PCI: Tone down resource mmap warning
  2017-11-30  1:38 ` Fengguang Wu
@ 2017-11-30  5:08   ` Bjorn Helgaas
  0 siblings, 0 replies; 3+ messages in thread
From: Bjorn Helgaas @ 2017-11-30  5:08 UTC (permalink / raw)
  To: Fengguang Wu; +Cc: linux-pci, Dave Jones, linux-kernel, David Woodhouse

On Thu, Nov 30, 2017 at 09:38:01AM +0800, Fengguang Wu wrote:
> This is perhaps the most clean solution. Thank you for the patch!  -fengguang

After thinking about it some more, I think we should just remove the
printk altogether.  I suspect it was added with the thought that it
would help debug the e1000e NVRAM corruption problem.  But in general,
we don't log messages when system calls fail, and I don't know why
this one should be special.

> On Wed, Nov 29, 2017 at 04:57:08PM -0600, Bjorn Helgaas wrote:
> >From: Bjorn Helgaas <bhelgaas@google.com>
> >
> >When a process tries to mmap more space than is available in a PCI BAR, we
> >emit a warning and a backtrace.  The mmap fails anyway, so the backtrace is
> >mainly for debugging.  It seems like overkill now, so reduce this to a
> >dev_info() and remove the backtrace.
> >
> >This was added by b5ff7df3df9e ("Check mapped ranges on sysfs resource
> >files").
> >
> >Reported-by: Fengguang Wu <fengguang.wu@intel.com>
> >Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
> >---
> >drivers/pci/pci-sysfs.c |    6 ++----
> >1 file changed, 2 insertions(+), 4 deletions(-)
> >
> >diff --git a/drivers/pci/pci-sysfs.c b/drivers/pci/pci-sysfs.c
> >index 06c7f0b85cd2..97f071674605 100644
> >--- a/drivers/pci/pci-sysfs.c
> >+++ b/drivers/pci/pci-sysfs.c
> >@@ -1217,11 +1217,9 @@ static int pci_mmap_resource(struct kobject *kobj, struct bin_attribute *attr,
> >		return -EINVAL;
> >
> >	if (!pci_mmap_fits(pdev, bar, vma, PCI_MMAP_SYSFS)) {
> >-		WARN(1, "process \"%s\" tried to map 0x%08lx bytes at page 0x%08lx on %s BAR %d (start 0x%16Lx, size 0x%16Lx)\n",
> >+		dev_info(&pdev->dev, "process \"%s\" tried to map 0x%lx bytes at page 0x%lx of BAR %d %pR\n",
> >			current->comm, vma->vm_end-vma->vm_start, vma->vm_pgoff,
> >-			pci_name(pdev), bar,
> >-			(u64)pci_resource_start(pdev, bar),
> >-			(u64)pci_resource_len(pdev, bar));
> >+			bar, res);
> >		return -EINVAL;
> >	}
> >	mmap_type = res->flags & IORESOURCE_MEM ? pci_mmap_mem : pci_mmap_io;
> >

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-11-30  5:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-29 22:57 [PATCH] PCI: Tone down resource mmap warning Bjorn Helgaas
2017-11-30  1:38 ` Fengguang Wu
2017-11-30  5:08   ` Bjorn Helgaas

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).