diff options
Diffstat (limited to 'arch/tile/mm')
| -rw-r--r-- | arch/tile/mm/extable.c | 2 | ||||
| -rw-r--r-- | arch/tile/mm/fault.c | 2 | ||||
| -rw-r--r-- | arch/tile/mm/homecache.c | 2 | ||||
| -rw-r--r-- | arch/tile/mm/init.c | 10 | 
4 files changed, 8 insertions, 8 deletions
| diff --git a/arch/tile/mm/extable.c b/arch/tile/mm/extable.c index 4fb0acb9d154..aeaf20c7aaa4 100644 --- a/arch/tile/mm/extable.c +++ b/arch/tile/mm/extable.c @@ -12,7 +12,7 @@   *   more details.   */ -#include <linux/module.h> +#include <linux/extable.h>  #include <linux/spinlock.h>  #include <linux/uaccess.h> diff --git a/arch/tile/mm/fault.c b/arch/tile/mm/fault.c index beba986589e5..709f8e9ba3e9 100644 --- a/arch/tile/mm/fault.c +++ b/arch/tile/mm/fault.c @@ -29,7 +29,7 @@  #include <linux/tty.h>  #include <linux/vt_kern.h>		/* For unblank_screen() */  #include <linux/highmem.h> -#include <linux/module.h> +#include <linux/extable.h>  #include <linux/kprobes.h>  #include <linux/hugetlb.h>  #include <linux/syscalls.h> diff --git a/arch/tile/mm/homecache.c b/arch/tile/mm/homecache.c index 40ca30a9fee3..b51cc28acd0a 100644 --- a/arch/tile/mm/homecache.c +++ b/arch/tile/mm/homecache.c @@ -47,7 +47,7 @@   * The noallocl2 option suppresses all use of the L2 cache to cache   * locally from a remote home.   */ -static int __write_once noallocl2; +static int __ro_after_init noallocl2;  static int __init set_noallocl2(char *str)  {  	noallocl2 = 1; diff --git a/arch/tile/mm/init.c b/arch/tile/mm/init.c index adce25462b0d..3a97e4d7205c 100644 --- a/arch/tile/mm/init.c +++ b/arch/tile/mm/init.c @@ -190,9 +190,9 @@ static void __init page_table_range_init(unsigned long start,  static int __initdata ktext_hash = 1;  /* .text pages */  static int __initdata kdata_hash = 1;  /* .data and .bss pages */ -int __write_once hash_default = 1;     /* kernel allocator pages */ +int __ro_after_init hash_default = 1;     /* kernel allocator pages */  EXPORT_SYMBOL(hash_default); -int __write_once kstack_hash = 1;      /* if no homecaching, use h4h */ +int __ro_after_init kstack_hash = 1;      /* if no homecaching, use h4h */  /*   * CPUs to use to for striping the pages of kernel data.  If hash-for-home @@ -203,7 +203,7 @@ int __write_once kstack_hash = 1;      /* if no homecaching, use h4h */  static __initdata struct cpumask kdata_mask;  static __initdata int kdata_arg_seen; -int __write_once kdata_huge;       /* if no homecaching, small pages */ +int __ro_after_init kdata_huge;       /* if no homecaching, small pages */  /* Combine a generic pgprot_t with cache home to get a cache-aware pgprot. */ @@ -896,8 +896,8 @@ void __init pgtable_cache_init(void)  		panic("pgtable_cache_init(): Cannot create pgd cache");  } -static long __write_once initfree = 1; -static bool __write_once set_initfree_done; +static long __ro_after_init initfree = 1; +static bool __ro_after_init set_initfree_done;  /* Select whether to free (1) or mark unusable (0) the __init pages. */  static int __init set_initfree(char *str) |