mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
645a829e03
sysfs entry /sys/block/[device]/queue/wbt_lat_usec will be created even if CONFIG_BLK_WBT is disabled, while read and write will always fail. It doesn't make sense to create a sysfs entry that can't be accessed, so don't create such entry. Signed-off-by: Yu Kuai <yukuai3@huawei.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20230527010644.647900-2-yukuai1@huaweicloud.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
34 lines
747 B
C
34 lines
747 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef WB_THROTTLE_H
|
|
#define WB_THROTTLE_H
|
|
|
|
#ifdef CONFIG_BLK_WBT
|
|
|
|
int wbt_init(struct gendisk *disk);
|
|
void wbt_disable_default(struct gendisk *disk);
|
|
void wbt_enable_default(struct gendisk *disk);
|
|
|
|
u64 wbt_get_min_lat(struct request_queue *q);
|
|
void wbt_set_min_lat(struct request_queue *q, u64 val);
|
|
bool wbt_disabled(struct request_queue *);
|
|
|
|
void wbt_set_write_cache(struct request_queue *, bool);
|
|
|
|
u64 wbt_default_latency_nsec(struct request_queue *);
|
|
|
|
#else
|
|
|
|
static inline void wbt_disable_default(struct gendisk *disk)
|
|
{
|
|
}
|
|
static inline void wbt_enable_default(struct gendisk *disk)
|
|
{
|
|
}
|
|
static inline void wbt_set_write_cache(struct request_queue *q, bool wc)
|
|
{
|
|
}
|
|
|
|
#endif /* CONFIG_BLK_WBT */
|
|
|
|
#endif
|