login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2008
»
October
»
8
Re: mmotm 2008-10-02-16-17 uploaded
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Andrew Morton
Subject:
Re: mmotm 2008-10-02-16-17 uploaded
Date: Tuesday, October 7, 2008 - 5:01 pm
On Wed, 8 Oct 2008 08:47:53 +0900 KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> wrote:
quoted text
> On Tue, 07 Oct 2008 09:18:03 -0700 > Yinghai Lu <yinghai@kernel.org> wrote: > > > KAMEZAWA Hiroyuki wrote: > > > I'm sorry if alread fixed. > > > > > > Folloing function in git-x86.patch touches invalid address. > > > == > > > +void __init early_cpu_init(void) > > > +{ > > > + struct cpu_dev **cdev; > > > + int count = 0; > > > + > > > + printk("KERNEL supported cpus:\n"); > > > + for (cdev = __x86_cpu_dev_start; cdev < __x86_cpu_dev_end; cdev++) { > > > + struct cpu_dev *cpudev = *cdev; > > > + unsigned int j; > > > + > > > + if (count >= X86_VENDOR_NUM) > > > + break; > > > + cpu_devs[count] = cpudev; > > > + count++; > > > + > > > + for (j = 0; j < 2; j++) { > > > + if (!cpudev->c_ident[j]) > > > + continue; > > > + printk(" %s %s\n", cpudev->c_vendor, > > > + cpudev->c_ident[j]); > > > + } > > > + } > > > + > > > + early_identify_cpu(&boot_cpu_data); > > > } > > > == > > > printk(" %s %s\n", cpudev->c_vendor, cpudev->c_ident[j]); > > > touches invalid address. (following is printk() result by > > > replacing %s with %p. > > > == > > > ffffffff8066e38a ffffffff8066e383 > > > ffffffff8066e3ab ffffffff8066e3a2 > > > ffffffff8066e3af ffffffff8066e3b7 > > > 807064c0c7c74855 08ec834853e58948 > > > 807064c0c7c74855 74c085fffffe9fe8 > > > == > > > and the kernel never boots on my box. > > > > could be merging problem again. > > > > please check in arch/x86/kernel/vmliux_64.lds.S > > > > it should be like > > > > __con_initcall_end = .; > > __x86_cpu_dev_start = .; > > .x86_cpu_dev.init : AT(ADDR(.x86_cpu_dev.init) - LOAD_OFFSET) { > > *(.x86_cpu_dev.init) > > } > > __x86_cpu_dev_end = .; > > > > DYN_ARRAY_INIT(8) > > > > SECURITY_INIT
The above is what's presently in Ingo's "tip" tree.
quoted text
> Oh, yes. like this. > == > __con_initcall_end = .; > __x86_cpu_dev_start = .; > .x86_cpu_dev.init : AT(ADDR(.x86_cpu_dev.init) - LOAD_OFFSET) { > *(.x86_cpu_dev.init) > } > SECURITY_INIT > __x86_cpu_dev_end = .; > == > > I'll try next version when it comes.
If that fixes it then Ingo's tree will need fixing too, I suppose. --
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:
Re: mmotm 2008-10-02-16-17 uploaded
, Randy.Dunlap
, (Thu Oct 2, 5:17 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, Andrew Morton
, (Thu Oct 2, 5:45 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, Randy Dunlap
, (Thu Oct 2, 8:32 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, Andrew Morton
, (Thu Oct 2, 8:37 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, Randy Dunlap
, (Thu Oct 2, 8:43 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, KAMEZAWA Hiroyuki
, (Tue Oct 7, 12:33 am)
Re: mmotm 2008-10-02-16-17 uploaded
, Yinghai Lu
, (Tue Oct 7, 9:18 am)
Re: mmotm 2008-10-02-16-17 uploaded
, KAMEZAWA Hiroyuki
, (Tue Oct 7, 4:47 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, Andrew Morton
, (Tue Oct 7, 5:01 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, KAMEZAWA Hiroyuki
, (Tue Oct 7, 5:34 pm)
Re: mmotm 2008-10-02-16-17 uploaded
, Ingo Molnar
, (Wed Oct 8, 2:50 am)
Navigation
Create content
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Rafael J. Wysocki
[Bug #16136] Linux 2.6.34 causes system lockup on Compaq Presario 2200 Laptop
Joerg Roedel
Re: [patch] dma-debug: off by one issue
Tetsuo Handa
Re: [AppArmor #7 0/13] AppArmor security module
Pekka Enberg
Re: BUG in free_block (tainted)
Jakub Narebski
Re: [PATCH] gitweb: Fix shortlog only showing HEAD revision.
git
:
Christian Stimming
git-gui: Fix broken revert confirmation.
Johannes Schindelin
Re: [PATCH 2/2] git-svn: support fetch with autocrlf on
Mark Burton
Re: [PATCH] builtin-branch: highlight current remote branches with an asterisk
Junio C Hamano
Re: git-svnimport
Junio C Hamano
Re: [PATCH 6/6] Teach core object handling functions about gitlinks
linux-netdev
:
Nick Piggin
Re: Kernel WARNING: at net/core/dev.c:1330 __netif_schedule+0x2c/0x98()
Daniel Lezcano
getsockopt(TCP_DEFER_ACCEPT) value change
David Miller
Re: 2.6.27.18: bnx2/tg3: BUG: "scheduling while atomic" trying to ifenslave a seco...
Amit Kumar Salecha
[PATCH NEXT 10/10] qlcnic: add cksum flag
Patrick McHardy
Re: [PATCH RESEND 1/3] netfilter: xtables: inclusion of xt_condition
git-commits-head
:
Linux Kernel Mailing List
ath9k_htc: Allocate URBs properly
Linux Kernel Mailing List
ath9k: Added get_survey callback in order to get channel noise
Linux Kernel Mailing List
ALSA: snd-usb-caiaq: Do not expose hardware input mode 0 of A4DJ
Linux Kernel Mailing List
cpumask: make irq_set_affinity() take a const struct cpumask
Linux Kernel Mailing List
V4L/DVB (9041): Add support YUAN High-Tech STK7700D (1164:1f08)
openbsd-misc
:
Conor
Re: RFID Reader
Josh Grosse
ssh/sshd challenge-response seems to have stopped working in -current
Stuart Henderson
Re: SquidGuard problem
Henning Brauer
Re: 3ware hardware raid support?
Ryan McBride
Re: Packets Per Second Limit?
Colocation donated by:
Syndicate