| 26 | static int no_immediate; |
| 27 | |
| 28 | static void msec_to_ts(struct __kernel_timespec *ts, unsigned int msec) |
| 29 | { |
| 30 | ts->tv_sec = msec / 1000; |
| 31 | ts->tv_nsec = (msec % 1000) * 1000000; |
| 32 | } |
| 33 | |
| 34 | static void t_prep_timeout(struct io_uring_sqe *sqe, |
| 35 | const struct __kernel_timespec *ts, |
no outgoing calls