Home
last modified time | relevance | path

Searched refs:ohook (Results 1 – 1 of 1) sorted by relevance

/freebsd/sys/kern/
H A Dsubr_autoconf.c77 struct oneshot_config_hook *ohook; in config_intrhook_oneshot_func() local
79 ohook = arg; in config_intrhook_oneshot_func()
80 ohook->och_func(ohook->och_arg); in config_intrhook_oneshot_func()
81 config_intrhook_disestablish(&ohook->och_hook); in config_intrhook_oneshot_func()
82 free(ohook, M_DEVBUF); in config_intrhook_oneshot_func()
219 struct oneshot_config_hook *ohook; in config_intrhook_oneshot() local
221 ohook = malloc(sizeof(*ohook), M_DEVBUF, M_WAITOK); in config_intrhook_oneshot()
222 ohook->och_func = func; in config_intrhook_oneshot()
223 ohook->och_arg = arg; in config_intrhook_oneshot()
224 ohook->och_hook.ich_func = config_intrhook_oneshot_func; in config_intrhook_oneshot()
[all …]