diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-04-01 07:07:16 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-04-01 07:07:16 -0400 |
commit | 47e4491b40df73c3b117e3d80b31b5b512a4b19f (patch) | |
tree | a751af5e30db8f935b97bd671d0055d670b75fe5 /include | |
parent | e5824c97a993ac5bd22cec34e6cb6f85d39b73ba (diff) |
Cleanup after commit 585d3bc06f4ca57f975a5a1f698f65a45ea66225
fsync_bdev() export and a bunch of stubs for !CONFIG_BLOCK case had
been left behind
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/buffer_head.h | 12 | ||||
-rw-r--r-- | include/linux/fs.h | 12 |
2 files changed, 12 insertions, 12 deletions
diff --git a/include/linux/buffer_head.h b/include/linux/buffer_head.h index f19fd9045ea0..fc91665d39d0 100644 --- a/include/linux/buffer_head.h +++ b/include/linux/buffer_head.h | |||
@@ -332,22 +332,10 @@ extern int __set_page_dirty_buffers(struct page *page); | |||
332 | 332 | ||
333 | static inline void buffer_init(void) {} | 333 | static inline void buffer_init(void) {} |
334 | static inline int try_to_free_buffers(struct page *page) { return 1; } | 334 | static inline int try_to_free_buffers(struct page *page) { return 1; } |
335 | static inline int sync_blockdev(struct block_device *bdev) { return 0; } | ||
336 | static inline int inode_has_buffers(struct inode *inode) { return 0; } | 335 | static inline int inode_has_buffers(struct inode *inode) { return 0; } |
337 | static inline void invalidate_inode_buffers(struct inode *inode) {} | 336 | static inline void invalidate_inode_buffers(struct inode *inode) {} |
338 | static inline int remove_inode_buffers(struct inode *inode) { return 1; } | 337 | static inline int remove_inode_buffers(struct inode *inode) { return 1; } |
339 | static inline int sync_mapping_buffers(struct address_space *mapping) { return 0; } | 338 | static inline int sync_mapping_buffers(struct address_space *mapping) { return 0; } |
340 | static inline void invalidate_bdev(struct block_device *bdev) {} | ||
341 | |||
342 | static inline struct super_block *freeze_bdev(struct block_device *sb) | ||
343 | { | ||
344 | return NULL; | ||
345 | } | ||
346 | |||
347 | static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb) | ||
348 | { | ||
349 | return 0; | ||
350 | } | ||
351 | 339 | ||
352 | #endif /* CONFIG_BLOCK */ | 340 | #endif /* CONFIG_BLOCK */ |
353 | #endif /* _LINUX_BUFFER_HEAD_H */ | 341 | #endif /* _LINUX_BUFFER_HEAD_H */ |
diff --git a/include/linux/fs.h b/include/linux/fs.h index 3d7bd5447ca3..674134725597 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1886,6 +1886,18 @@ extern int fsync_super(struct super_block *); | |||
1886 | extern int fsync_no_super(struct block_device *); | 1886 | extern int fsync_no_super(struct block_device *); |
1887 | #else | 1887 | #else |
1888 | static inline void bd_forget(struct inode *inode) {} | 1888 | static inline void bd_forget(struct inode *inode) {} |
1889 | static inline int sync_blockdev(struct block_device *bdev) { return 0; } | ||
1890 | static inline void invalidate_bdev(struct block_device *bdev) {} | ||
1891 | |||
1892 | static inline struct super_block *freeze_bdev(struct block_device *sb) | ||
1893 | { | ||
1894 | return NULL; | ||
1895 | } | ||
1896 | |||
1897 | static inline int thaw_bdev(struct block_device *bdev, struct super_block *sb) | ||
1898 | { | ||
1899 | return 0; | ||
1900 | } | ||
1889 | #endif | 1901 | #endif |
1890 | extern const struct file_operations def_blk_fops; | 1902 | extern const struct file_operations def_blk_fops; |
1891 | extern const struct file_operations def_chr_fops; | 1903 | extern const struct file_operations def_chr_fops; |