Home
last modified time | relevance | path

Searched refs:sdreq (Results 1 – 2 of 2) sorted by relevance

/linux-6.1.9/net/nfc/
Dllcp_commands.c136 struct nfc_llcp_sdp_tlv *sdreq; in nfc_llcp_build_sdreq_tlv() local
144 sdreq = kzalloc(sizeof(struct nfc_llcp_sdp_tlv), GFP_KERNEL); in nfc_llcp_build_sdreq_tlv()
145 if (sdreq == NULL) in nfc_llcp_build_sdreq_tlv()
148 sdreq->tlv_len = uri_len + 3; in nfc_llcp_build_sdreq_tlv()
151 sdreq->tlv_len--; in nfc_llcp_build_sdreq_tlv()
153 sdreq->tlv = kzalloc(sdreq->tlv_len + 1, GFP_KERNEL); in nfc_llcp_build_sdreq_tlv()
154 if (sdreq->tlv == NULL) { in nfc_llcp_build_sdreq_tlv()
155 kfree(sdreq); in nfc_llcp_build_sdreq_tlv()
159 sdreq->tlv[0] = LLCP_TLV_SDREQ; in nfc_llcp_build_sdreq_tlv()
160 sdreq->tlv[1] = sdreq->tlv_len - 2; in nfc_llcp_build_sdreq_tlv()
[all …]
Dnetlink.c1139 struct nfc_llcp_sdp_tlv *sdreq; in nfc_genl_llc_sdreq() local
1191 sdreq = nfc_llcp_build_sdreq_tlv(tid, uri, uri_len); in nfc_genl_llc_sdreq()
1192 if (sdreq == NULL) { in nfc_genl_llc_sdreq()
1197 tlvs_len += sdreq->tlv_len; in nfc_genl_llc_sdreq()
1199 hlist_add_head(&sdreq->node, &sdreq_list); in nfc_genl_llc_sdreq()