From: "Dave Airlie" <airlied-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
To: David Miller <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
Cc: jkosina-AlSwsSmVLrQ@public.gmane.org,
jeffrey.t.kirsher-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org,
david.vrabel-kQvG35nSl+M@public.gmane.org,
rjw-KKrjLPT3xs0@public.gmane.org,
linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
kernel-testers-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
chrisl-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org
Subject: Re: [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM
Date: Wed, 24 Sep 2008 15:45:46 +1000 [thread overview]
Message-ID: <21d7e9970809232245x6a91c6e2l552ff039d07e2017@mail.gmail.com> (raw)
In-Reply-To: <20080923.211215.193696086.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
On Wed, Sep 24, 2008 at 2:12 PM, David Miller <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org> wrote:
> From: Jiri Kosina <jkosina-AlSwsSmVLrQ@public.gmane.org>
> Date: Wed, 24 Sep 2008 00:19:00 +0200 (CEST)
>
>> On Tue, 23 Sep 2008, Jeff Kirsher wrote:
>>
>> > >> I don't think OpenSUSE was shipping any of the GEM bits.
>> > > Good data point, can someone confirm this? Also, what X server version
>> > > is the effected OpenSUSE shipping?
>> > OpenSuSE 11 ships x server version 7.3.
>>
>> Opensuse 11 is fine.
>>
>> The problem can be reproduced [not only] on opensuse 11.1 beta1, which has
>>
>> xorg-x11-7.4-1.6.x86_64.rpm
>
> I did some snooping around, and while doing so I noticed that the PCI
> mmap code for x86 doesn't do one bit of range checking on the size, or
> any other aspect of the request, wrt. the MMIO regions actually mapped
> in the BARs of the PCI device.
>
> Yikes!
>
> It just does a reserve_memtype() on the address range, and says "ok".
>
> So if, for example, the X server tries to mmap() more than an MMIO bar
> actually maps, the kernel lets the user do this.
>
> It would be very interesting to add the appropriate checks to
> pci_mmap_page_range() in arch/x86/pci/i386.c, anyone who wants to do
> this can use the code in arch/sparc64/kernel/pci.c:
> __pci_mmap_make_offset() as a guide, and see what happens.
>
> If the MMIO space regions of the video cards sit right before the
> E1000E ones on the effected systems, that would pretty much
> convince me that this is the kind of problem we are having here.
>
> This also reminds me that there was that whole set of issues that
> had to get worked out wrt. write-caching of mappings on x86.
>
I'm still dubious about this, wouldn't we see other wierdass side
effects if X was trashing the BARs on other devices?
I think tglx is on the right path, same problem as e1000, code is
stupid, it can reenter the nvram read/write code from irq
context, and pwn itself.
Dave.
WARNING: multiple messages have this Message-ID (diff)
From: "Dave Airlie" <airlied@gmail.com>
To: "David Miller" <davem@davemloft.net>
Cc: jkosina@suse.cz, jeffrey.t.kirsher@intel.com,
david.vrabel@csr.com, rjw@sisk.pl, linux-kernel@vger.kernel.org,
kernel-testers@vger.kernel.org, chrisl@vmware.com
Subject: Re: [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM
Date: Wed, 24 Sep 2008 15:45:46 +1000 [thread overview]
Message-ID: <21d7e9970809232245x6a91c6e2l552ff039d07e2017@mail.gmail.com> (raw)
In-Reply-To: <20080923.211215.193696086.davem@davemloft.net>
On Wed, Sep 24, 2008 at 2:12 PM, David Miller <davem@davemloft.net> wrote:
> From: Jiri Kosina <jkosina@suse.cz>
> Date: Wed, 24 Sep 2008 00:19:00 +0200 (CEST)
>
>> On Tue, 23 Sep 2008, Jeff Kirsher wrote:
>>
>> > >> I don't think OpenSUSE was shipping any of the GEM bits.
>> > > Good data point, can someone confirm this? Also, what X server version
>> > > is the effected OpenSUSE shipping?
>> > OpenSuSE 11 ships x server version 7.3.
>>
>> Opensuse 11 is fine.
>>
>> The problem can be reproduced [not only] on opensuse 11.1 beta1, which has
>>
>> xorg-x11-7.4-1.6.x86_64.rpm
>
> I did some snooping around, and while doing so I noticed that the PCI
> mmap code for x86 doesn't do one bit of range checking on the size, or
> any other aspect of the request, wrt. the MMIO regions actually mapped
> in the BARs of the PCI device.
>
> Yikes!
>
> It just does a reserve_memtype() on the address range, and says "ok".
>
> So if, for example, the X server tries to mmap() more than an MMIO bar
> actually maps, the kernel lets the user do this.
>
> It would be very interesting to add the appropriate checks to
> pci_mmap_page_range() in arch/x86/pci/i386.c, anyone who wants to do
> this can use the code in arch/sparc64/kernel/pci.c:
> __pci_mmap_make_offset() as a guide, and see what happens.
>
> If the MMIO space regions of the video cards sit right before the
> E1000E ones on the effected systems, that would pretty much
> convince me that this is the kind of problem we are having here.
>
> This also reminds me that there was that whole set of issues that
> had to get worked out wrt. write-caching of mappings on x86.
>
I'm still dubious about this, wouldn't we see other wierdass side
effects if X was trashing the BARs on other devices?
I think tglx is on the right path, same problem as e1000, code is
stupid, it can reenter the nvram read/write code from irq
context, and pwn itself.
Dave.
next prev parent reply other threads:[~2008-09-24 5:45 UTC|newest]
Thread overview: 265+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-09-21 18:52 2.6.27-rc6-git6: Reported regressions from 2.6.26 Rafael J. Wysocki
2008-09-21 18:52 ` [Bug #11207] VolanoMark regression with 2.6.27-rc1 Rafael J. Wysocki
2008-09-21 18:52 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11210] libata badness Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11215] INFO: possible recursive locking detected ps2_command Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11220] Screen stays black after resume Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-30 22:25 ` Pavel Machek
2008-09-30 22:25 ` Pavel Machek
2008-09-21 18:54 ` [Bug #11264] Invalid op opcode in kernel/workqueue Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11237] corrupt PMD after resume Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11230] Kconfig no longer outputs a .config with freshly updated defconfigs Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11224] Only three cores found on quad-core machine Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11335] 2.6.27-rc2-git5 BUG: unable to handle kernel paging request Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 23:49 ` Randy Dunlap
2008-09-21 23:49 ` Randy Dunlap
2008-09-21 18:54 ` [Bug #11271] BUG: fealnx in 2.6.27-rc1 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11272] BUG: parport_serial in 2.6.27-rc1 for NetMos Technology PCI 9835 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11308] tbench regression on each kernel release from 2.6.22 -> 2.6.28 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11357] Can not boot up with zd1211rw USB-Wlan Stick Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11380] lockdep warning: cpu_add_remove_lock at:cpu_maps_update_begin+0x14/0x16 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11340] LTP overnight run resulted in unusable box Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11404] BUG: in 2.6.23-rc3-git7 in do_cciss_intr Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 23:51 ` David Miller
2008-09-21 23:51 ` David Miller
[not found] ` <20080921.165159.67476441.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-22 6:59 ` Dave Airlie
2008-09-22 6:59 ` Dave Airlie
[not found] ` <21d7e9970809212359y6876c405ub57dca3e9ee737e4-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-22 7:01 ` David Miller
2008-09-22 7:01 ` David Miller
2008-09-22 22:15 ` Jiri Kosina
2008-09-22 22:15 ` Jiri Kosina
[not found] ` <Pine.LNX.4.64.0809230010460.27884-1ReQVI26iDCaZKY3DrU6dA@public.gmane.org>
2008-09-22 22:28 ` David Miller
2008-09-22 22:28 ` David Miller
[not found] ` <20080922.152815.22060684.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-23 1:26 ` Dave Airlie
2008-09-23 1:26 ` Dave Airlie
[not found] ` <21d7e9970809221826i76081719pdd749237580fc68e-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-23 1:59 ` David Miller
2008-09-23 1:59 ` David Miller
[not found] ` <20080922.185902.80812984.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-23 14:29 ` Jiri Kosina
2008-09-23 14:29 ` Jiri Kosina
2008-09-23 16:38 ` Renato S. Yamane
[not found] ` <alpine.LNX.1.10.0809231229460.4671-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-23 21:03 ` Dave Airlie
2008-09-23 21:03 ` Dave Airlie
[not found] ` <21d7e9970809231403wf766660u39908aca70548ca7-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-23 22:05 ` David Miller
2008-09-23 22:05 ` David Miller
2008-09-24 6:02 ` David Newall
2008-09-23 21:05 ` David Miller
2008-09-23 21:05 ` David Miller
[not found] ` <20080923.140519.268233735.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-23 21:09 ` Dave Airlie
2008-09-23 21:09 ` Dave Airlie
[not found] ` <21d7e9970809231409r3fdd640h53a72a808266d220-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-23 22:07 ` David Miller
2008-09-23 22:07 ` David Miller
[not found] ` <20080923.150722.141587696.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-23 22:12 ` Jeff Kirsher
2008-09-23 22:12 ` Jeff Kirsher
[not found] ` <9929d2390809231512w160d221axa2923a6b293a041-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-23 22:19 ` Jiri Kosina
2008-09-23 22:19 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809240014390.4671-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-24 4:12 ` David Miller
2008-09-24 4:12 ` David Miller
[not found] ` <20080923.211215.193696086.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-24 5:45 ` Dave Airlie [this message]
2008-09-24 5:45 ` Dave Airlie
[not found] ` <21d7e9970809232245x6a91c6e2l552ff039d07e2017-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-24 7:36 ` David Miller
2008-09-24 7:36 ` David Miller
2008-09-24 8:59 ` Dave Airlie
[not found] ` <21d7e9970809240159u6db747eex51892061846b2251-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-24 9:01 ` David Miller
2008-09-24 9:01 ` David Miller
[not found] ` <20080924.020116.193720569.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-24 9:16 ` Dave Airlie
2008-09-24 9:16 ` Dave Airlie
2008-09-24 16:33 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809241829500.4671-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-24 16:37 ` Jiri Kosina
2008-09-24 16:37 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809241836180.4671-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-24 18:10 ` Jiri Kosina
2008-09-24 18:10 ` Jiri Kosina
2008-09-24 20:18 ` Dave Airlie
2008-09-24 20:18 ` Dave Airlie
2008-09-24 22:54 ` Parag Warudkar
2008-09-24 22:54 ` Parag Warudkar
2008-09-24 20:07 ` Dave Airlie
[not found] ` <20080924.003638.71148740.davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>
2008-09-24 16:27 ` Jonathan Corbet
2008-09-24 16:27 ` Jonathan Corbet
[not found] ` <20080924102730.31ee305a-vw3g6Xz/EtPk1uMJSBkQmQ@public.gmane.org>
2008-09-24 16:56 ` Jiri Kosina
2008-09-24 16:56 ` Jiri Kosina
2008-09-25 19:01 ` Jiri Kosina
2008-09-25 19:01 ` Jiri Kosina
2008-09-24 20:47 ` Theodore Tso
2008-09-24 19:10 ` Kyle McMartin
2008-09-24 19:10 ` Kyle McMartin
[not found] ` <20080924191022.GC2591-EK4dZfYtfFRW/gs8oUvUg/d9D2ou9A/h@public.gmane.org>
2008-09-24 19:22 ` Jesse Brandeburg
2008-09-24 19:22 ` Jesse Brandeburg
2008-09-24 19:52 ` David Miller
2008-09-24 19:52 ` David Miller
2008-09-24 22:37 ` Jiri Kosina
2008-09-24 22:37 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809250036090.4671-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-25 18:39 ` H. Peter Anvin
2008-09-25 18:39 ` H. Peter Anvin
2008-09-25 20:45 ` Kok, Auke
2008-09-25 20:45 ` Kok, Auke
2008-09-24 23:15 ` Jiri Kosina
2008-09-24 23:15 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809250110070.4671-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-25 0:22 ` Dave Airlie
2008-09-25 0:22 ` Dave Airlie
[not found] ` <21d7e9970809241722w7c3bb6a5w1af5801b7380169d-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-25 1:27 ` Jiri Kosina
2008-09-25 1:27 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809250310190.4671-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-25 2:01 ` Frans Pop
2008-09-25 2:01 ` Frans Pop
[not found] ` <200809250401.54818.elendil-EIBgga6/0yRmR6Xm/wNWPw@public.gmane.org>
2008-09-25 17:24 ` Jiri Kosina
2008-09-25 17:24 ` Jiri Kosina
[not found] ` <Pine.LNX.4.64.0809251921340.18801-1ReQVI26iDCaZKY3DrU6dA@public.gmane.org>
2008-09-25 18:46 ` H. Peter Anvin
2008-09-25 18:46 ` H. Peter Anvin
2008-09-25 18:56 ` Jesse Barnes
2008-09-25 18:56 ` Jesse Barnes
[not found] ` <200809251156.10648.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2008-09-25 20:22 ` Jiri Kosina
2008-09-25 20:22 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809252218470.3389-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-25 19:36 ` Jesse Barnes
2008-09-25 19:36 ` Jesse Barnes
[not found] ` <200809251236.12287.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2008-09-25 20:35 ` Jiri Kosina
2008-09-25 20:35 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809252234400.3389-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-25 21:06 ` Dave Airlie
2008-09-25 21:06 ` Dave Airlie
[not found] ` <21d7e9970809251406gb2bdacbuf9ff1bde3d118cdb-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-25 21:42 ` Jesse Brandeburg
2008-09-25 21:42 ` Jesse Brandeburg
[not found] ` <4807377b0809251442x67e4e9eia706b70ae1c177ca-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-25 21:45 ` Dave Airlie
2008-09-25 21:45 ` Dave Airlie
[not found] ` <21d7e9970809251445s216efcc3kaba639d5e29c51aa-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-25 22:45 ` Jiri Kosina
2008-09-25 22:45 ` Jiri Kosina
[not found] ` <alpine.LNX.1.10.0809260042380.3389-JCEl3tv+2Z8CVLCxKZUutA@public.gmane.org>
2008-09-26 7:06 ` Alexey Rempel
2008-09-26 7:06 ` Alexey Rempel
2008-09-25 22:57 ` H. Peter Anvin
2008-09-25 22:57 ` H. Peter Anvin
[not found] ` <48DC176E.6020807-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>
2008-09-26 18:55 ` Krzysztof Halasa
2008-09-26 18:55 ` Krzysztof Halasa
[not found] ` <m38wten3dj.fsf-fiqtE+24Nu0B9AHHLWeGtNQXobZC6xk2@public.gmane.org>
2008-09-26 19:39 ` Alan Cox
2008-09-26 19:39 ` Alan Cox
2008-09-25 20:06 ` David Miller
2008-09-25 20:06 ` David Miller
2008-09-25 19:23 ` Krzysztof Halasa
2008-09-25 2:28 ` Jeff Garzik
2008-09-25 2:28 ` Jeff Garzik
[not found] ` <48DAF75D.4050908-o2qLIJkoznsdnm+yROfE0A@public.gmane.org>
2008-09-25 3:51 ` Dave Airlie
2008-09-25 3:51 ` Dave Airlie
[not found] ` <21d7e9970809242051x17785159ya7510d92f705f3cf-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-25 4:00 ` David Miller
2008-09-25 4:00 ` David Miller
2008-09-25 4:25 ` Jesse Brandeburg
2008-09-25 4:25 ` Jesse Brandeburg
[not found] ` <48DB12C9.5080104-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2008-09-25 16:26 ` Krzysztof Halasa
2008-09-25 16:26 ` Krzysztof Halasa
2008-09-25 0:26 ` Jesse Barnes
[not found] ` <200809241726.58628.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2008-09-25 0:33 ` Jiri Kosina
2008-09-25 0:33 ` Jiri Kosina
2008-09-25 16:08 ` Jesse Barnes
2008-09-25 19:43 ` Jesse Barnes
[not found] ` <200809251243.43441.jbarnes-Y1mF5jBUw70BENJcbMCuUQ@public.gmane.org>
2008-09-25 20:45 ` Jiri Kosina
2008-09-25 20:45 ` Jiri Kosina
2008-09-25 12:24 ` Jiri Kosina
2008-09-25 12:24 ` Jiri Kosina
2008-09-21 18:54 ` [Bug #11459] kernel crash after wifi connection established Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11407] suspend: unable to handle kernel paging request Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11442] btusb hibernation/suspend breakage in current -git Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11439] [2.6.27-rc4-git4] compilation warnings Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11476] failure to associate after resume from suspend to ram Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11501] Failed to open destination file: Permission deniedihex2fw Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11465] Linux-2.6.27-rc5, drm errors in log Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11506] oops during unmount - ext3? (2.6.27-rc5) Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11512] sort-of regression due to "kconfig: speed up all*config + randconfig" Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11507] usb: sometimes dead keyboard after boot Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11505] oltp ~10% regression with 2.6.27-rc5 on stoakley machine Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11516] severe performance degradation on x86_64 going from 2.6.26-rc9 -> 2.6.27-rc5 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-23 9:49 ` Jason Vas Dias
[not found] ` <200809230549.28544.jason.vas.dias-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2008-09-27 9:23 ` Thomas Gleixner
2008-09-27 9:23 ` Thomas Gleixner
[not found] ` <200809280138.57672.jason.vas.dias@gmail.com>
[not found] ` <200809280138.57672.jason.vas.dias-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2008-09-28 10:58 ` Thomas Gleixner
2008-09-28 10:58 ` Thomas Gleixner
2008-09-21 18:54 ` [Bug #11543] kernel panic: softlockup in tick_periodic() ??? Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-22 6:01 ` Cyrill Gorcunov
2008-09-22 6:01 ` Cyrill Gorcunov
2008-09-23 10:50 ` Thomas Gleixner
2008-09-23 10:50 ` Thomas Gleixner
[not found] ` <alpine.LFD.1.10.0809231244190.3247-dbfLifZv8x0yMciVaGeJ0d53zsg1cpMQ@public.gmane.org>
2008-09-23 13:52 ` Rafael J. Wysocki
2008-09-23 13:52 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11548] kernel BUG at drivers/pci/intel-iommu.c:1373! Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-24 1:18 ` Chris Mason
2008-09-24 1:18 ` Chris Mason
2008-09-24 18:23 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11549] 2.6.27-rc5 acpi: EC Storm error message on bootup Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 21:07 ` jmerkey
2008-09-21 18:54 ` [Bug #11551] Semi-repeatable hard lockup on 2.6.27-rc6 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 20:39 ` Steven Noonan
2008-09-21 20:39 ` Steven Noonan
2008-09-21 18:54 ` [Bug #11550] pnp: Huge number of "io resource overlap" messages Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11552] Disabling IRQ #23 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 23:16 ` Justin Mattock
2008-09-21 23:16 ` Justin Mattock
[not found] ` <dd18b0c30809211616g658b50c8k2ea9f9953f1de96f-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2008-09-22 10:53 ` Alan Stern
2008-09-22 10:53 ` Alan Stern
[not found] ` <Pine.LNX.4.44L0.0809220651080.13379-100000-pYrvlCTfrz9XsRXLowluHWD2FQJk+8+b@public.gmane.org>
2008-09-22 16:20 ` Justin Mattock
2008-09-22 16:20 ` Justin Mattock
2008-09-21 18:54 ` [Bug #11568] spontaneous reboot on resume with 2.6.27 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-23 2:13 ` Andy Wettstein
2008-09-23 2:13 ` Andy Wettstein
2008-09-21 18:54 ` [Bug #11569] Don't complain about disabled irqs when the system has paniced Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11590] Nokia 5310 Xpress usb-storage not mounting Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11610] Problem with kernel commit 664d080c41463570b95717b5ad86e79dc1be0877 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 23:10 ` Michal 'vorner' Vaner
2008-09-21 23:10 ` Michal 'vorner' Vaner
2008-09-21 18:54 ` [Bug #11608] 2.6.27-rc6 BUG: unable to handle kernel paging request Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-25 0:46 ` Chuck Ebbert
2008-09-25 0:46 ` Chuck Ebbert
[not found] ` <20080924204655.481478c6-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
2008-09-25 3:03 ` Nick Piggin
2008-09-25 3:03 ` Nick Piggin
2008-09-21 18:54 ` [Bug #11609] oops in find_get_page Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
2008-09-21 18:54 ` [Bug #11611] Commit 2344abbcbdb82140050e8be29d3d55e4f6fe860b breaks resume on nx6325 Rafael J. Wysocki
2008-09-21 18:54 ` Rafael J. Wysocki
[not found] ` <7lIhZC4hCxE.A.0gG.R0q1IB@albercik>
2008-09-21 20:43 ` [Bug #11555] rmmod ide-cd_mod: tried to init an initialized object, something is seriously wrong Mariusz Kozlowski
2008-09-21 20:43 ` Mariusz Kozlowski
2008-09-21 21:57 ` 2.6.27-rc6-git6: Reported regressions from 2.6.26 Alexey Starikovskiy
2008-09-21 21:57 ` Alexey Starikovskiy
-- strict thread matches above, loose matches on Subject: below --
2008-09-27 15:54 2.6.27-rc7-git5: " Rafael J. Wysocki
2008-09-27 15:56 ` [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM Rafael J. Wysocki
2008-09-27 15:56 ` Rafael J. Wysocki
2008-09-25 22:31 Andres Freund
2008-09-12 18:59 2.6.27-rc6-git2: Reported regressions from 2.6.26 Rafael J. Wysocki
2008-09-12 19:06 ` [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM Rafael J. Wysocki
2008-09-12 19:06 ` Rafael J. Wysocki
2008-09-06 21:24 2.6.27-rc5-git8: Reported regressions from 2.6.26 Rafael J. Wysocki
2008-09-06 21:30 ` [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM Rafael J. Wysocki
2008-09-06 21:30 ` Rafael J. Wysocki
2008-08-30 19:46 2.6.27-rc5-git2: Reported regressions from 2.6.26 Rafael J. Wysocki
2008-08-30 19:50 ` [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM Rafael J. Wysocki
2008-08-30 19:50 ` Rafael J. Wysocki
2008-08-23 18:07 2.6.27-rc4-git1: Reported regressions from 2.6.26 Rafael J. Wysocki
2008-08-23 18:10 ` [Bug #11382] e1000e: 2.6.27-rc1 corrupts EEPROM/NVM Rafael J. Wysocki
2008-08-23 18:10 ` Rafael J. Wysocki
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=21d7e9970809232245x6a91c6e2l552ff039d07e2017@mail.gmail.com \
--to=airlied-re5jqeeqqe8avxtiumwx3w@public.gmane.org \
--cc=chrisl-pghWNbHTmq7QT0dZR+AlfA@public.gmane.org \
--cc=davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org \
--cc=david.vrabel-kQvG35nSl+M@public.gmane.org \
--cc=jeffrey.t.kirsher-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org \
--cc=jkosina-AlSwsSmVLrQ@public.gmane.org \
--cc=kernel-testers-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=rjw-KKrjLPT3xs0@public.gmane.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 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.