Searched refs:sdreq (Results 1 – 2 of 2) sorted by relevance
148 struct nfc_llcp_sdp_tlv *sdreq; in nfc_llcp_build_sdreq_tlv() local152 sdreq = kzalloc(sizeof(struct nfc_llcp_sdp_tlv), GFP_KERNEL); in nfc_llcp_build_sdreq_tlv()153 if (sdreq == NULL) in nfc_llcp_build_sdreq_tlv()156 sdreq->tlv_len = uri_len + 3; in nfc_llcp_build_sdreq_tlv()159 sdreq->tlv_len--; in nfc_llcp_build_sdreq_tlv()161 sdreq->tlv = kzalloc(sdreq->tlv_len + 1, GFP_KERNEL); in nfc_llcp_build_sdreq_tlv()162 if (sdreq->tlv == NULL) { in nfc_llcp_build_sdreq_tlv()163 kfree(sdreq); in nfc_llcp_build_sdreq_tlv()167 sdreq->tlv[0] = LLCP_TLV_SDREQ; in nfc_llcp_build_sdreq_tlv()168 sdreq->tlv[1] = sdreq->tlv_len - 2; in nfc_llcp_build_sdreq_tlv()[all …]
1022 struct nfc_llcp_sdp_tlv *sdreq; in nfc_genl_llc_sdreq() local1076 sdreq = nfc_llcp_build_sdreq_tlv(tid, uri, uri_len); in nfc_genl_llc_sdreq()1077 if (sdreq == NULL) { in nfc_genl_llc_sdreq()1082 tlvs_len += sdreq->tlv_len; in nfc_genl_llc_sdreq()1084 hlist_add_head(&sdreq->node, &sdreq_list); in nfc_genl_llc_sdreq()