Home
last modified time | relevance | path

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

/net/bluetooth/
Dhci_conn.c597 struct hci_conn *acl = conn->link; in hci_conn_del() local
598 if (acl) { in hci_conn_del()
599 acl->link = NULL; in hci_conn_del()
600 hci_conn_drop(acl); in hci_conn_del()
1201 struct hci_conn *acl; in hci_connect_acl() local
1210 acl = hci_conn_hash_lookup_ba(hdev, ACL_LINK, dst); in hci_connect_acl()
1211 if (!acl) { in hci_connect_acl()
1212 acl = hci_conn_add(hdev, ACL_LINK, dst, HCI_ROLE_MASTER); in hci_connect_acl()
1213 if (!acl) in hci_connect_acl()
1217 hci_conn_hold(acl); in hci_connect_acl()
[all …]
Dhci_event.c1812 struct hci_conn *acl, *sco; in hci_cs_add_sco() local
1830 acl = hci_conn_hash_lookup_handle(hdev, handle); in hci_cs_add_sco()
1831 if (acl) { in hci_cs_add_sco()
1832 sco = acl->link; in hci_cs_add_sco()
2104 struct hci_conn *acl, *sco; in hci_cs_setup_sync_conn() local
2122 acl = hci_conn_hash_lookup_handle(hdev, handle); in hci_cs_setup_sync_conn()
2123 if (acl) { in hci_cs_setup_sync_conn()
2124 sco = acl->link; in hci_cs_setup_sync_conn()
/net/wireless/
Dnl80211.c4043 struct cfg80211_acl_data *acl; in parse_acl_data() local
4067 acl = kzalloc(struct_size(acl, mac_addrs, n_entries), GFP_KERNEL); in parse_acl_data()
4068 if (!acl) in parse_acl_data()
4072 memcpy(acl->mac_addrs[i].addr, nla_data(attr), ETH_ALEN); in parse_acl_data()
4076 acl->n_acl_entries = n_entries; in parse_acl_data()
4077 acl->acl_policy = acl_policy; in parse_acl_data()
4079 return acl; in parse_acl_data()
4086 struct cfg80211_acl_data *acl; in nl80211_set_mac_acl() local
4096 acl = parse_acl_data(&rdev->wiphy, info); in nl80211_set_mac_acl()
4097 if (IS_ERR(acl)) in nl80211_set_mac_acl()
[all …]