Searched refs:todo (Results 1 - 2 of 2) sorted by relevance

/net/sunrpc/
H A Dxdr.c1236 unsigned int copied = 0, todo, avail_here; local
1255 todo = desc->array_len * desc->elem_size;
1258 if (todo && base < buf->head->iov_len) {
1260 avail_here = min_t(unsigned int, todo,
1262 todo -= avail_here;
1292 if (todo && base < buf->page_len) {
1295 avail_here = min(todo, buf->page_len - base);
1296 todo -= avail_here;
1392 if (todo) {
1405 todo
[all...]
/net/core/
H A Dskbuff.c2511 int from, to, merge, todo; local
2517 todo = shiftlen;
2532 todo -= skb_frag_size(fragfrom);
2533 if (todo < 0) {
2560 while ((todo > 0) && (from < skb_shinfo(skb)->nr_frags)) {
2567 if (todo >= skb_frag_size(fragfrom)) {
2569 todo -= skb_frag_size(fragfrom);
2577 skb_frag_size_set(fragto, todo);
2579 fragfrom->page_offset += todo;
2580 skb_frag_size_sub(fragfrom, todo);
[all...]

Completed in 147 milliseconds