mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 22:21:40 +00:00
3642ef4d95
Currently, if wbt is initialized and then disabled by wbt_disable_default(), sysfs will still show valid wbt_lat_usec, which will confuse users that wbt is still enabled. This patch shows wbt_lat_usec as zero if it's disabled. Signed-off-by: Yu Kuai <yukuai3@huawei.com> Reported-and-tested-by: Holger Hoffstätte <holger@applied-asynchrony.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Link: https://lore.kernel.org/r/20221019121518.3865235-5-yukuai1@huaweicloud.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
139 lines
3.0 KiB
C
139 lines
3.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef WB_THROTTLE_H
|
|
#define WB_THROTTLE_H
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/atomic.h>
|
|
#include <linux/wait.h>
|
|
#include <linux/timer.h>
|
|
#include <linux/ktime.h>
|
|
|
|
#include "blk-stat.h"
|
|
#include "blk-rq-qos.h"
|
|
|
|
enum wbt_flags {
|
|
WBT_TRACKED = 1, /* write, tracked for throttling */
|
|
WBT_READ = 2, /* read */
|
|
WBT_KSWAPD = 4, /* write, from kswapd */
|
|
WBT_DISCARD = 8, /* discard */
|
|
|
|
WBT_NR_BITS = 4, /* number of bits */
|
|
};
|
|
|
|
enum {
|
|
WBT_RWQ_BG = 0,
|
|
WBT_RWQ_KSWAPD,
|
|
WBT_RWQ_DISCARD,
|
|
WBT_NUM_RWQ,
|
|
};
|
|
|
|
/*
|
|
* If current state is WBT_STATE_ON/OFF_DEFAULT, it can be covered to any other
|
|
* state, if current state is WBT_STATE_ON/OFF_MANUAL, it can only be covered
|
|
* to WBT_STATE_OFF/ON_MANUAL.
|
|
*/
|
|
enum {
|
|
WBT_STATE_ON_DEFAULT = 1, /* on by default */
|
|
WBT_STATE_ON_MANUAL = 2, /* on manually by sysfs */
|
|
WBT_STATE_OFF_DEFAULT = 3, /* off by default */
|
|
WBT_STATE_OFF_MANUAL = 4, /* off manually by sysfs */
|
|
};
|
|
|
|
struct rq_wb {
|
|
/*
|
|
* Settings that govern how we throttle
|
|
*/
|
|
unsigned int wb_background; /* background writeback */
|
|
unsigned int wb_normal; /* normal writeback */
|
|
|
|
short enable_state; /* WBT_STATE_* */
|
|
|
|
/*
|
|
* Number of consecutive periods where we don't have enough
|
|
* information to make a firm scale up/down decision.
|
|
*/
|
|
unsigned int unknown_cnt;
|
|
|
|
u64 win_nsec; /* default window size */
|
|
u64 cur_win_nsec; /* current window size */
|
|
|
|
struct blk_stat_callback *cb;
|
|
|
|
u64 sync_issue;
|
|
void *sync_cookie;
|
|
|
|
unsigned int wc;
|
|
|
|
unsigned long last_issue; /* last non-throttled issue */
|
|
unsigned long last_comp; /* last non-throttled comp */
|
|
unsigned long min_lat_nsec;
|
|
struct rq_qos rqos;
|
|
struct rq_wait rq_wait[WBT_NUM_RWQ];
|
|
struct rq_depth rq_depth;
|
|
};
|
|
|
|
static inline struct rq_wb *RQWB(struct rq_qos *rqos)
|
|
{
|
|
return container_of(rqos, struct rq_wb, rqos);
|
|
}
|
|
|
|
static inline unsigned int wbt_inflight(struct rq_wb *rwb)
|
|
{
|
|
unsigned int i, ret = 0;
|
|
|
|
for (i = 0; i < WBT_NUM_RWQ; i++)
|
|
ret += atomic_read(&rwb->rq_wait[i].inflight);
|
|
|
|
return ret;
|
|
}
|
|
|
|
|
|
#ifdef CONFIG_BLK_WBT
|
|
|
|
int wbt_init(struct request_queue *);
|
|
void wbt_disable_default(struct request_queue *);
|
|
void wbt_enable_default(struct request_queue *);
|
|
|
|
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 int wbt_init(struct request_queue *q)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
static inline void wbt_disable_default(struct request_queue *q)
|
|
{
|
|
}
|
|
static inline void wbt_enable_default(struct request_queue *q)
|
|
{
|
|
}
|
|
static inline void wbt_set_write_cache(struct request_queue *q, bool wc)
|
|
{
|
|
}
|
|
static inline u64 wbt_get_min_lat(struct request_queue *q)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline void wbt_set_min_lat(struct request_queue *q, u64 val)
|
|
{
|
|
}
|
|
static inline u64 wbt_default_latency_nsec(struct request_queue *q)
|
|
{
|
|
return 0;
|
|
}
|
|
static inline bool wbt_disabled(struct request_queue *q)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
#endif /* CONFIG_BLK_WBT */
|
|
|
|
#endif
|