3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-11 17:55:54 +00:00
Brooklyn/block/blk-ioprio.h

29 lines
552 B
C
Raw Normal View History

2022-04-02 18:08:56 +05:00
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BLK_IOPRIO_H_
#define _BLK_IOPRIO_H_
#include <linux/kconfig.h>
struct request_queue;
2022-09-13 23:14:27 +05:00
struct bio;
2022-04-02 18:08:56 +05:00
#ifdef CONFIG_BLK_CGROUP_IOPRIO
int blk_ioprio_init(struct request_queue *q);
2022-09-13 23:14:27 +05:00
void blk_ioprio_exit(struct request_queue *q);
void blkcg_set_ioprio(struct bio *bio);
2022-04-02 18:08:56 +05:00
#else
static inline int blk_ioprio_init(struct request_queue *q)
{
return 0;
}
2022-09-13 23:14:27 +05:00
static inline void blk_ioprio_exit(struct request_queue *q)
{
}
static inline void blkcg_set_ioprio(struct bio *bio)
{
}
2022-04-02 18:08:56 +05:00
#endif
#endif /* _BLK_IOPRIO_H_ */