Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=0d2372e5d61ccc1c618aaf5099700c8dc76e234a
Commit:     0d2372e5d61ccc1c618aaf5099700c8dc76e234a
Parent:     7cf6ac2ae240e02ebdd2717a09d083d47cb60251
Author:     Haavard Skinnemoen <[EMAIL PROTECTED]>
AuthorDate: Mon Sep 17 11:13:45 2007 +0200
Committer:  Haavard Skinnemoen <[EMAIL PROTECTED]>
CommitDate: Thu Oct 11 12:16:57 2007 +0200

    [AVR32] Remove unneeded 8K alignment of .text section
    
    __init_end, which comes immediately before .text, is already page
    aligned, and that should be more than enough for the .text section.
    
    The reason why we need to align the .text section is because the
    interrupt handler offset is ORed with EVBA, so we need to provide
    enough alignment of EVBA that this OR operation works as an ADD.
    
    Currently, the last interrupt handler is not nearly a full page away
    from EVBA, so it won't be a problem.
    
    Signed-off-by: Haavard Skinnemoen <[EMAIL PROTECTED]>
---
 arch/avr32/kernel/vmlinux.lds.S |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/arch/avr32/kernel/vmlinux.lds.S b/arch/avr32/kernel/vmlinux.lds.S
index fef0e6d..ce9ac96 100644
--- a/arch/avr32/kernel/vmlinux.lds.S
+++ b/arch/avr32/kernel/vmlinux.lds.S
@@ -64,7 +64,6 @@ SECTIONS
                __init_end = .;
        }
 
-       . = ALIGN(8192);
        .text           : AT(ADDR(.text) - LOAD_OFFSET) {
                _evba = .;
                _text = .;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to