Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v6.14-rc6 19 lines 321 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2 3#ifndef _BLK_IOPRIO_H_ 4#define _BLK_IOPRIO_H_ 5 6#include <linux/kconfig.h> 7 8struct request_queue; 9struct bio; 10 11#ifdef CONFIG_BLK_CGROUP_IOPRIO 12void blkcg_set_ioprio(struct bio *bio); 13#else 14static inline void blkcg_set_ioprio(struct bio *bio) 15{ 16} 17#endif 18 19#endif /* _BLK_IOPRIO_H_ */