diff options
author | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-03-19 12:12:19 -0400 |
---|---|---|
committer | Konrad Rzeszutek Wilk <konrad.wilk@oracle.com> | 2012-03-19 12:12:19 -0400 |
commit | 16c0cfa425b8e1488f7a1873bd112a7a099325f0 (patch) | |
tree | eeba5728a8072096279c55ffc10a5ca7ac0ddf05 /fs/block_dev.c | |
parent | 94574d9a4c236e8bd19721b4adb0ea30ef446901 (diff) | |
parent | 072611ed1f291053a74b28b813d683a09495eba7 (diff) |
Merge branch 'stable/cleancache.v13' into linux-next
* stable/cleancache.v13:
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/block_dev.c')
-rw-r--r-- | fs/block_dev.c | 2 |
1 files changed, 1 insertions, 1 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 | } |
114 | EXPORT_SYMBOL(invalidate_bdev); | 114 | EXPORT_SYMBOL(invalidate_bdev); |
115 | 115 | ||