diff options
author | Richard Braun <rbraun@sceen.net> | 2014-01-02 23:38:24 +0100 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2014-01-02 23:38:24 +0100 |
commit | b16a1df6c33e1b2ae1a4ecb40c781f140bbff63c (patch) | |
tree | 2b569c62d700fb60255013a0f9c12b91bbd811b7 | |
parent | 8ad09341a41f54c846296a4265d0914f24e5a69b (diff) |
x86/pmap: fix alignment of per-CPU mapping info
-rw-r--r-- | arch/x86/machine/pmap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/machine/pmap.c b/arch/x86/machine/pmap.c index 843db7e2..6464068f 100644 --- a/arch/x86/machine/pmap.c +++ b/arch/x86/machine/pmap.c @@ -105,7 +105,7 @@ static struct pmap_pt_level pmap_pt_levels[] __read_mostly = { struct pmap_tmp_mapping { struct mutex lock; unsigned long va; -}; +} __aligned(CPU_L1_SIZE); static struct pmap_tmp_mapping pmap_zero_mappings[MAX_CPUS]; static struct pmap_tmp_mapping pmap_root_ptp_mappings[MAX_CPUS]; |