Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dsubr_autoconf.c81 struct oneshot_config_hook *ohook; in config_intrhook_oneshot_func() local
83 ohook = arg; in config_intrhook_oneshot_func()
84 ohook->och_func(ohook->och_arg); in config_intrhook_oneshot_func()
85 config_intrhook_disestablish(&ohook->och_hook); in config_intrhook_oneshot_func()
86 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()
225 ohook->och_hook.ich_arg = ohook; in config_intrhook_oneshot()
[all …]