* [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap
@ 2008-10-10 20:01 Stefan Bader
2008-10-10 20:16 ` [stable] " Greg KH
` (2 more replies)
0 siblings, 3 replies; 16+ messages in thread
From: Stefan Bader @ 2008-10-10 20:01 UTC (permalink / raw)
To: stable
Cc: linux-kernel, Thomas Gleixner, H. Peter Anvin, Yinghai Lu,
Ingo Molnar
[-- Attachment #1: Type: text/plain, Size: 792 bytes --]
Affected: 2.6.24-2.6.27
Someone from the community found out, that after repeatedly unloading and
loading a device driver that uses MSI IRQs, the system eventually assigned
the vector initially reserved for IRQ0 to the device driver.
The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR
when declaring the irq_vector table, the corresponding bit in the used_vectors
map is not set. So, if vectors are released and assigned often enough, the
vector will get assigned to another interrupt. This happens more often with
MSI interrupts as those are exclusively using a vector.
Fix this by setting the bit for the FIRST_DEVICE_VECTOR in the bitmap.
Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
--
When all other means of communication fail, try words!
[-- Attachment #2: 0001-x86-Reserve-FIRST_DEVICE_VECTOR-in-used_vectors-bit.patch --]
[-- Type: application/mbox, Size: 1523 bytes --]
^ permalink raw reply [flat|nested] 16+ messages in thread* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:01 [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap Stefan Bader @ 2008-10-10 20:16 ` Greg KH 2008-10-10 20:23 ` Ingo Molnar 2008-10-10 20:16 ` Greg KH 2008-10-10 20:18 ` Greg KH 2 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2008-10-10 20:16 UTC (permalink / raw) To: Stefan Bader Cc: stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel, H. Peter Anvin On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: > Affected: 2.6.24-2.6.27 > > Someone from the community found out, that after repeatedly unloading and > loading a device driver that uses MSI IRQs, the system eventually assigned > the vector initially reserved for IRQ0 to the device driver. > > The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR > when declaring the irq_vector table, the corresponding bit in the used_vectors > map is not set. So, if vectors are released and assigned often enough, the > vector will get assigned to another interrupt. This happens more often with > MSI interrupts as those are exclusively using a vector. > > Fix this by setting the bit for the FIRST_DEVICE_VECTOR in the bitmap. > > Signed-off-by: Stefan Bader <stefan.bader@canonical.com> Hint, if you want patches to go into the -stable tree, just add: cc: Stable <stable@kernel.org> to the patch when you submit it in the signed-off-by area, and it will be automatically sent to us when it goes into the main kernel tree. That makes it easier for the stable team, as we don't have to track things "by hand" to determine when and if a patch does go into Linus's tree. So if you can, please do this in the future. thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:16 ` [stable] " Greg KH @ 2008-10-10 20:23 ` Ingo Molnar 2008-10-10 20:29 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: Ingo Molnar @ 2008-10-10 20:23 UTC (permalink / raw) To: Greg KH Cc: Stefan Bader, stable, Thomas Gleixner, Yinghai Lu, linux-kernel, H. Peter Anvin * Greg KH <greg@kroah.com> wrote: > On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: > > Affected: 2.6.24-2.6.27 > > > > Someone from the community found out, that after repeatedly unloading and > > loading a device driver that uses MSI IRQs, the system eventually assigned > > the vector initially reserved for IRQ0 to the device driver. > > > > The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR > > when declaring the irq_vector table, the corresponding bit in the used_vectors > > map is not set. So, if vectors are released and assigned often enough, the > > vector will get assigned to another interrupt. This happens more often with > > MSI interrupts as those are exclusively using a vector. > > > > Fix this by setting the bit for the FIRST_DEVICE_VECTOR in the bitmap. > > > > Signed-off-by: Stefan Bader <stefan.bader@canonical.com> > > Hint, if you want patches to go into the -stable tree, just add: > cc: Stable <stable@kernel.org> > to the patch when you submit it in the signed-off-by area, and it will > be automatically sent to us when it goes into the main kernel tree. yes. Note that this is a special case, as there will be no upstream commit to tag with Cc: <stable@kernel.org>, because this bug got eliminated via not backportable means: APIC code unification. Acked-by: Ingo Molnar <mingo@elte.hu> Ingo ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:23 ` Ingo Molnar @ 2008-10-10 20:29 ` Greg KH 2008-10-10 20:36 ` Stefan Bader 0 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2008-10-10 20:29 UTC (permalink / raw) To: Ingo Molnar Cc: linux-kernel, Stefan Bader, H. Peter Anvin, Thomas Gleixner, Yinghai Lu, stable On Fri, Oct 10, 2008 at 10:23:50PM +0200, Ingo Molnar wrote: > > * Greg KH <greg@kroah.com> wrote: > > > On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: > > > Affected: 2.6.24-2.6.27 > > > > > > Someone from the community found out, that after repeatedly unloading and > > > loading a device driver that uses MSI IRQs, the system eventually assigned > > > the vector initially reserved for IRQ0 to the device driver. > > > > > > The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR > > > when declaring the irq_vector table, the corresponding bit in the used_vectors > > > map is not set. So, if vectors are released and assigned often enough, the > > > vector will get assigned to another interrupt. This happens more often with > > > MSI interrupts as those are exclusively using a vector. > > > > > > Fix this by setting the bit for the FIRST_DEVICE_VECTOR in the bitmap. > > > > > > Signed-off-by: Stefan Bader <stefan.bader@canonical.com> > > > > Hint, if you want patches to go into the -stable tree, just add: > > cc: Stable <stable@kernel.org> > > to the patch when you submit it in the signed-off-by area, and it will > > be automatically sent to us when it goes into the main kernel tree. > > yes. Note that this is a special case, as there will be no upstream > commit to tag with Cc: <stable@kernel.org>, because this bug got > eliminated via not backportable means: APIC code unification. > > Acked-by: Ingo Molnar <mingo@elte.hu> So this is a -stable release only patch? .28 will never get/need this? thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:29 ` Greg KH @ 2008-10-10 20:36 ` Stefan Bader 2008-10-10 20:41 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: Stefan Bader @ 2008-10-10 20:36 UTC (permalink / raw) To: Greg KH Cc: Ingo Molnar, linux-kernel, H. Peter Anvin, Thomas Gleixner, Yinghai Lu, stable Greg KH wrote: > On Fri, Oct 10, 2008 at 10:23:50PM +0200, Ingo Molnar wrote: >> * Greg KH <greg@kroah.com> wrote: >> >>> On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: >>>> Affected: 2.6.24-2.6.27 >>>> >>>> Someone from the community found out, that after repeatedly unloading and >>>> loading a device driver that uses MSI IRQs, the system eventually assigned >>>> the vector initially reserved for IRQ0 to the device driver. >>>> >>>> The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR >>>> when declaring the irq_vector table, the corresponding bit in the used_vectors >>>> map is not set. So, if vectors are released and assigned often enough, the >>>> vector will get assigned to another interrupt. This happens more often with >>>> MSI interrupts as those are exclusively using a vector. >>>> >>>> Fix this by setting the bit for the FIRST_DEVICE_VECTOR in the bitmap. >>>> >>>> Signed-off-by: Stefan Bader <stefan.bader@canonical.com> >>> Hint, if you want patches to go into the -stable tree, just add: >>> cc: Stable <stable@kernel.org> >>> to the patch when you submit it in the signed-off-by area, and it will >>> be automatically sent to us when it goes into the main kernel tree. >> yes. Note that this is a special case, as there will be no upstream >> commit to tag with Cc: <stable@kernel.org>, because this bug got >> eliminated via not backportable means: APIC code unification. >> >> Acked-by: Ingo Molnar <mingo@elte.hu> > > So this is a -stable release only patch? .28 will never get/need this? > > thanks, > > greg k-h Correct. Tried to hint this by the Affected line but should have been more verbose. Regards, Stefan -- When all other means of communication fail, try words! ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:36 ` Stefan Bader @ 2008-10-10 20:41 ` Greg KH 0 siblings, 0 replies; 16+ messages in thread From: Greg KH @ 2008-10-10 20:41 UTC (permalink / raw) To: Stefan Bader Cc: linux-kernel, stable, H. Peter Anvin, Ingo Molnar, Yinghai Lu, Thomas Gleixner On Fri, Oct 10, 2008 at 04:36:11PM -0400, Stefan Bader wrote: > Greg KH wrote: > > On Fri, Oct 10, 2008 at 10:23:50PM +0200, Ingo Molnar wrote: > >> * Greg KH <greg@kroah.com> wrote: > >> > >>> On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: > >>>> Affected: 2.6.24-2.6.27 > >>>> > >>>> Someone from the community found out, that after repeatedly unloading and > >>>> loading a device driver that uses MSI IRQs, the system eventually assigned > >>>> the vector initially reserved for IRQ0 to the device driver. > >>>> > >>>> The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR > >>>> when declaring the irq_vector table, the corresponding bit in the used_vectors > >>>> map is not set. So, if vectors are released and assigned often enough, the > >>>> vector will get assigned to another interrupt. This happens more often with > >>>> MSI interrupts as those are exclusively using a vector. > >>>> > >>>> Fix this by setting the bit for the FIRST_DEVICE_VECTOR in the bitmap. > >>>> > >>>> Signed-off-by: Stefan Bader <stefan.bader@canonical.com> > >>> Hint, if you want patches to go into the -stable tree, just add: > >>> cc: Stable <stable@kernel.org> > >>> to the patch when you submit it in the signed-off-by area, and it will > >>> be automatically sent to us when it goes into the main kernel tree. > >> yes. Note that this is a special case, as there will be no upstream > >> commit to tag with Cc: <stable@kernel.org>, because this bug got > >> eliminated via not backportable means: APIC code unification. > >> > >> Acked-by: Ingo Molnar <mingo@elte.hu> > > > > So this is a -stable release only patch? .28 will never get/need this? > > > > thanks, > > > > greg k-h > > Correct. Tried to hint this by the Affected line but should have been more verbose. Great, thanks for letting me know, I'll queue it up for -stable. Oh, next time, please don't attach patches in base64 format, that's a pain in the ass... thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:01 [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap Stefan Bader 2008-10-10 20:16 ` [stable] " Greg KH @ 2008-10-10 20:16 ` Greg KH 2008-10-10 20:22 ` Stefan Bader 2008-10-10 20:18 ` Greg KH 2 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2008-10-10 20:16 UTC (permalink / raw) To: Stefan Bader Cc: stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel, H. Peter Anvin On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: > Affected: 2.6.24-2.6.27 > > Someone from the community found out, that after repeatedly unloading and > loading a device driver that uses MSI IRQs, the system eventually assigned > the vector initially reserved for IRQ0 to the device driver. "Someone"? do you have a name or pointer to the person/bugreport so that they can be properly credited? thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:16 ` Greg KH @ 2008-10-10 20:22 ` Stefan Bader 0 siblings, 0 replies; 16+ messages in thread From: Stefan Bader @ 2008-10-10 20:22 UTC (permalink / raw) To: Greg KH Cc: stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel, H. Peter Anvin Greg KH wrote: > On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: >> Affected: 2.6.24-2.6.27 >> >> Someone from the community found out, that after repeatedly unloading and >> loading a device driver that uses MSI IRQs, the system eventually assigned >> the vector initially reserved for IRQ0 to the device driver. > > "Someone"? do you have a name or pointer to the person/bugreport so > that they can be properly credited? > I had a name in but the person did not want to be mentioned. > thanks, > > greg k-h -- When all other means of communication fail, try words! ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:01 [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap Stefan Bader 2008-10-10 20:16 ` [stable] " Greg KH 2008-10-10 20:16 ` Greg KH @ 2008-10-10 20:18 ` Greg KH 2008-10-10 20:24 ` Stefan Bader 2008-10-10 20:35 ` H. Peter Anvin 2 siblings, 2 replies; 16+ messages in thread From: Greg KH @ 2008-10-10 20:18 UTC (permalink / raw) To: Stefan Bader Cc: stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel, H. Peter Anvin On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: > Affected: 2.6.24-2.6.27 > > Someone from the community found out, that after repeatedly unloading and > loading a device driver that uses MSI IRQs, the system eventually assigned > the vector initially reserved for IRQ0 to the device driver. > > The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR > when declaring the irq_vector table, the corresponding bit in the used_vectors > map is not set. So, if vectors are released and assigned often enough, the > vector will get assigned to another interrupt. This happens more often with > MSI interrupts as those are exclusively using a vector. Is there a problem with being assigned to IRQ0 in situations like this? thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:18 ` Greg KH @ 2008-10-10 20:24 ` Stefan Bader 2008-10-10 20:35 ` H. Peter Anvin 1 sibling, 0 replies; 16+ messages in thread From: Stefan Bader @ 2008-10-10 20:24 UTC (permalink / raw) To: Greg KH Cc: stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel, H. Peter Anvin Greg KH wrote: > On Fri, Oct 10, 2008 at 04:01:54PM -0400, Stefan Bader wrote: >> Affected: 2.6.24-2.6.27 >> >> Someone from the community found out, that after repeatedly unloading and >> loading a device driver that uses MSI IRQs, the system eventually assigned >> the vector initially reserved for IRQ0 to the device driver. >> >> The reason for this is, that although IRQ0 is tied to the FIRST_DEVICE_VECTOR >> when declaring the irq_vector table, the corresponding bit in the used_vectors >> map is not set. So, if vectors are released and assigned often enough, the >> vector will get assigned to another interrupt. This happens more often with >> MSI interrupts as those are exclusively using a vector. > > Is there a problem with being assigned to IRQ0 in situations like this? > > thanks, > > greg k-h Yes, since IRQ0 is still wanted and used by the system timer. After the module get unloaded again, the vector gets freed and no timer interrupt is delivered anymore. Stefan -- When all other means of communication fail, try words! ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:18 ` Greg KH 2008-10-10 20:24 ` Stefan Bader @ 2008-10-10 20:35 ` H. Peter Anvin 2008-10-10 20:41 ` Greg KH 1 sibling, 1 reply; 16+ messages in thread From: H. Peter Anvin @ 2008-10-10 20:35 UTC (permalink / raw) To: Greg KH Cc: Stefan Bader, stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel Greg KH wrote: > > Is there a problem with being assigned to IRQ0 in situations like this? > On PCs, IRQ 0 is dedicated to use for the PIT. -hpa ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:35 ` H. Peter Anvin @ 2008-10-10 20:41 ` Greg KH 2008-10-10 20:50 ` Alan Cox 0 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2008-10-10 20:41 UTC (permalink / raw) To: H. Peter Anvin Cc: Stefan Bader, stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel On Fri, Oct 10, 2008 at 01:35:48PM -0700, H. Peter Anvin wrote: > Greg KH wrote: >> Is there a problem with being assigned to IRQ0 in situations like this? > > On PCs, IRQ 0 is dedicated to use for the PIT. Ah, I didn't realize it couldn't be shared. thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:41 ` Greg KH @ 2008-10-10 20:50 ` Alan Cox 2008-10-10 21:12 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: Alan Cox @ 2008-10-10 20:50 UTC (permalink / raw) To: Greg KH Cc: H. Peter Anvin, Stefan Bader, stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel On Fri, 10 Oct 2008 13:41:33 -0700 Greg KH <greg@kroah.com> wrote: > On Fri, Oct 10, 2008 at 01:35:48PM -0700, H. Peter Anvin wrote: > > Greg KH wrote: > >> Is there a problem with being assigned to IRQ0 in situations like this? > > > > On PCs, IRQ 0 is dedicated to use for the PIT. > > Ah, I didn't realize it couldn't be shared. And more importantly dev->irq == 0 or IRQ == 0 to anything but arch internal code means "no interrupt line". ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 20:50 ` Alan Cox @ 2008-10-10 21:12 ` Greg KH 2008-10-10 21:49 ` Alan Cox 0 siblings, 1 reply; 16+ messages in thread From: Greg KH @ 2008-10-10 21:12 UTC (permalink / raw) To: Alan Cox Cc: H. Peter Anvin, Stefan Bader, stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel On Fri, Oct 10, 2008 at 09:50:38PM +0100, Alan Cox wrote: > On Fri, 10 Oct 2008 13:41:33 -0700 > Greg KH <greg@kroah.com> wrote: > > > On Fri, Oct 10, 2008 at 01:35:48PM -0700, H. Peter Anvin wrote: > > > Greg KH wrote: > > >> Is there a problem with being assigned to IRQ0 in situations like this? > > > > > > On PCs, IRQ 0 is dedicated to use for the PIT. > > > > Ah, I didn't realize it couldn't be shared. > > And more importantly dev->irq == 0 or IRQ == 0 to anything but arch > internal code means "no interrupt line". I thought we had changed that a while ago, as some arches had 0 as a valid irq line. Anyway, thanks all for the information, I appreciate it. greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 21:12 ` Greg KH @ 2008-10-10 21:49 ` Alan Cox 2008-10-10 22:09 ` Greg KH 0 siblings, 1 reply; 16+ messages in thread From: Alan Cox @ 2008-10-10 21:49 UTC (permalink / raw) To: Greg KH Cc: H. Peter Anvin, Stefan Bader, stable, Thomas Gleixner, Ingo Molnar, Yinghai Lu, linux-kernel > > And more importantly dev->irq == 0 or IRQ == 0 to anything but arch > > internal code means "no interrupt line". > > I thought we had changed that a while ago, as some arches had 0 as a > valid irq line. No .. Linus decreed (and I think sensibly myself that IRQ = 0 meant no IRQ assigned).. the argument being that in C you naturally write stuff like if (!dev->irq) I can dig up the reference URLS to the list mails if you want ^ permalink raw reply [flat|nested] 16+ messages in thread
* Re: [stable] [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap 2008-10-10 21:49 ` Alan Cox @ 2008-10-10 22:09 ` Greg KH 0 siblings, 0 replies; 16+ messages in thread From: Greg KH @ 2008-10-10 22:09 UTC (permalink / raw) To: Alan Cox Cc: linux-kernel, Stefan Bader, stable, H. Peter Anvin, Thomas Gleixner, Yinghai Lu, Ingo Molnar On Fri, Oct 10, 2008 at 10:49:07PM +0100, Alan Cox wrote: > > > And more importantly dev->irq == 0 or IRQ == 0 to anything but arch > > > internal code means "no interrupt line". > > > > I thought we had changed that a while ago, as some arches had 0 as a > > valid irq line. > > No .. Linus decreed (and I think sensibly myself that IRQ = 0 meant no > IRQ assigned).. the argument being that in C you naturally write stuff > like > > if (!dev->irq) Ok, I was confused, thanks. > I can dig up the reference URLS to the list mails if you want Nah, I trust you :) thanks, greg k-h ^ permalink raw reply [flat|nested] 16+ messages in thread
end of thread, other threads:[~2008-10-10 22:13 UTC | newest] Thread overview: 16+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-10-10 20:01 [PATCH] x86: Reserve FIRST_DEVICE_VECTOR in used_vectors bitmap Stefan Bader 2008-10-10 20:16 ` [stable] " Greg KH 2008-10-10 20:23 ` Ingo Molnar 2008-10-10 20:29 ` Greg KH 2008-10-10 20:36 ` Stefan Bader 2008-10-10 20:41 ` Greg KH 2008-10-10 20:16 ` Greg KH 2008-10-10 20:22 ` Stefan Bader 2008-10-10 20:18 ` Greg KH 2008-10-10 20:24 ` Stefan Bader 2008-10-10 20:35 ` H. Peter Anvin 2008-10-10 20:41 ` Greg KH 2008-10-10 20:50 ` Alan Cox 2008-10-10 21:12 ` Greg KH 2008-10-10 21:49 ` Alan Cox 2008-10-10 22:09 ` Greg KH
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox