|
@@ -12,10 +12,24 @@
|
|
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
|
#define SMP_CACHE_BYTES L1_CACHE_BYTES
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * __read_mostly is used to keep rarely changing variables out of frequently
|
|
|
|
+ * updated cachelines. If an architecture doesn't support it, ignore the
|
|
|
|
+ * hint.
|
|
|
|
+ */
|
|
#ifndef __read_mostly
|
|
#ifndef __read_mostly
|
|
#define __read_mostly
|
|
#define __read_mostly
|
|
#endif
|
|
#endif
|
|
|
|
|
|
|
|
+/*
|
|
|
|
+ * __ro_after_init is used to mark things that are read-only after init (i.e.
|
|
|
|
+ * after mark_rodata_ro() has been called). These are effectively read-only,
|
|
|
|
+ * but may get written to during init, so can't live in .rodata (via "const").
|
|
|
|
+ */
|
|
|
|
+#ifndef __ro_after_init
|
|
|
|
+#define __ro_after_init __attribute__((__section__(".data..ro_after_init")))
|
|
|
|
+#endif
|
|
|
|
+
|
|
#ifndef ____cacheline_aligned
|
|
#ifndef ____cacheline_aligned
|
|
#define ____cacheline_aligned __attribute__((__aligned__(SMP_CACHE_BYTES)))
|
|
#define ____cacheline_aligned __attribute__((__aligned__(SMP_CACHE_BYTES)))
|
|
#endif
|
|
#endif
|