diff options
author | Sage Weil <sage@inktank.com> | 2013-08-15 14:11:45 -0400 |
---|---|---|
committer | Sage Weil <sage@inktank.com> | 2013-08-15 14:11:45 -0400 |
commit | ee3e542fec6e69bc9fb668698889a37d93950ddf (patch) | |
tree | e74ee766a4764769ef1d3d45d266b4dea64101d3 /arch/avr32/kernel | |
parent | fe2a801b50c0bb8039d627e5ae1fec249d10ff39 (diff) | |
parent | f1d6e17f540af37bb1891480143669ba7636c4cf (diff) |
Merge remote-tracking branch 'linus/master' into testing
Diffstat (limited to 'arch/avr32/kernel')
-rw-r--r-- | arch/avr32/kernel/process.c | 2 | ||||
-rw-r--r-- | arch/avr32/kernel/setup.c | 2 | ||||
-rw-r--r-- | arch/avr32/kernel/vmlinux.lds.S | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/arch/avr32/kernel/process.c b/arch/avr32/kernel/process.c index e7b61494c312..c2731003edef 100644 --- a/arch/avr32/kernel/process.c +++ b/arch/avr32/kernel/process.c | |||
@@ -341,7 +341,7 @@ unsigned long get_wchan(struct task_struct *p) | |||
341 | * is actually quite ugly. It might be possible to | 341 | * is actually quite ugly. It might be possible to |
342 | * determine the frame size automatically at build | 342 | * determine the frame size automatically at build |
343 | * time by doing this: | 343 | * time by doing this: |
344 | * - compile sched.c | 344 | * - compile sched/core.c |
345 | * - disassemble the resulting sched.o | 345 | * - disassemble the resulting sched.o |
346 | * - look for 'sub sp,??' shortly after '<schedule>:' | 346 | * - look for 'sub sp,??' shortly after '<schedule>:' |
347 | */ | 347 | */ |
diff --git a/arch/avr32/kernel/setup.c b/arch/avr32/kernel/setup.c index b4247f478065..209ae5ad3495 100644 --- a/arch/avr32/kernel/setup.c +++ b/arch/avr32/kernel/setup.c | |||
@@ -555,7 +555,7 @@ void __init setup_arch (char **cmdline_p) | |||
555 | { | 555 | { |
556 | struct clk *cpu_clk; | 556 | struct clk *cpu_clk; |
557 | 557 | ||
558 | init_mm.start_code = (unsigned long)_text; | 558 | init_mm.start_code = (unsigned long)_stext; |
559 | init_mm.end_code = (unsigned long)_etext; | 559 | init_mm.end_code = (unsigned long)_etext; |
560 | init_mm.end_data = (unsigned long)_edata; | 560 | init_mm.end_data = (unsigned long)_edata; |
561 | init_mm.brk = (unsigned long)_end; | 561 | init_mm.brk = (unsigned long)_end; |
diff --git a/arch/avr32/kernel/vmlinux.lds.S b/arch/avr32/kernel/vmlinux.lds.S index 9cd2bd91d64a..a4589176bed5 100644 --- a/arch/avr32/kernel/vmlinux.lds.S +++ b/arch/avr32/kernel/vmlinux.lds.S | |||
@@ -23,7 +23,7 @@ SECTIONS | |||
23 | { | 23 | { |
24 | . = CONFIG_ENTRY_ADDRESS; | 24 | . = CONFIG_ENTRY_ADDRESS; |
25 | .init : AT(ADDR(.init) - LOAD_OFFSET) { | 25 | .init : AT(ADDR(.init) - LOAD_OFFSET) { |
26 | _stext = .; | 26 | _text = .; |
27 | __init_begin = .; | 27 | __init_begin = .; |
28 | _sinittext = .; | 28 | _sinittext = .; |
29 | *(.text.reset) | 29 | *(.text.reset) |
@@ -46,7 +46,7 @@ SECTIONS | |||
46 | 46 | ||
47 | .text : AT(ADDR(.text) - LOAD_OFFSET) { | 47 | .text : AT(ADDR(.text) - LOAD_OFFSET) { |
48 | _evba = .; | 48 | _evba = .; |
49 | _text = .; | 49 | _stext = .; |
50 | *(.ex.text) | 50 | *(.ex.text) |
51 | *(.irq.text) | 51 | *(.irq.text) |
52 | KPROBES_TEXT | 52 | KPROBES_TEXT |