Lines Matching refs:rtp
2684 linux_up_rtprio_if(struct thread *td1, struct rtprio *rtp) in linux_up_rtprio_if() argument
2689 if (rtp2.type < rtp->type || in linux_up_rtprio_if()
2690 (rtp2.type == rtp->type && in linux_up_rtprio_if()
2691 rtp2.prio < rtp->prio)) { in linux_up_rtprio_if()
2692 rtp->type = rtp2.type; in linux_up_rtprio_if()
2693 rtp->prio = rtp2.prio; in linux_up_rtprio_if()
2700 linux_rtprio2ioprio(struct rtprio *rtp) in linux_rtprio2ioprio() argument
2704 switch (rtp->type) { in linux_rtprio2ioprio()
2710 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2714 prio = rtp->prio / LINUX_PRIO_DIVIDER; in linux_rtprio2ioprio()
2726 linux_ioprio2rtprio(int ioprio, struct rtprio *rtp) in linux_ioprio2rtprio() argument
2731 rtp->prio = RTP_PRIO_MIN; in linux_ioprio2rtprio()
2732 rtp->type = RTP_PRIO_IDLE; in linux_ioprio2rtprio()
2735 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2736 rtp->type = RTP_PRIO_NORMAL; in linux_ioprio2rtprio()
2739 rtp->prio = LINUX_IOPRIO_PRIO_DATA(ioprio) * LINUX_PRIO_DIVIDER; in linux_ioprio2rtprio()
2740 rtp->type = RTP_PRIO_REALTIME; in linux_ioprio2rtprio()
2753 struct rtprio rtp; in linux_ioprio_get() local
2762 rtp.type = RTP_PRIO_IDLE; in linux_ioprio_get()
2763 rtp.prio = RTP_PRIO_MAX; in linux_ioprio_get()
2783 pri_to_rtp(td1, &rtp); in linux_ioprio_get()
2786 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2811 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2829 linux_up_rtprio_if(td1, &rtp); in linux_ioprio_get()
2843 td->td_retval[0] = linux_rtprio2ioprio(&rtp); in linux_ioprio_get()
2854 struct rtprio rtp; in linux_ioprio_set() local
2859 if ((error = linux_ioprio2rtprio(args->ioprio, &rtp)) != 0) in linux_ioprio_set()
2862 if (RTP_PRIO_BASE(rtp.type) == RTP_PRIO_REALTIME && in linux_ioprio_set()
2887 error = rtp_to_pri(&rtp, td1); in linux_ioprio_set()
2890 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2915 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()
2935 if ((error = rtp_to_pri(&rtp, td1)) != 0) in linux_ioprio_set()