diff options
author | Xiu Jianfeng <xiujianfeng@huawei.com> | 2022-07-13 20:53:14 +0800 |
---|---|---|
committer | akpm <akpm@linux-foundation.org> | 2022-07-17 17:14:48 -0700 |
commit | 0d8bc0b10aeab543bdccb86180f58db1f79f7cee (patch) | |
tree | 8b9f9ef887f87800ed1130b48ed2fcaeaef56a4c /include/linux/backing-dev.h | |
parent | cdb5c9e53f2e7166409dbf7248364f592d11bd1c (diff) | |
download | linux-stable-0d8bc0b10aeab543bdccb86180f58db1f79f7cee.tar.gz linux-stable-0d8bc0b10aeab543bdccb86180f58db1f79f7cee.tar.bz2 linux-stable-0d8bc0b10aeab543bdccb86180f58db1f79f7cee.zip |
writeback: cleanup bdi_sched_wait()
bdi_sched_wait() is no longer used since commit 839a8e8660b6 ("writeback:
replace custom worker pool implementation with unbound workqueue"), so
remove it.
Link: https://lkml.kernel.org/r/20220713125314.171345-1-xiujianfeng@huawei.com
Signed-off-by: Xiu Jianfeng <xiujianfeng@huawei.com>
Reviewed-by: Jan Kara <jack@suse.cz>
Reviewed-by: Johannes Thumshirn <johannes.thumshirn@wdc.com>
Acked-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'include/linux/backing-dev.h')
-rw-r--r-- | include/linux/backing-dev.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/linux/backing-dev.h b/include/linux/backing-dev.h index d452071db572..e84b745a6811 100644 --- a/include/linux/backing-dev.h +++ b/include/linux/backing-dev.h @@ -140,12 +140,6 @@ static inline bool mapping_can_writeback(struct address_space *mapping) return inode_to_bdi(mapping->host)->capabilities & BDI_CAP_WRITEBACK; } -static inline int bdi_sched_wait(void *word) -{ - schedule(); - return 0; -} - #ifdef CONFIG_CGROUP_WRITEBACK struct bdi_writeback *wb_get_lookup(struct backing_dev_info *bdi, |