aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-03-22 22:52:47 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-03-22 22:52:47 -0400
commitaab008db8063364dc3c8ccf4981c21124866b395 (patch)
tree72914203f4decb023efdaabd0301a62d742dfa8c /fs
parent4f5b1affdda3e0c48cac674182f52004137b0ffc (diff)
parent16c0cfa425b8e1488f7a1873bd112a7a099325f0 (diff)
Merge tag 'stable/for-linus-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/mm
Pull cleancache changes from Konrad Rzeszutek Wilk: "This has some patches for the cleancache API that should have been submitted a _long_ time ago. They are basically cleanups: - rename of flush to invalidate - moving reporting of statistics into debugfs - use __read_mostly as necessary. Oh, and also the MAINTAINERS file change. The files (except the MAINTAINERS file) have been in #linux-next for months now. The late addition of MAINTAINERS file is a brain-fart on my side - didn't realize I needed that just until I was typing this up - and I based that patch on v3.3 - so the tree is on top of v3.3." * tag 'stable/for-linus-3.4' of git://git.kernel.org/pub/scm/linux/kernel/git/konrad/mm: MAINTAINERS: Adding cleancache API to the list. mm: cleancache: Use __read_mostly as appropiate. mm: cleancache: report statistics via debugfs instead of sysfs. mm: zcache/tmem/cleancache: s/flush/invalidate/ mm: cleancache: s/flush/invalidate/
Diffstat (limited to 'fs')
-rw-r--r--fs/block_dev.c2
-rw-r--r--fs/super.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/fs/block_dev.c b/fs/block_dev.c
index 5e9f198f7712..a9ff3000b83d 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -109,7 +109,7 @@ void invalidate_bdev(struct block_device *bdev)
109 /* 99% of the time, we don't need to flush the cleancache on the bdev. 109 /* 99% of the time, we don't need to flush the cleancache on the bdev.
110 * But, for the strange corners, lets be cautious 110 * But, for the strange corners, lets be cautious
111 */ 111 */
112 cleancache_flush_inode(mapping); 112 cleancache_invalidate_inode(mapping);
113} 113}
114EXPORT_SYMBOL(invalidate_bdev); 114EXPORT_SYMBOL(invalidate_bdev);
115 115
diff --git a/fs/super.c b/fs/super.c
index d90e900a8a0e..7fcb1354c554 100644
--- a/fs/super.c
+++ b/fs/super.c
@@ -251,7 +251,7 @@ void deactivate_locked_super(struct super_block *s)
251{ 251{
252 struct file_system_type *fs = s->s_type; 252 struct file_system_type *fs = s->s_type;
253 if (atomic_dec_and_test(&s->s_active)) { 253 if (atomic_dec_and_test(&s->s_active)) {
254 cleancache_flush_fs(s); 254 cleancache_invalidate_fs(s);
255 fs->kill_sb(s); 255 fs->kill_sb(s);
256 256
257 /* caches are now gone, we can safely kill the shrinker now */ 257 /* caches are now gone, we can safely kill the shrinker now */