Home
last modified time | relevance | path

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

/freebsd/sys/fs/pseudofs/
H A Dpseudofs.c87 pn->pn_type = type; in pfs_alloc_node_flags()
112 KASSERT(parent->pn_type == pfstype_dir || in pfs_add_node()
113 parent->pn_type == pfstype_procdir || in pfs_add_node()
114 parent->pn_type == pfstype_root, in pfs_add_node()
119 if (pn->pn_type == pfstype_procdir) in pfs_add_node()
121 KASSERT(iter->pn_type != pfstype_procdir, in pfs_add_node()
124 if (pn->pn_type == pfstype_procdir) in pfs_add_node()
125 KASSERT(iter->pn_type != pfstype_procdir, in pfs_add_node()
137 parent->pn_name, pn->pn_name, pn->pn_type); in pfs_add_node()
368 if (pn->pn_type == pfstype_dir || in pfs_destroy()
[all …]
H A Dpseudofs_fileno.c84 switch (pn->pn_type) { in pfs_fileno_alloc()
103 if (pn->pn_parent->pn_type == pfstype_root) { in pfs_fileno_alloc()
138 switch (pn->pn_type) { in pfs_fileno_free()
H A Dpseudofs_vnops.c56 KASSERT((pn)->pn_type == pfstype_root || \
57 (pn)->pn_type == pfstype_dir || \
58 (pn)->pn_type == pfstype_procdir, \
62 KASSERT((pn)->pn_type == pfstype_file, \
66 KASSERT((pn)->pn_type == pfstype_symlink, \
237 switch (pn->pn_type) { in pfs_getattr()
386 if (vp->v_type == VDIR && pd->pn_type == pfstype_root) { in pfs_vptocnp()
391 } else if (vp->v_type == VDIR && pd->pn_type == pfstype_procdir) { in pfs_vptocnp()
496 if (pd->pn_type == pfstype_root) in pfs_lookup()
524 if (pd->pn_type == pfstype_procdir) in pfs_lookup()
[all …]
H A Dpseudofs_vncache.c169 switch (pn->pn_type) { in pfs_vncache_alloc()
191 panic("%s has unexpected type: %d", pn->pn_name, pn->pn_type); in pfs_vncache_alloc()
H A Dpseudofs.h220 pfs_type_t pn_type; member
/freebsd/sys/x86/cpufreq/
H A Dpowernow.c215 int pn_type; member
246 static int pn_type(device_t dev, int *type);
259 DEVMETHOD(cpufreq_drv_type, pn_type),
460 switch (sc->pn_type) { in pn_set()
488 switch (sc->pn_type) { in pn_get()
541 pn_type(device_t dev, int *type) in pn_type() function
569 switch (sc->pn_type) { in decode_pst()
654 switch (sc->pn_type) { in pn_decode_pst()
675 sc->pn_type == PN7_TYPE ? "startvid" : "maxvid", in pn_decode_pst()
695 if (sc->pn_type != PN8_TYPE) in pn_decode_pst()
[all …]
/freebsd/sys/contrib/dev/athk/ath12k/wifi7/
H A Ddp_rx.h31 u16 ssn, enum hal_pn_type pn_type);
H A Ddp_rx.c254 u16 ssn, enum hal_pn_type pn_type) in ath12k_wifi7_dp_rx_assign_reoq() argument
282 ssn, pn_type); in ath12k_wifi7_dp_rx_assign_reoq()
/freebsd/sys/contrib/dev/athk/ath12k/
H A Ddp.h420 u16 ssn, enum hal_pn_type pn_type);
623 u16 ssn, enum hal_pn_type pn_type) in ath12k_dp_arch_rx_assign_reoq() argument
625 return dp->ops->rx_assign_reoq(dp->ab, dp_peer, rx_tid, ssn, pn_type); in ath12k_dp_arch_rx_assign_reoq()
H A Ddp_rx.h227 enum hal_pn_type pn_type);
H A Ddp_rx.c588 enum hal_pn_type pn_type) in ath12k_dp_rx_peer_tid_setup() argument
657 ret = ath12k_dp_arch_rx_assign_reoq(dp, peer->dp_peer, rx_tid, ssn, pn_type); in ath12k_dp_rx_peer_tid_setup()
723 params->ssn, arsta->ahsta->pn_type); in ath12k_dp_rx_ampdu_start()
H A Dcore.h539 enum hal_pn_type pn_type; member
H A Dmac.c6086 ahsta->pn_type = HAL_PN_TYPE_WPA; in ath12k_mac_set_key()
6088 ahsta->pn_type = HAL_PN_TYPE_NONE; in ath12k_mac_set_key()
6091 ahsta->pn_type = HAL_PN_TYPE_NONE; in ath12k_mac_set_key()
/freebsd/sys/contrib/dev/athk/ath11k/
H A Ddp_rx.h59 enum hal_pn_type pn_type);
H A Dcore.h573 enum hal_pn_type pn_type; member
H A Ddp_rx.c999 enum hal_pn_type pn_type) in ath11k_peer_rx_tid_setup() argument
1066 ath11k_hal_reo_qdesc_setup(vaddr, tid, ba_win_sz, ssn, pn_type); in ath11k_peer_rx_tid_setup()
1100 params->ssn, arsta->pn_type); in ath11k_dp_rx_ampdu_start()
H A Dmac.c4654 arsta->pn_type = HAL_PN_TYPE_WPA; in ath11k_mac_op_set_key()
4656 arsta->pn_type = HAL_PN_TYPE_NONE; in ath11k_mac_op_set_key()
4659 arsta->pn_type = HAL_PN_TYPE_NONE; in ath11k_mac_op_set_key()
/freebsd/sys/fs/procfs/
H A Dprocfs.c98 if ((p->p_flag & P_SUGID) && pn->pn_type != pfstype_procdir) in procfs_attr()