/linux-6.6.21/net/bluetooth/ |
D | hci_conn.c | 899 if (!bacmp(&conn->dst, BDADDR_ANY) || d->cig != conn->iso_qos.ucast.cig) in find_cis() 914 if (conn->iso_qos.ucast.cig == BT_ISO_QOS_CIG_UNSET) in cis_cleanup() 918 d.cig = conn->iso_qos.ucast.cig; in cis_cleanup() 929 hci_le_remove_cig(hdev, conn->iso_qos.ucast.cig); in cis_cleanup() 1789 hci_cpu_to_le24(qos->ucast.out.interval, pdu.cp.c_interval); in set_cig_params_sync() 1790 hci_cpu_to_le24(qos->ucast.in.interval, pdu.cp.p_interval); in set_cig_params_sync() 1791 pdu.cp.sca = qos->ucast.sca; in set_cig_params_sync() 1792 pdu.cp.packing = qos->ucast.packing; in set_cig_params_sync() 1793 pdu.cp.framing = qos->ucast.framing; in set_cig_params_sync() 1794 pdu.cp.c_latency = cpu_to_le16(qos->ucast.out.latency); in set_cig_params_sync() [all …]
|
D | iso.c | 421 if (!iso_pi(sk)->qos.ucast.in.phy && !iso_pi(sk)->qos.ucast.out.phy) { in iso_connect_cis() 499 if (skb->len > qos->ucast.out.sdu) in iso_send_frame() 1278 if (qos->ucast.cig > 0xef && qos->ucast.cig != BT_ISO_QOS_CIG_UNSET) in check_ucast_qos() 1281 if (qos->ucast.cis > 0xef && qos->ucast.cis != BT_ISO_QOS_CIS_UNSET) in check_ucast_qos() 1284 if (qos->ucast.sca > 0x07) in check_ucast_qos() 1287 if (qos->ucast.packing > 0x01) in check_ucast_qos() 1290 if (qos->ucast.framing > 0x01) in check_ucast_qos() 1293 if (!check_io_qos(&qos->ucast.in)) in check_ucast_qos() 1296 if (!check_io_qos(&qos->ucast.out)) in check_ucast_qos() 1399 if (len == sizeof(qos.ucast) && !check_ucast_qos(&qos)) { in iso_sock_setsockopt()
|
D | hci_event.c | 3828 conn->state == BT_OPEN || conn->iso_qos.ucast.cig != cig) in hci_unbound_cis_failed() 3930 if (conn->iso_qos.ucast.out.sdu && !conn->iso_qos.ucast.in.sdu) in hci_cc_le_setup_iso_path() 6928 qos->ucast.in.interval = le16_to_cpu(ev->interval) * 1250; in hci_le_cis_estabilished_evt() 6929 qos->ucast.out.interval = qos->ucast.in.interval; in hci_le_cis_estabilished_evt() 6934 qos->ucast.in.latency = in hci_le_cis_estabilished_evt() 6937 qos->ucast.out.latency = in hci_le_cis_estabilished_evt() 6940 qos->ucast.in.sdu = le16_to_cpu(ev->c_mtu); in hci_le_cis_estabilished_evt() 6941 qos->ucast.out.sdu = le16_to_cpu(ev->p_mtu); in hci_le_cis_estabilished_evt() 6942 qos->ucast.in.phy = ev->c_phy; in hci_le_cis_estabilished_evt() 6943 qos->ucast.out.phy = ev->p_phy; in hci_le_cis_estabilished_evt() [all …]
|
D | hci_sync.c | 6405 cig = conn->iso_qos.ucast.cig; in hci_le_create_cis_sync() 6409 link->iso_qos.ucast.cig == cig && in hci_le_create_cis_sync() 6427 conn->iso_qos.ucast.cig != cig) in hci_le_create_cis_sync()
|
/linux-6.6.21/drivers/net/ethernet/qlogic/qede/ |
D | qede_filter.c | 622 struct qed_filter_ucast_params ucast; in qede_set_ucast_rx_mac() local 624 memset(&ucast, 0, sizeof(ucast)); in qede_set_ucast_rx_mac() 625 ucast.type = opcode; in qede_set_ucast_rx_mac() 626 ucast.mac_valid = 1; in qede_set_ucast_rx_mac() 627 ether_addr_copy(ucast.mac, mac); in qede_set_ucast_rx_mac() 629 return edev->ops->filter_config_ucast(edev->cdev, &ucast); in qede_set_ucast_rx_mac() 636 struct qed_filter_ucast_params ucast; in qede_set_ucast_rx_vlan() local 638 memset(&ucast, 0, sizeof(ucast)); in qede_set_ucast_rx_vlan() 639 ucast.type = opcode; in qede_set_ucast_rx_vlan() 640 ucast.vlan_valid = 1; in qede_set_ucast_rx_vlan() [all …]
|
/linux-6.6.21/drivers/net/ethernet/qlogic/qed/ |
D | qed_l2.c | 2707 struct qed_filter_ucast ucast; in qed_configure_filter_ucast() local 2715 memset(&ucast, 0, sizeof(ucast)); in qed_configure_filter_ucast() 2718 ucast.opcode = QED_FILTER_ADD; in qed_configure_filter_ucast() 2721 ucast.opcode = QED_FILTER_REMOVE; in qed_configure_filter_ucast() 2724 ucast.opcode = QED_FILTER_REPLACE; in qed_configure_filter_ucast() 2732 ucast.type = QED_FILTER_MAC_VLAN; in qed_configure_filter_ucast() 2733 ether_addr_copy(ucast.mac, params->mac); in qed_configure_filter_ucast() 2734 ucast.vlan = params->vlan; in qed_configure_filter_ucast() 2736 ucast.type = QED_FILTER_MAC; in qed_configure_filter_ucast() 2737 ether_addr_copy(ucast.mac, params->mac); in qed_configure_filter_ucast() [all …]
|
/linux-6.6.21/drivers/net/ethernet/brocade/bna/ |
D | bfi_enet.h | 678 u64 ucast; member 697 u64 ucast; member
|
/linux-6.6.21/drivers/vdpa/ |
D | Kconfig | 83 cat /sys/kernel/debug/mlx5/mlx5_core.sf.1/vdpa-0/rx/untagged/ucast/packets
|
/linux-6.6.21/drivers/net/ethernet/chelsio/cxgb4vf/ |
D | cxgb4vf_main.c | 245 bool ucast = false; in cxgb4vf_set_addr_hash() local 250 ucast |= is_unicast_ether_addr(entry->addr); in cxgb4vf_set_addr_hash() 253 return t4vf_set_addr_hash(adapter, pi->viid, ucast, vec, false); in cxgb4vf_set_addr_hash() 943 bool ucast = is_unicast_ether_addr(mac_addr); in cxgb4vf_mac_sync() local 948 NULL, ucast ? &uhash : &mhash, false); in cxgb4vf_mac_sync()
|
D | t4vf_hw.c | 1738 bool ucast, u64 vec, bool sleep_ok) in t4vf_set_addr_hash() argument 1750 FW_VI_MAC_CMD_HASHUNIEN_V(ucast) | in t4vf_set_addr_hash()
|
/linux-6.6.21/include/net/bluetooth/ |
D | bluetooth.h | 205 struct bt_iso_ucast_qos ucast; member
|
D | hci_core.h | 1234 if (cig != c->iso_qos.ucast.cig) in hci_conn_hash_lookup_cis() 1238 if (id != c->iso_qos.ucast.cis) in hci_conn_hash_lookup_cis() 1265 if (handle == c->iso_qos.ucast.cig) { in hci_conn_hash_lookup_cig()
|
/linux-6.6.21/drivers/net/ethernet/marvell/octeontx2/af/ |
D | rvu_debugfs.c | 2400 u64 ucast, mcast, bcast; in cgx_print_stats() local 2426 ucast = PRINT_CGX_CUML_NIXRX_STATUS(RX_UCAST, "rx_ucast_frames"); in cgx_print_stats() 2435 seq_printf(s, "rx_frames: %llu\n", ucast + mcast + bcast); in cgx_print_stats() 2449 ucast = PRINT_CGX_CUML_NIXTX_STATUS(TX_UCAST, "tx_ucast_frames"); in cgx_print_stats() 2458 seq_printf(s, "tx_frames: %llu\n", ucast + mcast + bcast); in cgx_print_stats()
|
/linux-6.6.21/drivers/net/wireless/ath/ath6kl/ |
D | cfg80211.c | 222 static int ath6kl_set_cipher(struct ath6kl_vif *vif, u32 cipher, bool ucast) in ath6kl_set_cipher() argument 224 u8 *ar_cipher = ucast ? &vif->prwise_crypto : &vif->grp_crypto; in ath6kl_set_cipher() 225 u8 *ar_cipher_len = ucast ? &vif->prwise_crypto_len : in ath6kl_set_cipher() 229 __func__, cipher, ucast); in ath6kl_set_cipher()
|
/linux-6.6.21/drivers/staging/rtl8723bs/os_dep/ |
D | ioctl_cfg80211.c | 1363 static int rtw_cfg80211_set_cipher(struct security_priv *psecuritypriv, u32 cipher, bool ucast) in rtw_cfg80211_set_cipher() argument 1367 u32 *profile_cipher = ucast ? &psecuritypriv->dot11PrivacyAlgrthm : in rtw_cfg80211_set_cipher() 1401 if (ucast) { in rtw_cfg80211_set_cipher()
|
/linux-6.6.21/drivers/net/ethernet/chelsio/cxgb4/ |
D | cxgb4_main.c | 352 bool ucast = false; in cxgb4_set_addr_hash() local 357 ucast |= is_unicast_ether_addr(entry->addr); in cxgb4_set_addr_hash() 360 return t4_set_addr_hash(adap, adap->mbox, pi->viid, ucast, in cxgb4_set_addr_hash() 378 bool ucast = is_unicast_ether_addr(mac_addr); in cxgb4_mac_sync() local 383 idx, ucast ? &uhash : &mhash, false); in cxgb4_mac_sync()
|
D | cxgb4.h | 2025 bool ucast, u64 vec, bool sleep_ok);
|
D | t4_hw.c | 8198 bool ucast, u64 vec, bool sleep_ok) in t4_set_addr_hash() argument 8207 FW_VI_MAC_CMD_HASHUNIEN_V(ucast) | in t4_set_addr_hash()
|