diff options
author | grehan <grehan@FreeBSD.org> | 2013-08-01 22:09:57 +0000 |
---|---|---|
committer | grehan <grehan@FreeBSD.org> | 2013-08-01 22:09:57 +0000 |
commit | fd121a9c7b0c558bd6523654b46615e4cf221074 (patch) | |
tree | 15a0d1703ee9cc7d7009aa072f4f6d38a7cd6026 /sys/dev/hyperv/utilities/hv_util.c | |
parent | e5517eb7cf3a46058f85f4fa2254ff97215cf884 (diff) | |
parent | ed44436fe152c80c0b7431b9e1e730f1aca47199 (diff) | |
download | FreeBSD-src-fd121a9c7b0c558bd6523654b46615e4cf221074.zip FreeBSD-src-fd121a9c7b0c558bd6523654b46615e4cf221074.tar.gz |
IFC @ r253862
- change the SI_SUB_RUN_SCHEDULER sysinits in hv_utilc and
hv_netvsc_drv_freebsd.c to SI_SUB_KTHREAD_IDLE, since the
former is no longer in FreeBSD.
The use of these SYSINITs can probably be removed.
Diffstat (limited to 'sys/dev/hyperv/utilities/hv_util.c')
-rw-r--r-- | sys/dev/hyperv/utilities/hv_util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/dev/hyperv/utilities/hv_util.c b/sys/dev/hyperv/utilities/hv_util.c index 9ad4370..43e4213 100644 --- a/sys/dev/hyperv/utilities/hv_util.c +++ b/sys/dev/hyperv/utilities/hv_util.c @@ -488,5 +488,5 @@ DRIVER_MODULE(hv_utils, vmbus, util_driver, util_devclass, hv_util_modevent, 0); MODULE_VERSION(hv_utils, 1); MODULE_DEPEND(hv_utils, vmbus, 1, 1, 1); -SYSINIT(hv_util_initx, SI_SUB_RUN_SCHEDULER, SI_ORDER_MIDDLE + 1, +SYSINIT(hv_util_initx, SI_SUB_KTHREAD_IDLE, SI_ORDER_MIDDLE + 1, hv_util_init, NULL); |