Files
kernel/block/blk-ioprio.h
T
Greg Kroah-Hartman e678e468d9 Linux 6.12.89
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2026-05-15 14:51:08 +02:00

20 lines
321 B
C

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _BLK_IOPRIO_H_
#define _BLK_IOPRIO_H_
#include <linux/kconfig.h>
struct request_queue;
struct bio;
#ifdef CONFIG_BLK_CGROUP_IOPRIO
void blkcg_set_ioprio(struct bio *bio);
#else
static inline void blkcg_set_ioprio(struct bio *bio)
{
}
#endif
#endif /* _BLK_IOPRIO_H_ */