login
Login
/
Register
Search
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2008
»
June
»
10
Re: 2.6.26-rc5-mm2 lockup up on Intel G33+ICH9R+Core2Duo, -mm1 okay
view
thread
!MAILaRCHIVE_VOTE_RePLACE
Previous message: [
thread
] [
date
] [
author
]
Next message: [thread] [
date
] [
author
]
[view in full thread]
From:
Grant Coady <grant_lkml@...>
To: Andrew Morton <akpm@...>
Cc: Grant Coady <gcoady.lk@...>, <linux-kernel@...>, <kernel-testers@...>, <linux-mm@...>, Keith Packard <keithp@...>
Subject:
Re: 2.6.26-rc5-mm2 lockup up on Intel G33+ICH9R+Core2Duo, -mm1 okay
Date: Tuesday, June 10, 2008 - 5:48 pm
On Tue, 10 Jun 2008 11:18:32 -0700, Andrew Morton <akpm@linux-foundation.org> wrote:
quoted text
>On Tue, 10 Jun 2008 20:20:09 +1000 Grant Coady <grant_lkml@dodo.com.au> wrote: > >> On Mon, 9 Jun 2008 22:31:45 -0700, Andrew Morton <akpm@linux-foundation.org> wrote: >> >> > >> >ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/2.6.26-rc5/2.6.26-rc5-mm2/ >> > >> >- This is a bugfixed version of 2.6.26-rc5-mm1 - mainly to repair a >> > vmscan.c bug which would have prevented testing of the other vmscan.c >> > bugs^Wchanges. >> >> No it's not :) >> >> -mm1 worked fine here but -mm2 locks up just after saying: >> agpgart: Detected 7164K stolen memory. >> >> Nothing in logs (session not recorded - hit reset to restart). >> >> config and dmseg for -mm1 at (same .config for mm2): >> >>
http://bugsplatter.mine.nu/test/boxen/pooh/config-2.6.26-rc5-mm1a.gz
>>
http://bugsplatter.mine.nu/test/boxen/pooh/dmesg-2.6.26-rc5-mm1a.gz
>> >> Grant. > >hm, intel-agp gtt stuff. > >Can you please see whether reverting Keith's stuff fixes it?
Yes, it does :) config + dmesg at:
http://bugsplatter.mine.nu/test/boxen/pooh/
(*-mm2b.gz) Grant.
quoted text
> > drivers/char/agp/agp.h | 3 --- > drivers/char/agp/backend.c | 2 -- > drivers/char/agp/generic.c | 28 ---------------------------- > drivers/char/agp/intel-agp.c | 5 ----- > include/linux/agp_backend.h | 5 ----- > 5 files changed, 43 deletions(-) > >diff -puN drivers/char/agp/agp.h~revert-intel-agp-rewrite-gtt-on-resume drivers/char/agp/agp.h >--- a/drivers/char/agp/agp.h~revert-intel-agp-rewrite-gtt-on-resume >+++ a/drivers/char/agp/agp.h >@@ -148,9 +148,6 @@ struct agp_bridge_data { > char minor_version; > struct list_head list; > u32 apbase_config; >- /* list of agp_memory mapped to the aperture */ >- struct list_head mapped_list; >- spinlock_t mapped_lock; > }; > > #define KB(x) ((x) * 1024) >diff -puN drivers/char/agp/backend.c~revert-intel-agp-rewrite-gtt-on-resume drivers/char/agp/backend.c >--- a/drivers/char/agp/backend.c~revert-intel-agp-rewrite-gtt-on-resume >+++ a/drivers/char/agp/backend.c >@@ -183,8 +183,6 @@ static int agp_backend_initialize(struct > rc = -EINVAL; > goto err_out; > } >- INIT_LIST_HEAD(&bridge->mapped_list); >- spin_lock_init(&bridge->mapped_lock); > > return 0; > >diff -puN drivers/char/agp/generic.c~revert-intel-agp-rewrite-gtt-on-resume drivers/char/agp/generic.c >--- a/drivers/char/agp/generic.c~revert-intel-agp-rewrite-gtt-on-resume >+++ a/drivers/char/agp/generic.c >@@ -426,10 +426,6 @@ int agp_bind_memory(struct agp_memory *c > > curr->is_bound = TRUE; > curr->pg_start = pg_start; >- spin_lock(&agp_bridge->mapped_lock); >- list_add(&curr->mapped_list, &agp_bridge->mapped_list); >- spin_unlock(&agp_bridge->mapped_lock); >- > return 0; > } > EXPORT_SYMBOL(agp_bind_memory); >@@ -462,34 +458,10 @@ int agp_unbind_memory(struct agp_memory > > curr->is_bound = FALSE; > curr->pg_start = 0; >- spin_lock(&curr->bridge->mapped_lock); >- list_del(&curr->mapped_list); >- spin_unlock(&curr->bridge->mapped_lock); > return 0; > } > EXPORT_SYMBOL(agp_unbind_memory); > >-/** >- * agp_rebind_emmory - Rewrite the entire GATT, useful on resume >- */ >-int agp_rebind_memory(void) >-{ >- struct agp_memory *curr; >- int ret_val = 0; >- >- spin_lock(&agp_bridge->mapped_lock); >- list_for_each_entry(curr, &agp_bridge->mapped_list, mapped_list) { >- ret_val = curr->bridge->driver->insert_memory(curr, >- curr->pg_start, >- curr->type); >- if (ret_val != 0) >- break; >- } >- spin_unlock(&agp_bridge->mapped_lock); >- return ret_val; >-} >-EXPORT_SYMBOL(agp_rebind_memory); >- > /* End - Routines for handling swapping of agp_memory into the GATT */ > > >diff -puN drivers/char/agp/intel-agp.c~revert-intel-agp-rewrite-gtt-on-resume drivers/char/agp/intel-agp.c >--- a/drivers/char/agp/intel-agp.c~revert-intel-agp-rewrite-gtt-on-resume >+++ a/drivers/char/agp/intel-agp.c >@@ -2176,7 +2176,6 @@ static void __devexit agp_intel_remove(s > static int agp_intel_resume(struct pci_dev *pdev) > { > struct agp_bridge_data *bridge = pci_get_drvdata(pdev); >- int ret_val; > > pci_restore_state(pdev); > >@@ -2204,10 +2203,6 @@ static int agp_intel_resume(struct pci_d > else if (bridge->driver == &intel_i965_driver) > intel_i915_configure(); > >- ret_val = agp_rebind_memory(); >- if (ret_val != 0) >- return ret_val; >- > return 0; > } > #endif >diff -puN include/linux/agp_backend.h~revert-intel-agp-rewrite-gtt-on-resume include/linux/agp_backend.h >--- a/include/linux/agp_backend.h~revert-intel-agp-rewrite-gtt-on-resume >+++ a/include/linux/agp_backend.h >@@ -30,8 +30,6 @@ > #ifndef _AGP_BACKEND_H > #define _AGP_BACKEND_H 1 > >-#include <linux/list.h> >- > #ifndef TRUE > #define TRUE 1 > #endif >@@ -88,8 +86,6 @@ struct agp_memory { > u8 is_bound; > u8 is_flushed; > u8 vmalloc_flag; >- /* list of agp_memory mapped to the aperture */ >- struct list_head mapped_list; > }; > > #define AGP_NORMAL_MEMORY 0 >@@ -108,7 +104,6 @@ extern struct agp_memory *agp_allocate_m > extern int agp_copy_info(struct agp_bridge_data *, struct agp_kern_info *); > extern int agp_bind_memory(struct agp_memory *, off_t); > extern int agp_unbind_memory(struct agp_memory *); >-extern int agp_rebind_memory(void); > extern void agp_enable(struct agp_bridge_data *, u32); > extern struct agp_bridge_data *agp_backend_acquire(struct pci_dev *); > extern void agp_backend_release(struct agp_bridge_data *); >_
--
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:
2.6.26-rc5-mm2
, Andrew Morton
, (Tue Jun 10, 1:31 am)
pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Jiri Slaby
, (Wed Jun 11, 2:08 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Bjorn Helgaas
, (Wed Jun 11, 3:03 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Jiri Slaby
, (Thu Jun 12, 5:10 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Bjorn Helgaas
, (Thu Jun 12, 5:22 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Jiri Slaby
, (Thu Jun 12, 5:39 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Bjorn Helgaas
, (Thu Jun 12, 5:57 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Jiri Slaby
, (Fri Jun 13, 12:05 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Bjorn Helgaas
, (Fri Jun 13, 1:23 pm)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Jiri Slaby
, (Mon Jun 16, 6:43 am)
Re: pnp changes -> suspend oops [Was: 2.6.26-rc5-mm2]
, Jiri Slaby
, (Thu Jun 12, 5:57 pm)
[BUG] 2.6.26-rc5-mm2 - kernel BUG at arch/x86/kernel/setup.c...
, Kamalesh Babulal
, (Wed Jun 11, 1:56 pm)
Re: [BUG] 2.6.26-rc5-mm2 - kernel BUG at arch/x86/kernel/set...
, Dave Hansen
, (Wed Jun 11, 2:28 pm)
Re: [BUG] 2.6.26-rc5-mm2 - kernel BUG at arch/x86/kernel/set...
, Vegard Nossum
, (Wed Jun 11, 2:37 pm)
Re: [BUG] 2.6.26-rc5-mm2 - kernel BUG at arch/x86/kernel/set...
, Kamalesh Babulal
, (Thu Jun 12, 2:55 am)
2.6.26-rc5-mm2: OOM with 1G free swap
, Alexey Dobriyan
, (Wed Jun 11, 2:00 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, Andrew Morton
, (Wed Jun 11, 2:27 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, Rik van Riel
, (Wed Jun 11, 8:57 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, Nick Piggin
, (Wed Jun 11, 9:44 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, KOSAKI Motohiro
, (Wed Jun 11, 2:36 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, Frederik Deweerdt
, (Wed Jun 11, 3:31 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, Nick Piggin
, (Wed Jun 11, 2:31 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, Nick Piggin
, (Wed Jun 11, 2:15 am)
Re: 2.6.26-rc5-mm2: OOM with 1G free swap
, Nick Piggin
, (Wed Jun 11, 2:11 am)
Re: 2.6.26-rc5-mm2 (compile error in mm/memory_hotplug.c)
, Yasunori Goto
, (Tue Jun 10, 10:26 pm)
Re: 2.6.26-rc5-mm2 compile error in vmscan.c
, Helge Hafting
, (Tue Jun 10, 7:50 am)
Re: 2.6.26-rc5-mm2 compile error in vmscan.c
, Andrew Morton
, (Tue Jun 10, 2:37 pm)
Re: 2.6.26-rc5-mm2 compile error in vmscan.c
, Helge Hafting
, (Thu Jun 12, 4:13 am)
Re: 2.6.26-rc5-mm2 compile error in vmscan.c
, Johannes Weiner
, (Tue Jun 10, 8:23 am)
Re: 2.6.26-rc5-mm2 lockup up on Intel G33+ICH9R+Core2Duo, -m...
, Grant Coady
, (Tue Jun 10, 6:20 am)
Re: 2.6.26-rc5-mm2 lockup up on Intel G33+ICH9R+Core2Duo, -m...
, Andrew Morton
, (Tue Jun 10, 2:18 pm)
Re: 2.6.26-rc5-mm2 lockup up on Intel G33+ICH9R+Core2Duo, -m...
, Grant Coady
, (Tue Jun 10, 5:48 pm)
Re: 2.6.26-rc5-mm2
, Nick Piggin
, (Tue Jun 10, 3:28 am)
Re: 2.6.26-rc5-mm2
, Lee Schermerhorn
, (Tue Jun 10, 11:34 am)
Re: 2.6.26-rc5-mm2
, Hugh Dickins
, (Tue Jun 10, 12:50 pm)
Re: 2.6.26-rc5-mm2
, Andrew Morton
, (Tue Jun 10, 4:34 am)
Re: 2.6.26-rc5-mm2
, Nick Piggin
, (Tue Jun 10, 4:48 am)
Re: 2.6.26-rc5-mm2
, Rik van Riel
, (Wed Jun 11, 2:09 pm)
Re: 2.6.26-rc5-mm2
, Nick Piggin
, (Wed Jun 11, 7:58 pm)
Re: 2.6.26-rc5-mm2
, Rik van Riel
, (Thu Jun 12, 3:29 pm)
Re: 2.6.26-rc5-mm2 (swap_state.c:77)
, Hugh Dickins
, (Thu Jun 12, 5:15 pm)
Re: 2.6.26-rc5-mm2 (swap_state.c:77)
, Rik van Riel
, (Fri Jun 13, 1:45 pm)
Re: 2.6.26-rc5-mm2 (swap_state.c:77)
, Hugh Dickins
, (Fri Jun 13, 5:15 pm)
Re: 2.6.26-rc5-mm2 (swap_state.c:77)
, Rik van Riel
, (Fri Jun 13, 6:03 pm)
Re: 2.6.26-rc5-mm2
, Andrew Morton
, (Tue Jun 10, 5:15 am)
Re: 2.6.26-rc5-mm2
, Rik van Riel
, (Tue Jun 10, 8:34 am)
Re: 2.6.26-rc5-mm2
, Nick Piggin
, (Tue Jun 10, 2:12 am)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Jeff Garzik
Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3
Christoph Hellwig
Re: [malware-list] [RFC 0/5] [TALPA] Intro to a linux interface for on access scan...
Heiko Carstens
Re: -mm merge plans for 2.6.23 -- sys_fallocate
Greg KH
[GIT PATCH] driver core patches against 2.6.24
git
:
linux-netdev
:
Jarek Poplawski
[PATCH] pkt_sched: Destroy gen estimators under rtnl_lock().
Arjan van de Ven
Re: [GIT]: Networking
Jens Axboe
Re: [BUG] New Kernel Bugs
Gerrit Renker
[PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side)
netbsd-tech-kern
:
Emmanuel Dreyfus
fixing send(2) semantics (kern/29750)
Christos Zoulas
Re: Melting down your network [Subject changed]
Juan RP
Changing the I/O scheduler on-the-fly
Emmanuel Dreyfus
Re: fixing send(2) semantics (kern/29750)
Colocation donated by:
Who's online
There are currently
5 users
and
863 guests
online.
Online users
zeekec
weddingphotowy
HyattFamilybjt
samsung32inchh
reversecellpho
Syndicate