* time_less - is a before b? * @a: one relative time. * @b: another relative time. */
| 260 | * @b: another relative time. |
| 261 | */ |
| 262 | static inline bool time_less(struct timerel a, struct timerel b) |
| 263 | { |
| 264 | return time_less_(a.ts, b.ts); |
| 265 | } |
| 266 | |
| 267 | /** |
| 268 | * timeabs_eq - is a equal to b? |