summaryrefslogtreecommitdiff
path: root/kern/llsync_i.h
diff options
context:
space:
mode:
authorRichard Braun <rbraun@sceen.net>2014-09-09 01:43:58 +0200
committerRichard Braun <rbraun@sceen.net>2014-09-09 01:43:58 +0200
commit6afbd6025745415fa984906291d7d2ed1f9f2f9b (patch)
treee4695258d09a5da6d47bb1e424851f75e710f742 /kern/llsync_i.h
parent569068cae6cdcb3d8804fb6075fa71b57a6e0f2d (diff)
kern/llsync: fix alignment of per-CPU data
Since these are now percpu variables, they don't require any particular alignment any more.
Diffstat (limited to 'kern/llsync_i.h')
-rw-r--r--kern/llsync_i.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/kern/llsync_i.h b/kern/llsync_i.h
index 23e9d88b..42972303 100644
--- a/kern/llsync_i.h
+++ b/kern/llsync_i.h
@@ -85,7 +85,7 @@ struct llsync_cpu_data {
int registered;
unsigned int gcid;
struct work_queue queue0;
-} __aligned(CPU_L1_SIZE);
+};
extern struct llsync_cpu_data llsync_cpu_data;