diff options
author | Nick Piggin <npiggin@suse.de> | 2009-02-25 04:44:19 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-27 14:44:03 -0400 |
commit | 585d3bc06f4ca57f975a5a1f698f65a45ea66225 (patch) | |
tree | 393cbd213e714f00c0cae85851e7837ed88b9a99 /include/linux/fs.h | |
parent | 3ba13d179e8c24c68eac32b93593a6b10fcd1572 (diff) |
fs: move bdev code out of buffer.c
Move some block device related code out from buffer.c and put it in
block_dev.c. I'm trying to move non-buffer_head code out of buffer.c
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r-- | include/linux/fs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 5f74d616cd7d..c2c4454a268a 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1874,6 +1874,13 @@ extern void bd_set_size(struct block_device *, loff_t size); | |||
1874 | extern void bd_forget(struct inode *inode); | 1874 | extern void bd_forget(struct inode *inode); |
1875 | extern void bdput(struct block_device *); | 1875 | extern void bdput(struct block_device *); |
1876 | extern struct block_device *open_by_devnum(dev_t, fmode_t); | 1876 | extern struct block_device *open_by_devnum(dev_t, fmode_t); |
1877 | extern void invalidate_bdev(struct block_device *); | ||
1878 | extern int sync_blockdev(struct block_device *bdev); | ||
1879 | extern struct super_block *freeze_bdev(struct block_device *); | ||
1880 | extern int thaw_bdev(struct block_device *bdev, struct super_block *sb); | ||
1881 | extern int fsync_bdev(struct block_device *); | ||
1882 | extern int fsync_super(struct super_block *); | ||
1883 | extern int fsync_no_super(struct block_device *); | ||
1877 | #else | 1884 | #else |
1878 | static inline void bd_forget(struct inode *inode) {} | 1885 | static inline void bd_forget(struct inode *inode) {} |
1879 | #endif | 1886 | #endif |