Lines Matching refs:rtp
2682 linux_up_rtprio_if(struct thread *td1, struct rtprio *rtp) in linux_up_rtprio_if() argument
2687 if (rtp2.type < rtp->type || in linux_up_rtprio_if()
2688 (rtp2.type == rtp->type && in linux_up_rtprio_if()
2689 rtp2.prio < rtp->prio)) { in linux_up_rtprio_if()
2690 rtp->type = rtp2.type; in linux_up_rtprio_if()
2691 rtp->prio = rtp2.prio; in linux_up_rtprio_if()
2698 linux_rtprio2ioprio(struct rtprio *rtp) in linux_rtprio2ioprio() argument
2702 switch (rtp->type) { in linux_rtprio2ioprio()
2708 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2712 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2724 linux_ioprio2rtprio(int ioprio, struct rtprio *rtp) in linux_ioprio2rtprio() argument
2729 rtp->prio = RTP_PRIO_MIN; in linux_ioprio2rtprio()
2730 rtp->type = RTP_PRIO_IDLE; in linux_ioprio2rtprio()
2733 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2734 rtp->type = RTP_PRIO_NORMAL; in linux_ioprio2rtprio()
2737 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2738 rtp->type = RTP_PRIO_REALTIME; in linux_ioprio2rtprio()
2751 struct rtprio rtp; in linux_ioprio_get() local
2760 rtp.type = RTP_PRIO_IDLE; in linux_ioprio_get()
2761 rtp.prio = RTP_PRIO_MAX; in linux_ioprio_get()
2781 pri_to_rtp(td1, &rtp); in linux_ioprio_get()
2784 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2809 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2827 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2841 td->td_retval[0] = linux_rtprio2ioprio(&rtp); in linux_ioprio_get()
2852 struct rtprio rtp; in linux_ioprio_set() local
2857 if ((error = linux_ioprio2rtprio(args->ioprio, &rtp)) != 0) in linux_ioprio_set()
2860 if (RTP_PRIO_BASE(rtp.type) == RTP_PRIO_REALTIME && in linux_ioprio_set()
2885 error = rtp_to_pri(&rtp, td1); in linux_ioprio_set()
2888 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2913 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2933 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()