blk-ioprio.h 321 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef _BLK_IOPRIO_H_
  3. #define _BLK_IOPRIO_H_
  4. #include <linux/kconfig.h>
  5. struct request_queue;
  6. struct bio;
  7. #ifdef CONFIG_BLK_CGROUP_IOPRIO
  8. void blkcg_set_ioprio(struct bio *bio);
  9. #else
  10. static inline void blkcg_set_ioprio(struct bio *bio)
  11. {
  12. }
  13. #endif
  14. #endif /* _BLK_IOPRIO_H_ */