Rafael Kitover 8b8b44d06f kernel timer API rework
In `config/kernel-timer.m4` refactor slightly to check more generally
for the new `timer_setup()` APIs, but also check the callback signature
because some kernels (notably 4.14) have the new `timer_setup()` API but
use the old callback signature. Also add a check for a `flags` member in
`struct timer_list`, which was added in 4.1-rc8.

Add compatibility shims to `include/spl/sys/timer.h` to allow using the
new timer APIs with the only two caveats being that the callback
argument type must be declared as `spl_timer_list_t` and an explicit
assignment is required to get the timer variable for the `timer_of()`
macro. So the callback would look like this:

```c
__cv_wakeup(spl_timer_list_t t)
{
        struct timer_list *tmr = (struct timer_list *)t;
	struct thing *parent = from_timer(parent, tmr,
		parent_timer_field);
	... /* do stuff with parent */
```

Make some minor changes to `spl-condvar.c` and `spl-taskq.c` to use the
new timer APIs instead of conditional code.

Reviewed-by: Tomohiro Kusumi <kusumi.tomohiro@gmail.com>
Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov>
Signed-off-by: Rafael Kitover <rkitover@gmail.com>
Closes #8647
2019-05-23 14:40:28 -07:00
..
2018-05-01 10:33:35 -07:00
2019-01-06 10:39:41 -08:00
2019-03-29 09:13:20 -07:00
2011-04-19 10:10:47 -07:00
2019-03-06 16:03:03 -08:00
2017-01-03 11:31:18 -06:00
2018-05-29 16:00:33 -07:00
2012-10-14 13:06:48 -07:00
2019-05-23 14:40:28 -07:00
2016-11-04 10:46:40 -07:00
2018-08-27 10:04:21 -07:00
2017-01-03 11:31:18 -06:00
2019-05-23 14:40:28 -07:00
2019-03-02 16:19:05 -08:00
2018-05-29 14:51:39 -07:00
2019-04-14 11:04:54 -07:00
2018-05-29 14:51:39 -07:00
2018-03-28 10:19:22 -07:00
2016-03-18 13:31:11 -07:00
2018-11-11 18:06:36 -08:00
2016-03-18 13:31:11 -07:00
2018-05-29 16:00:33 -07:00