diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/fs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 5d93995743b5..760d8da1b6c7 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -2445,6 +2445,7 @@ extern int sync_blockdev(struct block_device *bdev); | |||
2445 | extern void kill_bdev(struct block_device *); | 2445 | extern void kill_bdev(struct block_device *); |
2446 | extern struct super_block *freeze_bdev(struct block_device *); | 2446 | extern struct super_block *freeze_bdev(struct block_device *); |
2447 | extern void emergency_thaw_all(void); | 2447 | extern void emergency_thaw_all(void); |
2448 | extern void emergency_thaw_bdev(struct super_block *sb); | ||
2448 | extern int thaw_bdev(struct block_device *bdev, struct super_block *sb); | 2449 | extern int thaw_bdev(struct block_device *bdev, struct super_block *sb); |
2449 | extern int fsync_bdev(struct block_device *); | 2450 | extern int fsync_bdev(struct block_device *); |
2450 | 2451 | ||
@@ -2470,6 +2471,11 @@ static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb) | |||
2470 | return 0; | 2471 | return 0; |
2471 | } | 2472 | } |
2472 | 2473 | ||
2474 | static inline int emergency_thaw_bdev(struct super_block *sb) | ||
2475 | { | ||
2476 | return 0; | ||
2477 | } | ||
2478 | |||
2473 | static inline void iterate_bdevs(void (*f)(struct block_device *, void *), void *arg) | 2479 | static inline void iterate_bdevs(void (*f)(struct block_device *, void *), void *arg) |
2474 | { | 2480 | { |
2475 | } | 2481 | } |