aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/block_dev.c21
-rw-r--r--fs/inode.c21
2 files changed, 21 insertions, 21 deletions
diff --git a/fs/block_dev.c b/fs/block_dev.c
index 335c38bb86eb..0c361ea7e5a6 100644
--- a/fs/block_dev.c
+++ b/fs/block_dev.c
@@ -1315,3 +1315,24 @@ void close_bdev_excl(struct block_device *bdev)
1315} 1315}
1316 1316
1317EXPORT_SYMBOL(close_bdev_excl); 1317EXPORT_SYMBOL(close_bdev_excl);
1318
1319int __invalidate_device(struct block_device *bdev)
1320{
1321 struct super_block *sb = get_super(bdev);
1322 int res = 0;
1323
1324 if (sb) {
1325 /*
1326 * no need to lock the super, get_super holds the
1327 * read mutex so the filesystem cannot go away
1328 * under us (->put_super runs with the write lock
1329 * hold).
1330 */
1331 shrink_dcache_sb(sb);
1332 res = invalidate_inodes(sb);
1333 drop_super(sb);
1334 }
1335 invalidate_bdev(bdev, 0);
1336 return res;
1337}
1338EXPORT_SYMBOL(__invalidate_device);
diff --git a/fs/inode.c b/fs/inode.c
index abf77471e6c4..ada7643104e1 100644
--- a/fs/inode.c
+++ b/fs/inode.c
@@ -362,27 +362,6 @@ int invalidate_inodes(struct super_block * sb)
362} 362}
363 363
364EXPORT_SYMBOL(invalidate_inodes); 364EXPORT_SYMBOL(invalidate_inodes);
365
366int __invalidate_device(struct block_device *bdev)
367{
368 struct super_block *sb = get_super(bdev);
369 int res = 0;
370
371 if (sb) {
372 /*
373 * no need to lock the super, get_super holds the
374 * read mutex so the filesystem cannot go away
375 * under us (->put_super runs with the write lock
376 * hold).
377 */
378 shrink_dcache_sb(sb);
379 res = invalidate_inodes(sb);
380 drop_super(sb);
381 }
382 invalidate_bdev(bdev, 0);
383 return res;
384}
385EXPORT_SYMBOL(__invalidate_device);
386 365
387static int can_unuse(struct inode *inode) 366static int can_unuse(struct inode *inode)
388{ 367{