| 33 | } |
| 34 | |
| 35 | static unsigned long long mtime_since_now(struct timeval *tv) |
| 36 | { |
| 37 | struct timeval end; |
| 38 | |
| 39 | gettimeofday(&end, NULL); |
| 40 | return mtime_since(tv, &end); |
| 41 | } |
| 42 | |
| 43 | static int register_memory(struct io_uring *ring, void *ptr, size_t size) |
| 44 | { |