diff options
author | Dan Magenheimer <[email protected]> | 2011-09-21 12:21:20 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <[email protected]> | 2012-01-23 16:08:09 -0500 |
commit | 072611ed1f291053a74b28b813d683a09495eba7 (patch) | |
tree | f87b881e4c64e1d0c1396373850514d969110dce | |
parent | 417fc2caef268ed23169316f6c5e3a33775bfae5 (diff) |
mm: cleancache: Use __read_mostly as appropiate.
The values are rarely changed so might as well put them in the
appropiate section.
Signed-off-by: Dan Magenheimer <[email protected]>
Signed-off-by: Konrad Wilk <[email protected]>
Cc: Kamezawa Hiroyuki <[email protected]>
Cc: Jan Beulich <[email protected]>
Acked-by: Seth Jennings <[email protected]>
Cc: Jeremy Fitzhardinge <[email protected]>
Cc: Hugh Dickins <[email protected]>
Cc: Johannes Weiner <[email protected]>
Cc: Nitin Gupta <[email protected]>
Cc: Matthew Wilcox <[email protected]>
Cc: Chris Mason <[email protected]>
Cc: Rik Riel <[email protected]>
Cc: Andrew Morton <[email protected]>
-rw-r--r-- | mm/cleancache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mm/cleancache.c b/mm/cleancache.c index deb9f2c06fb7..5646c740f613 100644 --- a/mm/cleancache.c +++ b/mm/cleancache.c @@ -25,14 +25,14 @@ * disabled), so is preferred to the slower alternative: a function * call that checks a non-global. */ -int cleancache_enabled; +int cleancache_enabled __read_mostly; EXPORT_SYMBOL(cleancache_enabled); /* * cleancache_ops is set by cleancache_ops_register to contain the pointers * to the cleancache "backend" implementation functions. */ -static struct cleancache_ops cleancache_ops; +static struct cleancache_ops cleancache_ops __read_mostly; /* * Counters available via /sys/kernel/debug/frontswap (if debugfs is |