* Re: 2.6.9-rc2-mm2 [not found] <747804697@toto.iv> @ 2004-09-23 0:39 ` Peter Chubb 2004-09-23 0:43 ` 2.6.9-rc2-mm2 Jesse Barnes 2004-09-23 0:49 ` 2.6.9-rc2-mm2 Andrew Morton 0 siblings, 2 replies; 5+ messages in thread From: Peter Chubb @ 2004-09-23 0:39 UTC (permalink / raw) To: Jesse Barnes; +Cc: Andrew Morton, linux-kernel >>>>> "Jesse" == Jesse Barnes <jbarnes@engr.sgi.com> writes: Jesse> On Wednesday, September 22, 2004 4:12 pm, Andrew Morton wrote: >> - This kernel doesn't work on ia64 (instant reboot). But neither >> does 2.6.9-rc2, nor current Linus -bk. Is it just me? Jesse> I certainly hope so. Current bk works on my 2p Altix, and iirc Jesse> 2.6.9-rc2 worked as well. I'm trying 2.6.9-rc2-mm2 right now. Jesse> I haven't tried generic_defconfig yet either, maybe that's it? It no longer works on ZX. Don't know why. -- Dr Peter Chubb http://www.gelato.unsw.edu.au peterc AT gelato.unsw.edu.au The technical we do immediately, the political takes *forever* ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: 2.6.9-rc2-mm2 2004-09-23 0:39 ` 2.6.9-rc2-mm2 Peter Chubb @ 2004-09-23 0:43 ` Jesse Barnes 2004-09-23 6:23 ` 2.6.9-rc2-mm2 Andrew Morton 2004-09-23 0:49 ` 2.6.9-rc2-mm2 Andrew Morton 1 sibling, 1 reply; 5+ messages in thread From: Jesse Barnes @ 2004-09-23 0:43 UTC (permalink / raw) To: Peter Chubb; +Cc: Andrew Morton, linux-kernel On Wednesday, September 22, 2004 8:39 pm, Peter Chubb wrote: > >>>>> "Jesse" == Jesse Barnes <jbarnes@engr.sgi.com> writes: > > Jesse> On Wednesday, September 22, 2004 4:12 pm, Andrew Morton wrote: > >> - This kernel doesn't work on ia64 (instant reboot). But neither > >> does 2.6.9-rc2, nor current Linus -bk. Is it just me? > > Jesse> I certainly hope so. Current bk works on my 2p Altix, and iirc > Jesse> 2.6.9-rc2 worked as well. I'm trying 2.6.9-rc2-mm2 right now. > Jesse> I haven't tried generic_defconfig yet either, maybe that's it? > > It no longer works on ZX. Don't know why. Maybe this is another, more severe instance of the problem James reported last week that was worked around by enabling CONFIG_DISCONTIGMEM. Jesse ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: 2.6.9-rc2-mm2 2004-09-23 0:43 ` 2.6.9-rc2-mm2 Jesse Barnes @ 2004-09-23 6:23 ` Andrew Morton 0 siblings, 0 replies; 5+ messages in thread From: Andrew Morton @ 2004-09-23 6:23 UTC (permalink / raw) To: Jesse Barnes; +Cc: peterc, linux-kernel, linux-ia64, Luck, Tony Jesse Barnes <jbarnes@engr.sgi.com> wrote: > > On Wednesday, September 22, 2004 8:39 pm, Peter Chubb wrote: > > >>>>> "Jesse" == Jesse Barnes <jbarnes@engr.sgi.com> writes: > > > > Jesse> On Wednesday, September 22, 2004 4:12 pm, Andrew Morton wrote: > > >> - This kernel doesn't work on ia64 (instant reboot). But neither > > >> does 2.6.9-rc2, nor current Linus -bk. Is it just me? > > > > Jesse> I certainly hope so. Current bk works on my 2p Altix, and iirc > > Jesse> 2.6.9-rc2 worked as well. I'm trying 2.6.9-rc2-mm2 right now. > > Jesse> I haven't tried generic_defconfig yet either, maybe that's it? > > > > It no longer works on ZX. Don't know why. > > Maybe this is another, more severe instance of the problem James reported last > week that was worked around by enabling CONFIG_DISCONTIGMEM. > It looks like Tony is wearing the BPB. The below patch from September 8 is what causes my non-discontigmem virtual-mem-map ia64 box instantly reboot. Reverting it makes things happy. --- b/include/asm-ia64/page.h 2004-09-08 10:23:43 -07:00 +++ b/include/asm-ia64/page.h 2004-09-08 16:12:10 -07:00 @@ -86,13 +86,14 @@ #ifndef CONFIG_DISCONTIGMEM # ifdef CONFIG_VIRTUAL_MEM_MAP extern struct page *vmem_map; -# define pfn_valid(pfn) (((pfn) < max_mapnr) && ia64_pfn_valid(pfn)) -# define page_to_pfn(page) ((unsigned long) (page - vmem_map)) -# define pfn_to_page(pfn) (vmem_map + (pfn)) +# define pfn_valid(pfn) (((pfn) < max_mapnr) && ia64_pfn_valid(pfn)) +# define page_to_pfn(page) ((unsigned long) (page - vmem_map)) +# define pfn_to_page(pfn) (vmem_map + (pfn)) +# else +# define pfn_valid(pfn) (((pfn) < max_mapnr) && ia64_pfn_valid(pfn)) +# define page_to_pfn(page) ((unsigned long) (page - mem_map)) +# define pfn_to_page(pfn) (mem_map + (pfn)) # endif -#define pfn_valid(pfn) (((pfn) < max_mapnr) && ia64_pfn_valid(pfn)) -#define page_to_pfn(page) ((unsigned long) (page - mem_map)) -#define pfn_to_page(pfn) (mem_map + (pfn)) #endif /* CONFIG_DISCONTIGMEM */ #define page_to_phys(page) (page_to_pfn(page) << PAGE_SHIFT) Process question: how is it possible that the ia64 tree could have been this dead for this long? ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: 2.6.9-rc2-mm2 2004-09-23 0:39 ` 2.6.9-rc2-mm2 Peter Chubb 2004-09-23 0:43 ` 2.6.9-rc2-mm2 Jesse Barnes @ 2004-09-23 0:49 ` Andrew Morton 2004-09-23 6:31 ` 2.6.9-rc2-mm2 (compile stats) John Cherry 1 sibling, 1 reply; 5+ messages in thread From: Andrew Morton @ 2004-09-23 0:49 UTC (permalink / raw) To: Peter Chubb; +Cc: jbarnes, linux-kernel Peter Chubb <peterc@gelato.unsw.edu.au> wrote: > > >>>>> "Jesse" == Jesse Barnes <jbarnes@engr.sgi.com> writes: > > Jesse> On Wednesday, September 22, 2004 4:12 pm, Andrew Morton wrote: > >> - This kernel doesn't work on ia64 (instant reboot). But neither > >> does 2.6.9-rc2, nor current Linus -bk. Is it just me? > > Jesse> I certainly hope so. Current bk works on my 2p Altix, and iirc > Jesse> 2.6.9-rc2 worked as well. I'm trying 2.6.9-rc2-mm2 right now. > Jesse> I haven't tried generic_defconfig yet either, maybe that's it? > > It no longer works on ZX. Don't know why. > umm, to which "it" do you refer? Three kernel versions are under discussion here... ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: 2.6.9-rc2-mm2 (compile stats) 2004-09-23 0:49 ` 2.6.9-rc2-mm2 Andrew Morton @ 2004-09-23 6:31 ` John Cherry 0 siblings, 0 replies; 5+ messages in thread From: John Cherry @ 2004-09-23 6:31 UTC (permalink / raw) To: Andrew Morton; +Cc: linux-kernel Linux 2.6 (mm tree) Compile Statistics (gcc 3.2.2) Kernel bzImage bzImage bzImage modules bzImage modules (defconfig) (allno) (allyes) (allyes) (allmod) (allmod) --------------- ---------- -------- -------- -------- -------- -------- 2.6.9-rc2-mm2 10w/0e 5w/0e 2919w/0e 41w/0e 4w/0e 2954w/0e 2.6.9-rc2-mm1 0w/0e 2w/0e 3541w/9e 41w/0e 3w/9e 3567w/0e 2.6.9-rc1-mm4 0w/0e 1w/0e 55w/0e 3w/0e 2w/0e 48w/0e 2.6.9-rc1-mm3 0w/0e 0w/0e 55w/13e 3w/0e 1w/0e 49w/1e 2.6.9-rc1-mm2 0w/0e 0w/0e 53w/11e 3w/0e 1w/0e 47w/0e 2.6.9-rc1-mm1 0w/0e 0w/0e 80w/0e 4w/0e 1w/0e 74w/0e 2.6.8.1-mm4 0w/0e 0w/0e 78w/0e 4w/0e 1w/0e 73w/0e 2.6.8.1-mm3 0w/96e 0w/0e 78w/97e 4w/0e 1w/0e 74w/89e 2.6.8.1-mm2 0w/96e 0w/0e 78w/97e 4w/0e 1w/0e 74w/89e 2.6.8.1-mm1 0w/0e 0w/0e 78w/0e 4w/0e 1w/0e 74w/0e 2.6.8-rc4-mm1 0w/0e 0w/5e 81w/0e 4w/0e 1w/0e 75w/0e 2.6.8-rc3-mm2 1w/7e 0w/5e 82w/8e 4w/0e 2w/8e 75w/0e 2.6.8-rc3-mm1 0w/0e 1w/5e 81w/9e 4w/0e 1w/0e 75w/0e 2.6.8-rc2-mm2 0w/0e 4w/5e 87w/9e 4w/0e 1w/0e 80w/0e 2.6.8-rc2-mm1 0w/0e 0w/0e 83w/9e 3w/0e 1w/0e 81w/0e 2.6.8-rc1-mm1 0w/0e 0w/0e 88w/9e 5w/0e 1w/0e 87w/0e 2.6.7-mm7 0w/0e 0w/0e 89w/9e 5w/0e 1w/0e 84w/0e 2.6.7-mm6 0w/0e 0w/0e 85w/9e 5w/0e 1w/0e 80w/0e 2.6.7-mm5 0w/0e 0w/0e 92w/0e 5w/0e 1w/0e 87w/0e 2.6.7-mm4 0w/0e 0w/0e 94w/0e 5w/0e 1w/0e 89w/0e 2.6.7-mm3 0w/0e 0w/0e 90w/6e 5w/0e 1w/0e 86w/0e 2.6.7-mm2 0w/0e 0w/0e 109w/0e 7w/0e 1w/0e 106w/0e 2.6.7-mm1 0w/0e 5w/0e 108w/0e 5w/0e 1w/0e 104w/0e 2.6.7-rc3-mm2 0w/0e 5w/0e 105w/10e 5w/0e 2w/0e 100w/2e 2.6.7-rc3-mm1 0w/0e 5w/0e 104w/10e 5w/0e 2w/0e 100w/2e 2.6.7-rc2-mm2 0w/0e 5w/0e 109w/10e 5w/0e 2w/0e 105w/2e 2.6.7-rc2-mm1 0w/0e 12w/0e 158w/13e 5w/0e 3w/0e 153w/4e 2.6.7-rc1-mm1 0w/0e 6w/0e 108w/0e 5w/0e 2w/0e 104w/0e 2.6.6-mm5 0w/0e 0w/0e 109w/5e 5w/0e 2w/0e 110w/0e 2.6.6-mm4 0w/0e 0w/0e 112w/9e 5w/0e 2w/5e 106w/1e 2.6.6-mm3 3w/9e 0w/0e 120w/26e 5w/0e 2w/0e 114w/10e 2.6.6-mm2 4w/11e 0w/0e 120w/24e 6w/0e 2w/0e 118w/9e 2.6.6-mm1 1w/0e 0w/0e 118w/25e 6w/0e 2w/0e 114w/10e 2.6.6-rc3-mm2 0w/0e 0w/0e 117w/ 0e 8w/0e 2w/0e 116w/0e 2.6.6-rc3-mm1 0w/0e 0w/0e 120w/10e 8w/0e 2w/0e 152w/2e 2.6.6-rc2-mm2 0w/0e 1w/5e 118w/ 0e 8w/0e 3w/0e 118w/0e 2.6.6-rc2-mm1 0w/0e 0w/0e 115w/ 0e 7w/0e 3w/0e 116w/0e 2.6.6-rc1-mm1 0w/0e 0w/7e 122w/ 0e 7w/0e 4w/0e 122w/0e 2.6.5-mm6 0w/0e 0w/0e 123w/ 0e 7w/0e 4w/0e 124w/0e 2.6.5-mm5 0w/0e 0w/0e 119w/ 0e 7w/0e 4w/0e 120w/0e 2.6.5-mm4 0w/0e 0w/0e 120w/ 0e 7w/0e 4w/0e 121w/0e 2.6.5-mm3 0w/0e 1w/0e 121w/12e 7w/0e 3w/0e 123w/0e 2.6.5-mm2 0w/0e 0w/0e 128w/12e 7w/0e 3w/0e 134w/0e 2.6.5-mm1 0w/0e 5w/0e 122w/ 0e 7w/0e 3w/0e 124w/0e 2.6.5-rc3-mm4 0w/0e 0w/0e 124w/ 0e 8w/0e 4w/0e 126w/0e 2.6.5-rc3-mm3 0w/0e 5w/0e 129w/14e 8w/0e 4w/0e 129w/6e 2.6.5-rc3-mm2 0w/0e 5w/0e 130w/14e 8w/0e 4w/0e 129w/6e 2.6.5-rc3-mm1 0w/0e 5w/0e 129w/ 0e 8w/0e 4w/0e 129w/0e 2.6.5-rc2-mm5 0w/0e 5w/0e 130w/ 0e 8w/0e 4w/0e 129w/0e 2.6.5-rc2-mm4 0w/0e 5w/0e 134w/ 0e 8w/0e 3w/0e 133w/0e 2.6.5-rc2-mm3 0w/0e 5w/0e 134w/ 0e 8w/0e 3w/0e 133w/0e 2.6.5-rc2-mm2 0w/0e 5w/0e 137w/ 0e 8w/0e 3w/0e 134w/0e 2.6.5-rc2-mm1 0w/0e 5w/0e 136w/ 0e 8w/0e 3w/0e 134w/0e 2.6.5-rc1-mm2 0w/0e 5w/0e 135w/ 5e 8w/0e 3w/0e 133w/0e 2.6.5-rc1-mm1 0w/0e 5w/0e 135w/ 5e 8w/0e 3w/0e 133w/0e 2.6.4-mm2 1w/2e 5w/2e 144w/10e 8w/0e 3w/2e 144w/0e 2.6.4-mm1 1w/0e 5w/0e 146w/ 5e 8w/0e 3w/0e 144w/0e 2.6.4-rc2-mm1 1w/0e 5w/0e 146w/12e 11w/0e 3w/0e 147w/2e 2.6.4-rc1-mm2 1w/0e 5w/0e 144w/ 0e 11w/0e 3w/0e 145w/0e 2.6.4-rc1-mm1 1w/0e 5w/0e 147w/ 5e 11w/0e 3w/0e 147w/0e 2.6.3-mm4 1w/0e 5w/0e 146w/ 0e 7w/0e 3w/0e 142w/0e 2.6.3-mm3 1w/2e 5w/2e 146w/15e 7w/0e 3w/2e 144w/5e 2.6.3-mm2 1w/8e 5w/0e 140w/ 0e 7w/0e 3w/0e 138w/0e 2.6.3-mm1 1w/0e 5w/0e 143w/ 5e 7w/0e 3w/0e 141w/0e 2.6.3-rc3-mm1 1w/0e 0w/0e 144w/13e 7w/0e 3w/0e 142w/3e 2.6.3-rc2-mm1 1w/0e 0w/265e 144w/ 5e 7w/0e 3w/0e 145w/0e 2.6.3-rc1-mm1 1w/0e 0w/265e 141w/ 5e 7w/0e 3w/0e 143w/0e 2.6.2-mm1 2w/0e 0w/264e 147w/ 5e 7w/0e 3w/0e 173w/0e 2.6.2-rc3-mm1 2w/0e 0w/265e 146w/ 5e 7w/0e 3w/0e 172w/0e 2.6.2-rc2-mm2 0w/0e 0w/264e 145w/ 5e 7w/0e 3w/0e 171w/0e 2.6.2-rc2-mm1 0w/0e 0w/264e 146w/ 5e 7w/0e 3w/0e 172w/0e 2.6.2-rc1-mm3 0w/0e 0w/265e 144w/ 8e 7w/0e 3w/0e 169w/0e 2.6.2-rc1-mm2 0w/0e 0w/264e 144w/ 5e 10w/0e 3w/0e 171w/0e 2.6.2-rc1-mm1 0w/0e 0w/264e 144w/ 5e 10w/0e 3w/0e 171w/0e 2.6.1-mm5 2w/5e 0w/264e 153w/11e 10w/0e 3w/0e 180w/0e 2.6.1-mm4 0w/821e 0w/264e 154w/ 5e 8w/1e 5w/0e 179w/0e 2.6.1-mm3 0w/0e 0w/0e 151w/ 5e 10w/0e 3w/0e 177w/0e 2.6.1-mm2 0w/0e 0w/0e 143w/ 5e 12w/0e 3w/0e 171w/0e 2.6.1-mm1 0w/0e 0w/0e 146w/ 9e 12w/0e 6w/0e 171w/0e 2.6.1-rc2-mm1 0w/0e 0w/0e 149w/ 0e 12w/0e 6w/0e 171w/4e 2.6.1-rc1-mm2 0w/0e 0w/0e 157w/15e 12w/0e 3w/0e 185w/4e 2.6.1-rc1-mm1 0w/0e 0w/0e 156w/10e 12w/0e 3w/0e 184w/2e 2.6.0-mm2 0w/0e 0w/0e 161w/ 0e 12w/0e 3w/0e 189w/0e 2.6.0-mm1 0w/0e 0w/0e 173w/ 0e 12w/0e 3w/0e 212w/0e Web page with links to complete details: http://developer.osdl.org/cherry/compile/ John ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-09-23 6:31 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <747804697@toto.iv>
2004-09-23 0:39 ` 2.6.9-rc2-mm2 Peter Chubb
2004-09-23 0:43 ` 2.6.9-rc2-mm2 Jesse Barnes
2004-09-23 6:23 ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-23 0:49 ` 2.6.9-rc2-mm2 Andrew Morton
2004-09-23 6:31 ` 2.6.9-rc2-mm2 (compile stats) John Cherry
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox