aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorDan Magenheimer <dan.magenheimer@oracle.com>2012-01-12 14:03:25 -0500
committerKonrad Rzeszutek Wilk <konrad.wilk@oracle.com>2012-01-23 16:06:37 -0500
commit91c6cc9b5c216bd067f9af2cc64fcbe190755865 (patch)
tree83cbad6659c180ac8fbeca61382ac41ccbd7b382 /drivers/xen
parent3167760f83899ccda312b9ad9306ec9e5dda06d4 (diff)
mm: zcache/tmem/cleancache: s/flush/invalidate/
Complete the renaming from "flush" to "invalidate" across both tmem frontends (cleancache and frontswap) and both tmem backends (Xen and zcache), as required by akpm. This change is completely cosmetic. [v10: no change] [v9: akpm@linux-foundation.org: change "flush" to "invalidate", part 3] Signed-off-by: Dan Magenheimer <dan.magenheimer@oracle.com> Cc: Kamezawa Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: Jan Beulich <JBeulich@novell.com> Acked-by: Seth Jennings <sjenning@linux.vnet.ibm.com> Cc: Jeremy Fitzhardinge <jeremy@goop.org> Cc: Hugh Dickins <hughd@google.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: Nitin Gupta <ngupta@vflare.org> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Chris Mason <chris.mason@oracle.com> Cc: Rik Riel <riel@redhat.com> Cc: Andrew Morton <akpm@linux-foundation.org> [v11: Remove the frontswap part] Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/tmem.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/xen/tmem.c b/drivers/xen/tmem.c
index d369965e8f8a..17d9e37beba4 100644
--- a/drivers/xen/tmem.c
+++ b/drivers/xen/tmem.c
@@ -242,9 +242,9 @@ __setup("nocleancache", no_cleancache);
242static struct cleancache_ops tmem_cleancache_ops = { 242static struct cleancache_ops tmem_cleancache_ops = {
243 .put_page = tmem_cleancache_put_page, 243 .put_page = tmem_cleancache_put_page,
244 .get_page = tmem_cleancache_get_page, 244 .get_page = tmem_cleancache_get_page,
245 .flush_page = tmem_cleancache_flush_page, 245 .invalidate_page = tmem_cleancache_flush_page,
246 .flush_inode = tmem_cleancache_flush_inode, 246 .invalidate_inode = tmem_cleancache_flush_inode,
247 .flush_fs = tmem_cleancache_flush_fs, 247 .invalidate_fs = tmem_cleancache_flush_fs,
248 .init_shared_fs = tmem_cleancache_init_shared_fs, 248 .init_shared_fs = tmem_cleancache_init_shared_fs,
249 .init_fs = tmem_cleancache_init_fs 249 .init_fs = tmem_cleancache_init_fs
250}; 250};
@@ -369,8 +369,8 @@ __setup("nofrontswap", no_frontswap);
369static struct frontswap_ops tmem_frontswap_ops = { 369static struct frontswap_ops tmem_frontswap_ops = {
370 .put_page = tmem_frontswap_put_page, 370 .put_page = tmem_frontswap_put_page,
371 .get_page = tmem_frontswap_get_page, 371 .get_page = tmem_frontswap_get_page,
372 .flush_page = tmem_frontswap_flush_page, 372 .invalidate_page = tmem_frontswap_flush_page,
373 .flush_area = tmem_frontswap_flush_area, 373 .invalidate_area = tmem_frontswap_flush_area,
374 .init = tmem_frontswap_init 374 .init = tmem_frontswap_init
375}; 375};
376#endif 376#endif