OSDN Git Service

tile: handle __ro_after_init like parisc does
authorChris Metcalf <cmetcalf@mellanox.com>
Mon, 7 Nov 2016 19:32:02 +0000 (14:32 -0500)
committerChris Metcalf <cmetcalf@mellanox.com>
Mon, 14 Nov 2016 21:46:41 +0000 (16:46 -0500)
The tile architecture already marks RO_DATA as read-only in
the kernel, so grouping RO_AFTER_INIT_DATA with RO_DATA, as is
done by default, means the kernel faults in init when it tries
to write to RO_AFTER_INIT_DATA.  For now, just arrange that
__ro_after_init is handled like __write_once, i.e. __read_mostly.

Reviewed-by: Kees Cook <keescook@chromium.org>
Signed-off-by: Chris Metcalf <cmetcalf@mellanox.com>
arch/tile/include/asm/cache.h

index 6160761..4810e48 100644 (file)
@@ -61,4 +61,7 @@
  */
 #define __write_once __read_mostly
 
+/* __ro_after_init is the generic name for the tile arch __write_once. */
+#define __ro_after_init __read_mostly
+
 #endif /* _ASM_TILE_CACHE_H */