Lines Matching full:rtp
2683 linux_up_rtprio_if(struct thread *td1, struct rtprio *rtp) in linux_up_rtprio_if() argument
2688 if (rtp2.type < rtp->type || in linux_up_rtprio_if()
2689 (rtp2.type == rtp->type && in linux_up_rtprio_if()
2690 rtp2.prio < rtp->prio)) { in linux_up_rtprio_if()
2691 rtp->type = rtp2.type; in linux_up_rtprio_if()
2692 rtp->prio = rtp2.prio; in linux_up_rtprio_if()
2699 linux_rtprio2ioprio(struct rtprio *rtp) in linux_rtprio2ioprio() argument
2703 switch (rtp->type) { in linux_rtprio2ioprio()
2709 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2713 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2725 linux_ioprio2rtprio(int ioprio, struct rtprio *rtp) in linux_ioprio2rtprio() argument
2730 rtp->prio = RTP_PRIO_MIN; in linux_ioprio2rtprio()
2731 rtp->type = RTP_PRIO_IDLE; in linux_ioprio2rtprio()
2734 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2735 rtp->type = RTP_PRIO_NORMAL; in linux_ioprio2rtprio()
2738 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2739 rtp->type = RTP_PRIO_REALTIME; in linux_ioprio2rtprio()
2752 struct rtprio rtp; in linux_ioprio_get() local
2761 rtp.type = RTP_PRIO_IDLE; in linux_ioprio_get()
2762 rtp.prio = RTP_PRIO_MAX; in linux_ioprio_get()
2782 pri_to_rtp(td1, &rtp); in linux_ioprio_get()
2785 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2810 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2828 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2842 td->td_retval[0] = linux_rtprio2ioprio(&rtp); in linux_ioprio_get()
2853 struct rtprio rtp; in linux_ioprio_set() local
2858 if ((error = linux_ioprio2rtprio(args->ioprio, &rtp)) != 0) in linux_ioprio_set()
2861 if (RTP_PRIO_BASE(rtp.type) == RTP_PRIO_REALTIME && in linux_ioprio_set()
2886 error = rtp_to_pri(&rtp, td1); in linux_ioprio_set()
2889 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2914 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2934 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()