Searched refs:ohook (Results 1 – 1 of 1) sorted by relevance
79 struct oneshot_config_hook *ohook; in config_intrhook_oneshot_func() local81 ohook = arg; in config_intrhook_oneshot_func()82 ohook->och_func(ohook->och_arg); in config_intrhook_oneshot_func()83 config_intrhook_disestablish(&ohook->och_hook); in config_intrhook_oneshot_func()84 free(ohook, M_DEVBUF); in config_intrhook_oneshot_func()219 struct oneshot_config_hook *ohook; in config_intrhook_oneshot() local221 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 …]