summaryrefslogtreecommitdiffstats
path: root/drivers/xen
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-01-29 15:13:48 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-01-29 15:13:48 -0800
commit29737370120b0570ac52e334cfc4117d68b3d044 (patch)
tree05b3505187402dce85603367211a4720ead9a466 /drivers/xen
parentf6a239a927905278fe378670d5d880f3aa157bdf (diff)
parenta39bb9a0557a3fc860c3c9d67a7326b0d2f1bd66 (diff)
downloadlinux-29737370120b0570ac52e334cfc4117d68b3d044.tar.gz
linux-29737370120b0570ac52e334cfc4117d68b3d044.tar.xz
Merge branch 'stable/for-linus-4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/mm
Pull cleancache cleanups from Konrad Rzeszutek Wilk: "Simple cleanups" * 'stable/for-linus-4.5' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/mm: include/linux/cleancache.h: Clean up code cleancache: constify cleancache_ops structure
Diffstat (limited to 'drivers/xen')
-rw-r--r--drivers/xen/tmem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/tmem.c b/drivers/xen/tmem.c
index 945fc4327201..4ac2ca8a7656 100644
--- a/drivers/xen/tmem.c
+++ b/drivers/xen/tmem.c
@@ -242,7 +242,7 @@ static int tmem_cleancache_init_shared_fs(char *uuid, size_t pagesize)
return xen_tmem_new_pool(shared_uuid, TMEM_POOL_SHARED, pagesize);
}
-static struct cleancache_ops tmem_cleancache_ops = {
+static const struct cleancache_ops tmem_cleancache_ops = {
.put_page = tmem_cleancache_put_page,
.get_page = tmem_cleancache_get_page,
.invalidate_page = tmem_cleancache_flush_page,