Lines Matching refs:nents
98 int nents = sg_nents_for_len(src, buflen); in alloc_src_sglist() local
101 if (nents < 0) in alloc_src_sglist()
102 return nents; in alloc_src_sglist()
105 nents += 1; in alloc_src_sglist()
107 ret = alloc_src_req_buf(nkreq, nents, ivsize); in alloc_src_sglist()
112 nitrox_creq_set_src_sg(nkreq, nents, ivsize, src, buflen); in alloc_src_sglist()
120 int nents = sg_nents_for_len(dst, buflen); in alloc_dst_sglist() local
123 if (nents < 0) in alloc_dst_sglist()
124 return nents; in alloc_dst_sglist()
127 nents += 3; in alloc_dst_sglist()
131 ret = alloc_dst_req_buf(nkreq, nents); in alloc_dst_sglist()
137 nitrox_creq_set_dst_sg(nkreq, nents, ivsize, dst, buflen); in alloc_dst_sglist()