2021-06-18 00:44:44 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
|
|
|
|
#ifndef _BLK_IOPRIO_H_
|
|
|
|
#define _BLK_IOPRIO_H_
|
|
|
|
|
|
|
|
#include <linux/kconfig.h>
|
|
|
|
|
|
|
|
struct request_queue;
|
2022-06-23 07:48:32 +00:00
|
|
|
struct bio;
|
2021-06-18 00:44:44 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_BLK_CGROUP_IOPRIO
|
2022-09-21 18:04:51 +00:00
|
|
|
int blk_ioprio_init(struct gendisk *disk);
|
|
|
|
void blk_ioprio_exit(struct gendisk *disk);
|
2022-06-23 07:48:32 +00:00
|
|
|
void blkcg_set_ioprio(struct bio *bio);
|
2021-06-18 00:44:44 +00:00
|
|
|
#else
|
2022-09-21 18:04:51 +00:00
|
|
|
static inline int blk_ioprio_init(struct gendisk *disk)
|
2021-06-18 00:44:44 +00:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2022-09-21 18:04:51 +00:00
|
|
|
static inline void blk_ioprio_exit(struct gendisk *disk)
|
2022-06-23 07:48:32 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
static inline void blkcg_set_ioprio(struct bio *bio)
|
|
|
|
{
|
|
|
|
}
|
2021-06-18 00:44:44 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _BLK_IOPRIO_H_ */
|