From: Jesse Barnes <jbarnes@virtuousgeek.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Michal Simek <monstr@monstr.eu>,
linux-am33-list@redhat.com, linux-pci@vger.kernel.org,
linux-kernel@vger.kernel.org, linuxppc-dev@ozlabs.org,
microblaze-uclinux@itee.uq.edu.au,
Koichi Yasutake <yasutake.koichi@jp.panasonic.com>
Subject: Re: [git pull] PCI fixes
Date: Fri, 11 Jun 2010 14:02:19 -0700 [thread overview]
Message-ID: <20100611140219.6b853478@virtuousgeek.org> (raw)
In-Reply-To: <alpine.LFD.2.00.1006091611040.4506@i5.linux-foundation.org>
On Wed, 9 Jun 2010 16:14:10 -0700 (PDT)
Linus Torvalds <torvalds@linux-foundation.org> wrote:
> On Wed, 9 Jun 2010, Jesse Barnes wrote:
> >
> > Nothing too big here; I do have a couple of fixes in the queue that
> > aren't included here though. I'll be pulling them together over the
> > next couple of days.
>
> Hmm. None of these seem to really be relevant. The fact that one is from
> me doesn't make me any more eager to pull. Are any of these real
> regressions (the missing parenthesis one seems to be the only one that
> could be serious, but I didn't grep for actual use).
Ok I've updated the tree to cover the regressions reported so far,
including the printk change so we get fewer spurious reports. Note it
hasn't gone through linux-next yet, but the patches are all small and
have each been tested individually.
There's one change in particular I'd like you (along with the cc'd
arch maintainers) to review:
commit 837c4ef13c44296bb763a0ca0e84a076592474cf
Author: Yinghai Lu <yinghai.lu@oracle.com>
Date: Thu Jun 3 13:43:03 2010 -0700
PCI: clear bridge resource range if BIOS assigned bad one
This fixes a regression rather minimally, but may have side effects I'm
not seeing. An alternative to that fix would be to revert
commit d65245c3297ac63abc51a976d92f45f2195d2854
Author: Yinghai Lu <yinghai@kernel.org>
Date: Fri Jan 22 01:02:23 2010 -0800
PCI: don't shrink bridge resources
but it seems that's a bit more risky at this point, since it could
affect hotplug and rescan cases. Really this code needs to be
reworked, especially in light of the revert of
977d17bb1749517b353874ccdc9b85abc7a58c2a which tried (and failed)
to perform aggressive reallocation when devices weren't configured.
I'll try to find some time next week to work on that.
The following changes since commit 9dda696f0de87a2e5cfabb147e28c76b7d3c6846:
Linus Torvalds (1):
Merge branch 'release' of git://git.kernel.org/.../aegl/linux-2.6
are available in the git repository at:
ssh://master.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6 for-linus
Bjorn Helgaas (1):
PCI: change resource collision messages from KERN_ERR to KERN_INFO
Jesse Barnes (1):
Revert "PCI: create function symlinks in /sys/bus/pci/slots/N/"
Jiri Slaby (1):
PCI: hotplug/cpqphp, fix NULL dereference
Yinghai Lu (1):
PCI: clear bridge resource range if BIOS assigned bad one
Documentation/ABI/testing/sysfs-bus-pci | 40 -------------------------
arch/microblaze/pci/pci-common.c | 1 +
arch/mn10300/unit-asb2305/pci-asb2305.c | 1 +
arch/powerpc/kernel/pci-common.c | 1 +
arch/x86/pci/i386.c | 2 +
drivers/pci/hotplug/cpqphp_core.c | 7 ++++
drivers/pci/pci-sysfs.c | 37 -----------------------
drivers/pci/setup-res.c | 10 +++---
drivers/pci/slot.c | 48 -------------------------------
9 files changed, 17 insertions(+), 130 deletions(-)
Thanks,
--
Jesse Barnes, Intel Open Source Technology Center
WARNING: multiple messages have this Message-ID (diff)
From: Jesse Barnes <jbarnes@virtuousgeek.org>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-pci@vger.kernel.org, linux-kernel@vger.kernel.org,
Michal Simek <monstr@monstr.eu>,
microblaze-uclinux@itee.uq.edu.au,
David Howells <dhowells@redhat.com>,
Koichi Yasutake <yasutake.koichi@jp.panasonic.com>,
linux-am33-list@redhat.com,
Benjamin Herrenschmidt <benh@kernel.crashing.org>,
linuxppc-dev@ozlabs.org
Subject: Re: [git pull] PCI fixes
Date: Fri, 11 Jun 2010 14:02:19 -0700 [thread overview]
Message-ID: <20100611140219.6b853478@virtuousgeek.org> (raw)
In-Reply-To: <alpine.LFD.2.00.1006091611040.4506@i5.linux-foundation.org>
On Wed, 9 Jun 2010 16:14:10 -0700 (PDT)
Linus Torvalds <torvalds@linux-foundation.org> wrote:
> On Wed, 9 Jun 2010, Jesse Barnes wrote:
> >
> > Nothing too big here; I do have a couple of fixes in the queue that
> > aren't included here though. I'll be pulling them together over the
> > next couple of days.
>
> Hmm. None of these seem to really be relevant. The fact that one is from
> me doesn't make me any more eager to pull. Are any of these real
> regressions (the missing parenthesis one seems to be the only one that
> could be serious, but I didn't grep for actual use).
Ok I've updated the tree to cover the regressions reported so far,
including the printk change so we get fewer spurious reports. Note it
hasn't gone through linux-next yet, but the patches are all small and
have each been tested individually.
There's one change in particular I'd like you (along with the cc'd
arch maintainers) to review:
commit 837c4ef13c44296bb763a0ca0e84a076592474cf
Author: Yinghai Lu <yinghai.lu@oracle.com>
Date: Thu Jun 3 13:43:03 2010 -0700
PCI: clear bridge resource range if BIOS assigned bad one
This fixes a regression rather minimally, but may have side effects I'm
not seeing. An alternative to that fix would be to revert
commit d65245c3297ac63abc51a976d92f45f2195d2854
Author: Yinghai Lu <yinghai@kernel.org>
Date: Fri Jan 22 01:02:23 2010 -0800
PCI: don't shrink bridge resources
but it seems that's a bit more risky at this point, since it could
affect hotplug and rescan cases. Really this code needs to be
reworked, especially in light of the revert of
977d17bb1749517b353874ccdc9b85abc7a58c2a which tried (and failed)
to perform aggressive reallocation when devices weren't configured.
I'll try to find some time next week to work on that.
The following changes since commit 9dda696f0de87a2e5cfabb147e28c76b7d3c6846:
Linus Torvalds (1):
Merge branch 'release' of git://git.kernel.org/.../aegl/linux-2.6
are available in the git repository at:
ssh://master.kernel.org/pub/scm/linux/kernel/git/jbarnes/pci-2.6 for-linus
Bjorn Helgaas (1):
PCI: change resource collision messages from KERN_ERR to KERN_INFO
Jesse Barnes (1):
Revert "PCI: create function symlinks in /sys/bus/pci/slots/N/"
Jiri Slaby (1):
PCI: hotplug/cpqphp, fix NULL dereference
Yinghai Lu (1):
PCI: clear bridge resource range if BIOS assigned bad one
Documentation/ABI/testing/sysfs-bus-pci | 40 -------------------------
arch/microblaze/pci/pci-common.c | 1 +
arch/mn10300/unit-asb2305/pci-asb2305.c | 1 +
arch/powerpc/kernel/pci-common.c | 1 +
arch/x86/pci/i386.c | 2 +
drivers/pci/hotplug/cpqphp_core.c | 7 ++++
drivers/pci/pci-sysfs.c | 37 -----------------------
drivers/pci/setup-res.c | 10 +++---
drivers/pci/slot.c | 48 -------------------------------
9 files changed, 17 insertions(+), 130 deletions(-)
Thanks,
--
Jesse Barnes, Intel Open Source Technology Center
next prev parent reply other threads:[~2010-06-11 21:03 UTC|newest]
Thread overview: 81+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-06-09 22:53 [git pull] PCI fixes Jesse Barnes
2010-06-09 23:14 ` Linus Torvalds
2010-06-10 0:20 ` Jesse Barnes
2010-06-11 21:02 ` Jesse Barnes [this message]
2010-06-11 21:02 ` Jesse Barnes
-- strict thread matches above, loose matches on Subject: below --
2012-03-05 21:49 Jesse Barnes
2012-02-17 17:24 Jesse Barnes
2011-12-17 17:29 Jesse Barnes
2011-12-18 2:33 ` Yinghai Lu
2011-12-18 5:52 ` Jesse Barnes
2011-12-18 22:14 ` Linus Torvalds
2012-01-06 20:46 ` Jesse Barnes
2012-01-07 1:14 ` Yinghai Lu
2011-11-23 22:44 Jesse Barnes
2011-11-23 23:02 ` Linus Torvalds
2011-12-05 19:22 ` Jesse Barnes
2011-12-06 8:08 ` Kenji Kaneshige
2011-12-06 16:14 ` Linus Torvalds
2011-12-06 22:36 ` Yinghai Lu
2011-12-07 8:18 ` Kenji Kaneshige
2011-12-07 19:20 ` Yinghai Lu
2011-12-07 7:58 ` Kenji Kaneshige
2011-08-19 16:17 Jesse Barnes
2011-08-19 16:46 ` Greg KH
2011-08-19 17:12 ` Jesse Barnes
2011-08-19 17:19 ` Jesse Barnes
2011-06-23 20:37 Jesse Barnes
2011-06-24 15:38 ` Linus Torvalds
2011-06-24 15:53 ` Jesse Barnes
2011-06-24 16:07 ` Linus Torvalds
2011-06-24 16:11 ` Jesse Barnes
2011-06-24 22:56 ` Linus Torvalds
2011-06-25 0:00 ` Jesse Barnes
2011-06-25 0:17 ` Yinghai Lu
2011-06-28 17:02 ` Jesse Barnes
2011-06-29 1:04 ` Ram Pai
2011-03-25 17:22 Jesse Barnes
2010-12-17 23:29 Jesse Barnes
2010-11-15 17:45 Jesse Barnes
2010-11-16 11:16 ` Andreas Schwab
2010-11-16 11:23 ` Wolfram Sang
2010-11-16 17:00 ` Jesse Barnes
2010-08-31 15:49 Jesse Barnes
2010-04-29 3:14 Jesse Barnes
2010-04-23 20:37 Jesse Barnes
2010-03-26 23:33 Jesse Barnes
2010-01-29 0:25 Jesse Barnes
2010-01-07 22:34 Jesse Barnes
2009-12-28 16:10 Jesse Barnes
2009-11-11 8:12 Jesse Barnes
2009-10-12 17:32 Jesse Barnes
2009-08-10 17:30 Jesse Barnes
2009-07-06 18:00 Jesse Barnes
2009-06-06 20:32 Jesse Barnes
2009-05-15 22:09 Jesse Barnes
2009-04-27 18:54 Jesse Barnes
2009-04-07 18:00 Jesse Barnes
2009-02-26 22:24 Jesse Barnes
2009-02-26 22:36 ` Matthew Wilcox
2009-02-26 22:39 ` Jesse Barnes
2009-02-27 0:45 ` Jesse Barnes
2009-02-13 22:07 Jesse Barnes
2009-02-03 2:19 Jesse Barnes
2009-01-21 22:00 Jesse Barnes
2008-12-19 1:30 Jesse Barnes
2008-11-13 20:50 Jesse Barnes
2008-11-07 17:00 Jesse Barnes
2008-09-23 19:14 Jesse Barnes
2008-09-13 0:02 Jesse Barnes
2008-08-25 17:07 Jesse Barnes
2008-08-19 17:03 Jesse Barnes
2008-08-11 17:27 Jesse Barnes
2008-07-07 22:34 Jesse Barnes
2008-06-14 20:23 Jesse Barnes
2008-06-14 20:29 ` Rafael J. Wysocki
2008-06-06 18:26 Jesse Barnes
2008-06-06 22:04 ` Jeff Garzik
2008-06-06 22:16 ` Jesse Barnes
2008-05-27 22:55 Jesse Barnes
2008-05-20 17:51 Jesse Barnes
2008-05-13 17:42 Jesse Barnes
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=20100611140219.6b853478@virtuousgeek.org \
--to=jbarnes@virtuousgeek.org \
--cc=linux-am33-list@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pci@vger.kernel.org \
--cc=linuxppc-dev@ozlabs.org \
--cc=microblaze-uclinux@itee.uq.edu.au \
--cc=monstr@monstr.eu \
--cc=torvalds@linux-foundation.org \
--cc=yasutake.koichi@jp.panasonic.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 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.