Lines Matching defs:desc
155 static int rds_tcp_data_recv(read_descriptor_t *desc, struct sk_buff *skb,
158 struct rds_tcp_desc_arg *arg = desc->arg.data;
177 desc->error = -ENOMEM;
221 desc->error = -ENOMEM;
267 read_descriptor_t desc;
273 desc.arg.data = &arg;
274 desc.error = 0;
275 desc.count = 1; /* give more than one skb per call */
277 tcp_read_sock(sock->sk, &desc, rds_tcp_data_recv);
279 desc.error);
281 return desc.error;