diff options
-rw-r--r-- | fs/fs-writeback.c | 2 | ||||
-rw-r--r-- | include/linux/writeback.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/fs/fs-writeback.c b/fs/fs-writeback.c index a85ac4e33436..aca8835c8c17 100644 --- a/fs/fs-writeback.c +++ b/fs/fs-writeback.c | |||
@@ -963,7 +963,7 @@ static long wb_check_old_data_flush(struct bdi_writeback *wb) | |||
963 | /* | 963 | /* |
964 | * Retrieve work items and do the writeback they describe | 964 | * Retrieve work items and do the writeback they describe |
965 | */ | 965 | */ |
966 | long wb_do_writeback(struct bdi_writeback *wb, int force_wait) | 966 | static long wb_do_writeback(struct bdi_writeback *wb, int force_wait) |
967 | { | 967 | { |
968 | struct backing_dev_info *bdi = wb->bdi; | 968 | struct backing_dev_info *bdi = wb->bdi; |
969 | struct wb_writeback_work *work; | 969 | struct wb_writeback_work *work; |
diff --git a/include/linux/writeback.h b/include/linux/writeback.h index abfe11787af3..e0efffafcd31 100644 --- a/include/linux/writeback.h +++ b/include/linux/writeback.h | |||
@@ -95,7 +95,6 @@ int try_to_writeback_inodes_sb_nr(struct super_block *, unsigned long nr, | |||
95 | void sync_inodes_sb(struct super_block *); | 95 | void sync_inodes_sb(struct super_block *); |
96 | long writeback_inodes_wb(struct bdi_writeback *wb, long nr_pages, | 96 | long writeback_inodes_wb(struct bdi_writeback *wb, long nr_pages, |
97 | enum wb_reason reason); | 97 | enum wb_reason reason); |
98 | long wb_do_writeback(struct bdi_writeback *wb, int force_wait); | ||
99 | void wakeup_flusher_threads(long nr_pages, enum wb_reason reason); | 98 | void wakeup_flusher_threads(long nr_pages, enum wb_reason reason); |
100 | void inode_wait_for_writeback(struct inode *inode); | 99 | void inode_wait_for_writeback(struct inode *inode); |
101 | 100 | ||