1 #include "defs.h"
2
3 enum {
4 IOPRIO_WHO_PROCESS = 1,
5 IOPRIO_WHO_PGRP,
6 IOPRIO_WHO_USER
7 };
8
9 #include "xlat/ioprio_who.h"
10
11 enum {
12 IOPRIO_CLASS_NONE,
13 IOPRIO_CLASS_RT,
14 IOPRIO_CLASS_BE,
15 IOPRIO_CLASS_IDLE
16 };
17
18 #include "xlat/ioprio_class.h"
19
20 #define IOPRIO_CLASS_SHIFT (13)
21 #define IOPRIO_PRIO_MASK ((1ul << IOPRIO_CLASS_SHIFT) - 1)
22
23 #define IOPRIO_PRIO_CLASS(mask) ((mask) >> IOPRIO_CLASS_SHIFT)
24 #define IOPRIO_PRIO_DATA(mask) ((mask) & IOPRIO_PRIO_MASK)
25
26 static const char *
sprint_ioprio(int ioprio)27 sprint_ioprio(int ioprio)
28 {
29 static char outstr[256];
30 const char *str;
31 int class, data;
32
33 class = IOPRIO_PRIO_CLASS(ioprio);
34 data = IOPRIO_PRIO_DATA(ioprio);
35 str = xlookup(ioprio_class, class);
36 if (str)
37 sprintf(outstr, "IOPRIO_PRIO_VALUE(%s,%d)", str, data);
38 else
39 sprintf(outstr, "IOPRIO_PRIO_VALUE(%#x /* %s */,%d)",
40 class, "IOPRIO_CLASS_???", data);
41
42 return outstr;
43 }
44
SYS_FUNC(ioprio_get)45 SYS_FUNC(ioprio_get)
46 {
47 if (entering(tcp)) {
48 /* int which */
49 printxval(ioprio_who, tcp->u_arg[0], "IOPRIO_WHO_???");
50 /* int who */
51 tprintf(", %d", (int) tcp->u_arg[1]);
52 return 0;
53 } else {
54 if (syserror(tcp))
55 return 0;
56
57 tcp->auxstr = sprint_ioprio(tcp->u_rval);
58 return RVAL_STR;
59 }
60 }
61
SYS_FUNC(ioprio_set)62 SYS_FUNC(ioprio_set)
63 {
64 if (entering(tcp)) {
65 /* int which */
66 printxval(ioprio_who, tcp->u_arg[0], "IOPRIO_WHO_???");
67 /* int who */
68 tprintf(", %d, ", (int) tcp->u_arg[1]);
69 /* int ioprio */
70 tprints(sprint_ioprio(tcp->u_arg[2]));
71 }
72 return 0;
73 }
74