29 lines
540 B
C
Raw Normal View History

2026-01-21 18:59:54 +08:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BLK_IOPRIO_H_
#define _BLK_IOPRIO_H_
#include <linux/kconfig.h>
struct request_queue;
2026-01-29 22:25:33 +08:00
struct bio;
2026-01-21 18:59:54 +08:00
#ifdef CONFIG_BLK_CGROUP_IOPRIO
2026-01-29 22:25:33 +08:00
int blk_ioprio_init(struct gendisk *disk);
void blk_ioprio_exit(struct gendisk *disk);
void blkcg_set_ioprio(struct bio *bio);
2026-01-21 18:59:54 +08:00
#else
2026-01-29 22:25:33 +08:00
static inline int blk_ioprio_init(struct gendisk *disk)
2026-01-21 18:59:54 +08:00
{
return 0;
}
2026-01-29 22:25:33 +08:00
static inline void blk_ioprio_exit(struct gendisk *disk)
{
}
static inline void blkcg_set_ioprio(struct bio *bio)
{
}
2026-01-21 18:59:54 +08:00
#endif
#endif /* _BLK_IOPRIO_H_ */