Lines Matching full:rtp
2708 linux_up_rtprio_if(struct thread *td1, struct rtprio *rtp) in linux_up_rtprio_if() argument
2713 if (rtp2.type < rtp->type || in linux_up_rtprio_if()
2714 (rtp2.type == rtp->type && in linux_up_rtprio_if()
2715 rtp2.prio < rtp->prio)) { in linux_up_rtprio_if()
2716 rtp->type = rtp2.type; in linux_up_rtprio_if()
2717 rtp->prio = rtp2.prio; in linux_up_rtprio_if()
2724 linux_rtprio2ioprio(struct rtprio *rtp) in linux_rtprio2ioprio() argument
2728 switch (rtp->type) { in linux_rtprio2ioprio()
2734 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2738 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2750 linux_ioprio2rtprio(int ioprio, struct rtprio *rtp) in linux_ioprio2rtprio() argument
2755 rtp->prio = RTP_PRIO_MIN; in linux_ioprio2rtprio()
2756 rtp->type = RTP_PRIO_IDLE; in linux_ioprio2rtprio()
2759 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2760 rtp->type = RTP_PRIO_NORMAL; in linux_ioprio2rtprio()
2763 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2764 rtp->type = RTP_PRIO_REALTIME; in linux_ioprio2rtprio()
2777 struct rtprio rtp; in linux_ioprio_get() local
2786 rtp.type = RTP_PRIO_IDLE; in linux_ioprio_get()
2787 rtp.prio = RTP_PRIO_MAX; in linux_ioprio_get()
2807 pri_to_rtp(td1, &rtp); in linux_ioprio_get()
2810 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2835 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2853 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2867 td->td_retval[0] = linux_rtprio2ioprio(&rtp); in linux_ioprio_get()
2878 struct rtprio rtp; in linux_ioprio_set() local
2883 if ((error = linux_ioprio2rtprio(args->ioprio, &rtp)) != 0) in linux_ioprio_set()
2886 if (RTP_PRIO_BASE(rtp.type) == RTP_PRIO_REALTIME && in linux_ioprio_set()
2911 error = rtp_to_pri(&rtp, td1); in linux_ioprio_set()
2914 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2939 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2959 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()