Home
last modified time | relevance | path

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

/f-stack/freebsd/kern/
H A Dkern_fail.c206 static void fail_point_entry_destroy(struct fail_point_entry *fp_entry);
279 struct fail_point_entry *fp_entry; in fail_point_entry_new() local
281 fp_entry = fp_malloc(sizeof(struct fail_point_entry), in fail_point_entry_new()
283 fp_entry->fe_parent = fp_setting->fs_parent; in fail_point_entry_new()
284 fp_entry->fe_prob = PROB_MAX; in fail_point_entry_new()
285 fp_entry->fe_pid = NO_PID; in fail_point_entry_new()
286 fp_entry->fe_count = FE_COUNT_UNTRACKED; in fail_point_entry_new()
287 TAILQ_INSERT_TAIL(&fp_setting->fp_entry_queue, fp_entry, in fail_point_entry_new()
290 return (fp_entry); in fail_point_entry_new()
295 fail_point_entry_destroy(struct fail_point_entry *fp_entry) in fail_point_entry_destroy() argument
[all …]
/f-stack/freebsd/netpfil/pf/
H A Dpf_osfp.c228 SLIST_FOREACH(entry, list, fp_entry) { in pf_osfp_match()
253 SLIST_REMOVE_HEAD(&fp->fp_oses, fp_entry); in pf_osfp_flush()
306 SLIST_FOREACH(entry, &fp->fp_oses, fp_entry) { in pf_osfp_add()
340 SLIST_INSERT_HEAD(&fp->fp_oses, entry, fp_entry); in pf_osfp_add()
472 SLIST_FOREACH(entry, &fp->fp_oses, fp_entry) { in pf_osfp_get()
H A Dpf.h331 SLIST_ENTRY(pf_osfp_entry) fp_entry;