diff options
author | Richard Braun <rbraun@sceen.net> | 2014-09-09 01:43:58 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2014-09-09 01:43:58 +0200 |
commit | 6afbd6025745415fa984906291d7d2ed1f9f2f9b (patch) | |
tree | e4695258d09a5da6d47bb1e424851f75e710f742 | |
parent | 569068cae6cdcb3d8804fb6075fa71b57a6e0f2d (diff) |
kern/llsync: fix alignment of per-CPU data
Since these are now percpu variables, they don't require any particular
alignment any more.
-rw-r--r-- | kern/llsync_i.h | 2 |
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; |