Home
last modified time | relevance | path

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

/freebsd/tools/test/stress2/misc/
H A Dpfl.sh37 sed '1,/^EOF/d' < $here/$0 > pfl.c
38 mycc -o pfl -Wall -Wextra pfl.c || exit 1
39 rm -f pfl.c
77 while pgrep -q pfl; do
81 pkill -9 pfl
97 rm -f /tmp/pfl
H A Dpfl3.sh39 ./pfl.sh > /dev/null 2>&1 &
/freebsd/sys/netpfil/pf/
H A Dpf_ioctl.c1789 struct pf_state_link *pfl; in pf_statelim_unlink() local
1793 TAILQ_FOREACH(pfl, &pfstlim->pfstlim_states, pfl_link) { in pf_statelim_unlink()
1794 struct pf_kstate *s = pfl->pfl_state; in pf_statelim_unlink()
1799 SLIST_REMOVE(&s->linkage, pfl, pf_state_link, pfl_linkage); in pf_statelim_unlink()
1814 struct pf_state_link *pfl, *npfl; in pf_statelim_commit() local
1872 TAILQ_FOREACH_SAFE(pfl, &garbage, pfl_link, npfl) in pf_statelim_commit()
1873 free(pfl, M_PF_STATE_LINK); in pf_statelim_commit()
1882 struct pf_state_link *pfl; in pf_sourcelim_unlink() local
1894 TAILQ_FOREACH(pfl, &pfsr->pfsr_states, pfl_link) { in pf_sourcelim_unlink()
1895 struct pf_kstate *s = pfl->pfl_state; in pf_sourcelim_unlink()
[all …]
H A Dpf.c3070 struct pf_state_link *pfl; in pf_remove_state() local
3112 while ((pfl = SLIST_FIRST(&s->linkage)) != NULL) { in pf_remove_state()
3118 switch (pfl->pfl_type) { in pf_remove_state()
3125 pfl, s->statelim)); in pf_remove_state()
3141 pfl, s->sourcelim)); in pf_remove_state()
3149 pfl, s->sourcelim)); in pf_remove_state()
3161 pfl); in pf_remove_state()
3165 TAILQ_REMOVE(list, pfl, pfl_link); in pf_remove_state()
3166 free(pfl, M_PF_STATE_LINK); in pf_remove_state()
6632 struct pf_state_link *pfl; in pf_create_state() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DVOP3Instructions.td1034 class VOP3_BITOP3_Profile<VOPProfile pfl, VOP3Features f> : VOP3_Profile<pfl, f> {