Lines Matching refs:tpt
278 struct fw_ri_tpte *tpt;
285 tpt = kmalloc(sizeof(*tpt), GFP_KERNEL);
286 if (!tpt)
298 kfree(tpt);
313 memset(tpt, 0, sizeof(*tpt));
315 tpt->valid_to_pdid = cpu_to_be32(FW_RI_TPTE_VALID_F |
319 tpt->locread_to_qpid = cpu_to_be32(FW_RI_TPTE_PERM_V(perm) |
324 tpt->nosnoop_pbladdr = !pbl_size ? 0 : cpu_to_be32(
326 tpt->len_lo = cpu_to_be32((u32)(len & 0xffffffffUL));
327 tpt->va_hi = cpu_to_be32((u32)(to >> 32));
328 tpt->va_lo_fbo = cpu_to_be32((u32)(to & 0xffffffffUL));
329 tpt->dca_mwbcnt_pstag = cpu_to_be32(0);
330 tpt->len_hi = cpu_to_be32((u32)(len >> 32));
334 sizeof(*tpt), tpt, skb, wr_waitp);
342 kfree(tpt);