[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-2aeb66d3036dbafc297ac553a257a40283dadb3e@git.kernel.org>
Date: Thu, 21 Oct 2010 07:40:39 GMT
From: "tip-bot for H. Peter Anvin" <hpa@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, hpa@...or.com, mingo@...hat.com,
eric.dumazet@...il.com, shaohua.li@...el.com, tglx@...utronix.de
Subject: [tip:x86/mm] x86-32, percpu: Correct the ordering of the percpu readmostly section
Commit-ID: 2aeb66d3036dbafc297ac553a257a40283dadb3e
Gitweb: http://git.kernel.org/tip/2aeb66d3036dbafc297ac553a257a40283dadb3e
Author: H. Peter Anvin <hpa@...or.com>
AuthorDate: Thu, 21 Oct 2010 00:15:00 -0700
Committer: H. Peter Anvin <hpa@...or.com>
CommitDate: Thu, 21 Oct 2010 00:15:00 -0700
x86-32, percpu: Correct the ordering of the percpu readmostly section
Checkin c957ef2c59e952803766ddc22e89981ab534606f had inconsistent
ordering of .data..percpu..page_aligned and .data..percpu..readmostly;
the still-broken version affected x86-32 at least.
The page aligned version really must be page aligned...
Signed-off-by: H. Peter Anvin <hpa@...or.com>
LKML-Reference: <1287544022.4571.7.camel@...10-conroe.sh.intel.com>
Cc: Shaohua Li <shaohua.li@...el.com>
Cc: Eric Dumazet <eric.dumazet@...il.com>
---
include/asm-generic/vmlinux.lds.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h
index d7e7b21..1457b81 100644
--- a/include/asm-generic/vmlinux.lds.h
+++ b/include/asm-generic/vmlinux.lds.h
@@ -706,8 +706,8 @@
VMLINUX_SYMBOL(__per_cpu_start) = .; \
*(.data..percpu..first) \
. = ALIGN(PAGE_SIZE); \
- *(.data..percpu..readmostly) \
*(.data..percpu..page_aligned) \
+ *(.data..percpu..readmostly) \
*(.data..percpu) \
*(.data..percpu..shared_aligned) \
VMLINUX_SYMBOL(__per_cpu_end) = .; \
--
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