[<prev] [next>] [day] [month] [year] [list]
Message-Id: <200906151059.25242.lkml@morethan.org>
Date: Mon, 15 Jun 2009 10:59:21 -0500
From: "Michael S. Zick" <lkml@...ethan.org>
To: Linux Kernel Mailing List <linux-kernel@...r.kernel.org>
Cc: Harald Welte <HaraldWelte@...tech.com>
Subject: [RFC] Load cache_aligned sections, cache aligned (VIA, some Intel, others?)
The expected size of the processor cache line size is set
in the Kbuild menu by selection of the processor (sort-of).
How about telling the loader to cache-line align the cache_aligned sections?
This define comes in via (no pun intended): arch/x86/include/asm/cache.h
diff --git a/arch/x86/kernel/vmlinux_32.lds.S b/arch/x86/kernel/vmlinux_32.lds.S
index 62ad500..26f68a5 100644
--- a/arch/x86/kernel/vmlinux_32.lds.S
+++ b/arch/x86/kernel/vmlinux_32.lds.S
@@ -82,7 +82,7 @@ SECTIONS
*(.data.idt)
}
- . = ALIGN(32);
+ . = ALIGN(L1_CACHE_BYTES);
.data.cacheline_aligned : AT(ADDR(.data.cacheline_aligned) - LOAD_OFFSET) {
*(.data.cacheline_aligned)
}
Mike
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists