login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2010
»
April
»
1
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenGL on RS780 (was: Re: Linux 2.6.34-rc3)
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Alex Deucher
Subject:
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenGL on RS780 (was: Re: Linux 2.6.34-rc3)
Date: Thursday, April 1, 2010 - 3:07 pm
On Thu, Apr 1, 2010 at 5:46 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote:
quoted text
> On Thursday 01 April 2010, Alex Deucher wrote: >> On Thu, Apr 1, 2010 at 5:08 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote: >> > On Thursday 01 April 2010, Alex Deucher wrote: >> >> On Thu, Apr 1, 2010 at 4:48 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote: >> >> > On Thursday 01 April 2010, Alex Deucher wrote: >> >> >> On Thu, Apr 1, 2010 at 4:28 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote: >> >> >> > On Thursday 01 April 2010, Alex Deucher wrote: >> >> >> >> On Thu, Apr 1, 2010 at 2:36 AM, Clemens Ladisch <clemens@ladisch.de> wrote: >> >> >> >> > Alex Deucher wrote: >> >> >> >> >> On Wed, Mar 31, 2010 at 9:13 PM, Rafael J. Wysocki <rjw@sisk.pl> wrote: >> >> >> >> >>> On Tuesday 30 March 2010, Rafael J. Wysocki wrote: >> >> >> >> >>>> > PCI quirk: RS780/RS880: work around missing MSI initialization >> >> >> >> >>>> >> >> >> >> >>>> This one (commit a5ee4eb7541) broke OpenGL acceleration on my new test box >> >> >> >> >>>> which happens to have a RS780. >> >> >> >> > >> >> >> >> > So it's better to disable MSI unconditionally. >> >> >> >> > >> >> >> >> > Rafael, can you check if MSI works for the HDMI audio device? >> >> >> >> > (I'd guess it doesn't.) >> >> >> >> > >> >> >> >> >> I also have the attached patch queued in via Dave's tree to disable >> >> >> >> >> MSI on all IGP chips for the time being. >> >> >> >> > >> >> >> >> > This disables MSI only for the graphics device. I'd prefer to have >> >> >> >> > the quirk on its bridge so that MSI gets disabled for the HDMI audio >> >> >> >> > device too, to avoid having to duplicate this quirk in the snd-hda-intel >> >> >> >> > driver. >> >> >> >> > >> >> >> >> > ========== >> >> >> >> > >> >> >> >> > PCI quirk: RS780/RS880: disable MSI completely >> >> >> >> > >> >> >> >> > The missing initialization of the nb_cntl.strap_msi_enable does not seem >> >> >> >> > to be the only problem that prevents MSI, so that quirk is not >> >> >> >> > sufficient to enable MSI on all machines. To be safe, unconditionally >> >> >> >> > disable MSI for the internal graphics and HDMI audio on these chipsets. >> >> >> >> > >> >> >> >> > Signed-off-by: Clemens Ladisch <clemens@ladisch.de> >> >> >> >> >> >> >> >> Works fine here. >> >> >> >> >> >> >> >> Tested-by: Alex Deucher <alexdeucher@gmail.com> >> >> >> > >> >> >> > Unfortunately it doesn't work for me without the >> >> >> > >> >> >> > if ((rdev->family >= CHIP_RV380) && >> >> >> > (!(rdev->flags & RADEON_IS_IGP))) >> >> >> > >> >> >> > radeon quirk. >> >> >> >> >> >> what are your pci ids? >> >> > >> >> > 1022:960b >> >> > >> >> > I guess 1022 is AMD. >> >> > >> >> > OK, I'll try to add that. >> >> >> >> It's possible your oem has the wrong vendor id for the 0x9602 bridge. >> > >> > Yes, the patch below works. >> > >> > Thanks, >> > Rafael >> > >> > >> > --- >> > drivers/gpu/drm/radeon/radeon_irq_kms.c | 3 -- >> > drivers/pci/quirks.c | 36 ++------------------------------ >> > 2 files changed, 4 insertions(+), 35 deletions(-) >> > >> > Index: linux-2.6/drivers/pci/quirks.c >> > =================================================================== >> > --- linux-2.6.orig/drivers/pci/quirks.c >> > +++ linux-2.6/drivers/pci/quirks.c >> > @@ -2123,6 +2123,9 @@ static void __devinit quirk_disable_msi( >> > } >> > } >> > DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_8131_BRIDGE, quirk_disable_msi); >> > +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, 0x9602, quirk_disable_msi); >> > +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ASUSTEK, 0x9602, quirk_disable_msi); >> > +DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AI, 0x9602, quirk_disable_msi); >> > DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_VIA, 0xa238, quirk_disable_msi); >> > >> > /* Go through the list of Hypertransport capabilities and >> > @@ -2495,39 +2498,6 @@ DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AT >> > DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ATI, 0x4375, >> > quirk_msi_intx_disable_bug); >> > >> > -/* >> > - * MSI does not work with the AMD RS780/RS880 internal graphics and HDMI audio >> > - * devices unless the BIOS has initialized the nb_cntl.strap_msi_enable bit. >> > - */ >> > -static void __init rs780_int_gfx_disable_msi(struct pci_dev *int_gfx_bridge) >> > -{ >> > - u32 nb_cntl; >> > - >> > - if (!int_gfx_bridge->subordinate) >> > - return; >> > - >> > - pci_bus_write_config_dword(int_gfx_bridge->bus, PCI_DEVFN(0, 0), >> > - 0x60, 0); >> > - pci_bus_read_config_dword(int_gfx_bridge->bus, PCI_DEVFN(0, 0), >> > - 0x64, &nb_cntl); >> > - >> > - if (!(nb_cntl & BIT(10))) { >> > - dev_warn(&int_gfx_bridge->dev, >> > - FW_WARN "RS780: MSI for internal graphics disabled\n"); >> > - int_gfx_bridge->subordinate->bus_flags |= PCI_BUS_FLAGS_NO_MSI; >> > - } >> > -} >> > - >> > -#define PCI_DEVICE_ID_AMD_RS780_P2P_INT_GFX 0x9602 >> > - >> > -DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_AMD, >> > - PCI_DEVICE_ID_AMD_RS780_P2P_INT_GFX, >> > - rs780_int_gfx_disable_msi); >> > -/* wrong vendor ID on M4A785TD motherboard: */ >> > -DECLARE_PCI_FIXUP_FINAL(PCI_VENDOR_ID_ASUSTEK, >> > - PCI_DEVICE_ID_AMD_RS780_P2P_INT_GFX, >> > - rs780_int_gfx_disable_msi); >> > - >> > #endif /* CONFIG_PCI_MSI */ >> > >> > #ifdef CONFIG_PCI_IOV >> > Index: linux-2.6/drivers/gpu/drm/radeon/radeon_irq_kms.c >> > =================================================================== >> > --- linux-2.6.orig/drivers/gpu/drm/radeon/radeon_irq_kms.c >> > +++ linux-2.6/drivers/gpu/drm/radeon/radeon_irq_kms.c >> > @@ -117,8 +117,7 @@ int radeon_irq_kms_init(struct radeon_de >> > /* MSIs don't seem to work reliably on all IGP >> > * chips. Disable MSI on them for now. >> > */ >> > - if ((rdev->family >= CHIP_RV380) && >> > - (!(rdev->flags & RADEON_IS_IGP))) { >> > + if (rdev->family >= CHIP_RV380) { >> > int ret = pci_enable_msi(rdev->pdev); >> > if (!ret) { >> > rdev->msi_enabled = 1; >> > >> >> Let's skip this second chunk for now as there are other non-RS780 IGP >> chips that could be problematic, so I'd rather just leave MSIs >> disabled for now. > > Works for me. > > So do you want me to resubmit? >
Please. Thanks, Alex
quoted text
> Rafael >
--
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
Linux 2.6.34-rc3
, Linus Torvalds
, (Tue Mar 30, 10:50 am)
[Regression, post-rc2] Commit a5ee4eb7541 breaks OpenGL on ...
, Rafael J. Wysocki
, (Tue Mar 30, 2:16 pm)
Re: [stable] [Regression, post-rc2] Commit a5ee4eb7541 bre ...
, Greg KH
, (Wed Mar 31, 1:34 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Wed Mar 31, 6:13 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Wed Mar 31, 7:19 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Clemens Ladisch
, (Wed Mar 31, 11:36 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 8:01 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Linus Torvalds
, (Thu Apr 1, 9:29 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 10:07 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Linus Torvalds
, (Thu Apr 1, 10:24 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Clemens Ladisch
, (Thu Apr 1, 10:50 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 10:53 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Thu Apr 1, 12:46 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Linus Torvalds
, (Thu Apr 1, 1:17 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 1:23 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Thu Apr 1, 1:28 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 1:39 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Thu Apr 1, 1:48 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 2:00 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 2:01 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Thu Apr 1, 2:08 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 2:13 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Thu Apr 1, 2:46 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Alex Deucher
, (Thu Apr 1, 3:07 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Jesse Barnes
, (Thu Apr 1, 3:48 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Thu Apr 1, 4:20 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Thu Apr 1, 4:23 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Linus Torvalds
, (Thu Apr 1, 5:23 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Andrew Morton
, (Fri Apr 2, 8:24 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Fri Apr 2, 9:46 am)
Ugly rmap NULL ptr deref oopsie on hibernate (was Linux 2. ...
, Borislav Petkov
, (Fri Apr 2, 10:59 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Fri Apr 2, 11:09 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Fri Apr 2, 11:37 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Rik van Riel
, (Fri Apr 2, 3:01 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Fri Apr 2, 5:19 pm)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Clemens Ladisch
, (Sat Apr 3, 11:08 am)
Re: [Regression, post-rc2] Commit a5ee4eb7541 breaks OpenG ...
, Rafael J. Wysocki
, (Sat Apr 3, 12:33 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Minchan Kim
, (Sun Apr 4, 9:12 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Rik van Riel
, (Sun Apr 4, 10:24 am)
[PATCH] rmap: fix anon_vma_fork() memory leak
, Rik van Riel
, (Sun Apr 4, 4:09 pm)
Re: [PATCH] rmap: fix anon_vma_fork() memory leak
, Minchan Kim
, (Sun Apr 4, 4:56 pm)
Re: [PATCH] rmap: fix anon_vma_fork() memory leak
, Linus Torvalds
, (Mon Apr 5, 8:37 am)
Re: [PATCH] rmap: fix anon_vma_fork() memory leak
, Minchan Kim
, (Mon Apr 5, 8:48 am)
Re: [PATCH] rmap: fix anon_vma_fork() memory leak
, Rik van Riel
, (Mon Apr 5, 9:04 am)
[PATCH -v2] rmap: fix anon_vma_fork() memory leak
, Rik van Riel
, (Mon Apr 5, 9:13 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, KOSAKI Motohiro
, (Tue Apr 6, 1:53 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, KOSAKI Motohiro
, (Tue Apr 6, 3:09 am)
[No subject]
, Rik van Riel
, (Tue Apr 6, 7:34 am)
[No subject]
, Rik van Riel
, (Tue Apr 6, 7:38 am)
[No subject]
, Minchan Kim
, (Tue Apr 6, 8:34 am)
[No subject]
, Rik van Riel
, (Tue Apr 6, 8:40 am)
[No subject]
, Linus Torvalds
, (Tue Apr 6, 8:55 am)
[No subject]
, Minchan Kim
, (Tue Apr 6, 8:58 am)
[No subject]
, Minchan Kim
, (Tue Apr 6, 9:23 am)
[No subject]
, Linus Torvalds
, (Tue Apr 6, 9:28 am)
[No subject]
, Linus Torvalds
, (Tue Apr 6, 9:32 am)
[No subject]
, Minchan Kim
, (Tue Apr 6, 9:45 am)
[No subject]
, Linus Torvalds
, (Tue Apr 6, 9:53 am)
[No subject]
, Minchan Kim
, (Tue Apr 6, 9:54 am)
[No subject]
, Rik van Riel
, (Tue Apr 6, 10:04 am)
[No subject]
, Borislav Petkov
, (Tue Apr 6, 10:05 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 11:28 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Andrew Morton
, (Tue Apr 6, 12:03 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Steinar H. Gunderson
, (Tue Apr 6, 12:10 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 12:10 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 12:35 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Borislav Petkov
, (Tue Apr 6, 12:42 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 1:02 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Steinar H. Gunderson
, (Tue Apr 6, 1:46 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Borislav Petkov
, (Tue Apr 6, 1:51 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 1:56 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Steinar H. Gunderson
, (Tue Apr 6, 2:05 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 2:27 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Borislav Petkov
, (Tue Apr 6, 3:59 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Rik van Riel
, (Tue Apr 6, 4:22 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 4:27 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 4:37 pm)
[PATCH] rmap: make anon_vma_prepare link in all the anon_v ...
, Rik van Riel
, (Tue Apr 6, 4:54 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Tue Apr 6, 5:10 pm)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Rik van Riel
, (Tue Apr 6, 6:18 pm)
Re: [PATCH] rmap: make anon_vma_prepare link in all the an ...
, KOSAKI Motohiro
, (Wed Apr 7, 12:00 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Borislav Petkov
, (Wed Apr 7, 12:22 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Borislav Petkov
, (Wed Apr 7, 12:29 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Peter Zijlstra
, (Wed Apr 7, 1:36 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Peter Zijlstra
, (Wed Apr 7, 1:37 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Peter Zijlstra
, (Wed Apr 7, 1:41 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Johannes Weiner
, (Wed Apr 7, 2:16 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Peter Zijlstra
, (Wed Apr 7, 2:37 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Pekka Enberg
, (Wed Apr 7, 3:09 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, KOSAKI Motohiro
, (Wed Apr 7, 3:12 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Paulo Marques
, (Wed Apr 7, 7:05 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Rik van Riel
, (Wed Apr 7, 7:12 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Borislav Petkov
, (Wed Apr 7, 7:13 am)
Re: [PATCH] rmap: make anon_vma_prepare link in all the an ...
, Rik van Riel
, (Wed Apr 7, 7:48 am)
[PATCH -v2] rmap: make anon_vma_prepare link in all the an ...
, Rik van Riel
, (Wed Apr 7, 7:54 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Wed Apr 7, 8:30 am)
Re: Ugly rmap NULL ptr deref oopsie on hibernate (was Linu ...
, Linus Torvalds
, (Wed Apr 7, 8:46 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Wed Apr 7, 8:52 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Minchan Kim
, (Wed Apr 7, 8:55 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Wed Apr 7, 9:56 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Wed Apr 7, 2:19 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Wed Apr 7, 2:52 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Wed Apr 7, 3:09 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Wed Apr 7, 3:15 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Wed Apr 7, 4:37 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Wed Apr 7, 5:38 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, KOSAKI Motohiro
, (Wed Apr 7, 7:03 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Wed Apr 7, 7:33 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Wed Apr 7, 10:47 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Thu Apr 8, 7:11 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Thu Apr 8, 11:25 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Thu Apr 8, 11:32 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Thu Apr 8, 1:31 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Thu Apr 8, 2:00 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Thu Apr 8, 4:16 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Thu Apr 8, 4:47 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Thu Apr 8, 5:50 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Thu Apr 8, 6:30 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, KOSAKI Motohiro
, (Thu Apr 8, 6:45 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Fri Apr 9, 2:21 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Fri Apr 9, 9:35 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Fri Apr 9, 10:40 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Fri Apr 9, 10:50 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Fri Apr 9, 12:14 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Fri Apr 9, 12:32 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Fri Apr 9, 1:03 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Johannes Weiner
, (Fri Apr 9, 1:43 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Fri Apr 9, 1:57 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Fri Apr 9, 2:33 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Fri Apr 9, 4:22 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Fri Apr 9, 4:45 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Johannes Weiner
, (Fri Apr 9, 4:54 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Fri Apr 9, 4:56 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Fri Apr 9, 5:03 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Fri Apr 9, 5:11 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Fri Apr 9, 5:19 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Johannes Weiner
, (Fri Apr 9, 5:31 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Fri Apr 9, 5:32 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 12:27 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 4:26 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Sat Apr 10, 7:45 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 8:24 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 9:38 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 9:41 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 10:05 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 10:07 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 11:21 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 11:26 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 11:51 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 11:58 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Sat Apr 10, 12:36 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 1:05 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 1:12 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Sat Apr 10, 1:24 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Sat Apr 10, 1:32 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 1:34 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 1:36 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 1:40 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Sat Apr 10, 1:43 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 2:25 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 2:30 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sat Apr 10, 2:51 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Johannes Weiner
, (Sat Apr 10, 3:49 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sat Apr 10, 4:31 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sun Apr 11, 6:08 am)
[PATCH 1/3] mm: make page freeing path RCU-safe
, Borislav Petkov
, (Sun Apr 11, 6:19 am)
[PATCH 2/3] mm: cleanup find_mergeable_anon_vma complexity
, Borislav Petkov
, (Sun Apr 11, 6:19 am)
[PATCH 3/3] mm: fixup vma_adjust
, Borislav Petkov
, (Sun Apr 11, 6:19 am)
[PATCH 2/3] mm: cleanup find_mergeable_anon_vma complexity
, Borislav Petkov
, (Sun Apr 11, 6:25 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sun Apr 11, 10:07 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sun Apr 11, 10:16 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Sun Apr 11, 11:55 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Sun Apr 11, 12:49 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Sun Apr 11, 2:45 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sun Apr 11, 5:13 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Sun Apr 11, 6:04 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Mon Apr 12, 12:20 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Mon Apr 12, 7:40 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Minchan Kim
, (Mon Apr 12, 8:17 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Mon Apr 12, 8:19 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Mon Apr 12, 8:33 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 8:44 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 8:51 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Mon Apr 12, 8:51 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Mon Apr 12, 9:01 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 9:02 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Mon Apr 12, 9:06 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 9:26 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 9:46 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Rik van Riel
, (Mon Apr 12, 11:40 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Mon Apr 12, 11:40 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Mon Apr 12, 12:00 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 12:17 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Mon Apr 12, 12:30 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Mon Apr 12, 12:44 pm)
[PATCH 1/4] Simplify and comment on anon_vma re-use for an ...
, Linus Torvalds
, (Mon Apr 12, 1:22 pm)
[PATCH 2/4] vma_adjust: fix the copying of anon_vma chains
, Linus Torvalds
, (Mon Apr 12, 1:23 pm)
[PATCH 3/4] anon_vma: clone the anon_vma chain in the righ ...
, Linus Torvalds
, (Mon Apr 12, 1:23 pm)
[PATCH 4/4] anonvma: when setting up page->mapping, we nee ...
, Linus Torvalds
, (Mon Apr 12, 1:23 pm)
Re: [PATCH 1/4] Simplify and comment on anon_vma re-use fo ...
, Rik van Riel
, (Mon Apr 12, 1:54 pm)
Re: [PATCH 2/4] vma_adjust: fix the copying of anon_vma chains
, Rik van Riel
, (Mon Apr 12, 1:54 pm)
Re: [PATCH 3/4] anon_vma: clone the anon_vma chain in the ...
, Rik van Riel
, (Mon Apr 12, 1:57 pm)
Re: [PATCH 4/4] anonvma: when setting up page->mapping, we ...
, Rik van Riel
, (Mon Apr 12, 2:03 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Mon Apr 12, 2:50 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 3:11 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Linus Torvalds
, (Mon Apr 12, 3:18 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Mon Apr 12, 3:29 pm)
Re: [PATCH 1/4] Simplify and comment on anon_vma re-use fo ...
, Johannes Weiner
, (Mon Apr 12, 4:54 pm)
Re: [PATCH 2/4] vma_adjust: fix the copying of anon_vma chains
, Johannes Weiner
, (Mon Apr 12, 4:59 pm)
Re: [PATCH 3/4] anon_vma: clone the anon_vma chain in the ...
, Johannes Weiner
, (Mon Apr 12, 5:18 pm)
Re: [PATCH 4/4] anonvma: when setting up page->mapping, we ...
, Johannes Weiner
, (Mon Apr 12, 5:41 pm)
Re: [PATCH 4/4] anonvma: when setting up page->mapping, we ...
, Linus Torvalds
, (Mon Apr 12, 6:08 pm)
Re: [PATCH 1/4] Simplify and comment on anon_vma re-use fo ...
, Minchan Kim
, (Mon Apr 12, 9:04 pm)
Re: [PATCH 2/4] vma_adjust: fix the copying of anon_vma chains
, Minchan Kim
, (Mon Apr 12, 9:15 pm)
Re: [PATCH 3/4] anon_vma: clone the anon_vma chain in the ...
, Minchan Kim
, (Mon Apr 12, 9:16 pm)
Re: [PATCH 4/4] anonvma: when setting up page->mapping, we ...
, Minchan Kim
, (Mon Apr 12, 9:23 pm)
Re: [PATCH 4/4] anonvma: when setting up page->mapping, we ...
, Minchan Kim
, (Mon Apr 12, 9:26 pm)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Borislav Petkov
, (Tue Apr 13, 2:38 am)
Re: [PATCH 1/4] Simplify and comment on anon_vma re-use fo ...
, Peter Zijlstra
, (Tue Apr 13, 2:51 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, KOSAKI Motohiro
, (Tue Apr 13, 3:36 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, KOSAKI Motohiro
, (Tue Apr 13, 3:53 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Tue Apr 13, 4:30 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, KOSAKI Motohiro
, (Tue Apr 13, 5:00 am)
Re: [PATCH -v2] rmap: make anon_vma_prepare link in all th ...
, Peter Zijlstra
, (Wed Apr 14, 7:27 am)
[PATCH] rmap: add exclusively owned pages to the newest an ...
, Rik van Riel
, (Wed Apr 14, 2:59 pm)
Re: [PATCH] rmap: add exclusively owned pages to the newes ...
, Johannes Weiner
, (Wed Apr 14, 4:20 pm)
Re: [PATCH] rmap: add exclusively owned pages to the newes ...
, Borislav Petkov
, (Thu Apr 15, 1:34 am)
Re: [PATCH] rmap: add exclusively owned pages to the newes ...
, Minchan Kim
, (Thu Apr 15, 9:02 am)
Re: [PATCH] rmap: add exclusively owned pages to the newes ...
, Linus Torvalds
, (Thu Apr 15, 1:01 pm)
Re: [PATCH] rmap: add exclusively owned pages to the newes ...
, Felipe Balbi
, (Thu Apr 15, 11:09 pm)
Re: [PATCH] rmap: add exclusively owned pages to the newes ...
, Linus Torvalds
, (Fri Apr 16, 7:48 am)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Ingo Molnar
Re: [patch] e1000=y && e1000e=m regression fix
Greg Kroah-Hartman
[PATCH 20/36] Driver core: Call device_pm_add() after bus_add_device() in device_a...
Eli Cohen
Re: LRO num of frags limit
Boaz Harrosh
how to use KBUILD_EXTRA_SYMBOLS
Pekka Enberg
Re: [PATCH] include/linux/slab.h: new KFREE() macro.
git
:
Bill Lear
cpio command not found
Jing Xue
Re: git rm --cached
Fredrik Kuivinen
Re: fatal: unable to create '.git/index': File exists
Michael S. Tsirkin
git-kill: rewrite history removing a commit
Johannes Sixt
Re: How to pull remote branch with specified commit id?
linux-netdev
:
Johann Baudy
Packet mmap: TX RING and zero copy
Stephen Hemminger
Re: NAPI, rx_no_buffer_count, e1000, r8169 and other actors
Jamie Lokier
Re: POHMELFS high performance network filesystem. Transactions, failover, performa...
Balazs Scheidler
Re: [PATCH 5/9] tproxy: allow non-local binds of IPv6 sockets if IP_TRANSPARENT is...
Paulius Zaleckas
Re: [RFC] Patch to option HSO driver to the kernel
openbsd-misc
:
Bryan Irvine
Re: DVD burn error: No space left on device
Netmaffia.hu
Tini Lányok AKCIÓBAN OTTHON
Siju George
This is what Linus Torvalds calls openBSD crowd
elitdostlar
Seks partneri arayan bayanlar bu adreste - 8878xs706x6438
Skylar Hawk
Re: asus eee 1201n - acpitz0 critical temperature 255C (5282K), shutting down
git-commits-head
:
Linux Kernel Mailing List
Linux 2.6.34-rc4
Linux Kernel Mailing List
x86 boot: only pick up additional EFI memmap if add_efi_memmap flag
Linux Kernel Mailing List
powerpc/fsl_msi: enable msi allocation in all banks
Linux Kernel Mailing List
[ALSA] hda-codec - Add support for VIA VT1708B HD audio codec
Linux Kernel Mailing List
ARM: dma-mapping: remove dmac_clean_range and dmac_inv_range
Colocation donated by:
Syndicate