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

/linux-master/drivers/net/
H A Dnetconsole.c1093 int this_chunk = 0; local
1102 this_chunk = min(body_len - offset,
1104 if (WARN_ON_ONCE(this_chunk <= 0))
1106 memcpy(buf + this_header, body + offset, this_chunk);
1107 this_offset += this_chunk;
1115 int preceding_bytes = this_chunk + this_header;
1120 this_chunk = min(userdata_len - sent_userdata,
1122 if (WARN_ON_ONCE(this_chunk <= 0))
1126 this_chunk);
1127 this_offset += this_chunk;
[all...]
/linux-master/mm/
H A Dreadahead.c325 unsigned long this_chunk = (2 * 1024 * 1024) / PAGE_SIZE; local
327 if (this_chunk > nr_to_read)
328 this_chunk = nr_to_read;
330 do_page_cache_ra(ractl, this_chunk, 0);
332 index += this_chunk;
333 nr_to_read -= this_chunk;

Completed in 115 milliseconds