* time_less - is a before b? * @a: one relative time. * @b: another relative time. */
| 226 | * @b: another relative time. |
| 227 | */ |
| 228 | static inline bool time_less(struct timerel a, struct timerel b) |
| 229 | { |
| 230 | return time_less_(a.ts, b.ts); |
| 231 | } |
| 232 | |
| 233 | /** |
| 234 | * timeabs_eq - is a equal to b? |