Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 74387
b: refs/heads/master
c: 3c83567
h: refs/heads/master
i:
  74385: f36bfa7
  74383: b1c4a99
v: v3
  • Loading branch information
David Howells authored and Linus Torvalds committed Nov 29, 2007
1 parent 54ad13d commit 63b431b
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 16 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9e6c1e633355b69803094ecbac4cecc96e00965c
refs/heads/master: 3c835670ab5f72a4ea2d0db232b1acc07924f186
2 changes: 1 addition & 1 deletion trunk/arch/frv/kernel/break.S
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ __break_trace_through_exceptions:
# entry point for Break Exceptions/Interrupts
#
###############################################################################
.text
.section .text.break
.balign 4
.globl __entry_break
__entry_break:
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/frv/kernel/entry.S
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

#define nr_syscalls ((syscall_table_size)/4)

.text
.section .text.entry
.balign 4

.macro LEDS val
Expand Down
27 changes: 15 additions & 12 deletions trunk/arch/frv/kernel/vmlinux.lds.S
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ SECTIONS
*(.data.init_task)
}

. = ALIGN(4096);
.data.page_aligned : { *(.data.idt) }

. = ALIGN(L1_CACHE_BYTES);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }

.trap : {
/* trap table management - read entry-table.S before modifying */
. = ALIGN(8192);
Expand All @@ -86,28 +92,25 @@ SECTIONS
*(.trap.break)
}

. = ALIGN(4096);
.data.page_aligned : { *(.data.idt) }

. = ALIGN(L1_CACHE_BYTES);
.data.cacheline_aligned : { *(.data.cacheline_aligned) }

/* Text and read-only data */
. = ALIGN(4);
_text = .;
_stext = .;
.text : {
*(
.text.start .text.*
*(.text.start)
*(.text.entry)
*(.text.break)
*(.text.tlbmiss)
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
#ifdef CONFIG_DEBUG_INFO
*(
.init.text
.exit.text
.exitcall.exit
#endif
)
TEXT_TEXT
SCHED_TEXT
LOCK_TEXT
#endif
*(.fixup)
*(.gnu.warning)
*(.exitcall.exit)
Expand Down
2 changes: 1 addition & 1 deletion trunk/arch/frv/mm/tlb-miss.S
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <asm/highmem.h>
#include <asm/spr-regs.h>

.section .text
.section .text.tlbmiss
.balign 4

.globl __entry_insn_mmu_miss
Expand Down

0 comments on commit 63b431b

Please sign in to comment.