Home
last modified time | relevance | path

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

/linux/drivers/net/
H A Dnetconsole.c1752 int this_chunk = 0; in send_fragmented_body() local
1763 this_chunk = min(msgbody_left, MAX_PRINT_CHUNK - buf_offset); in send_fragmented_body()
1765 this_chunk); in send_fragmented_body()
1766 msgbody_offset += this_chunk; in send_fragmented_body()
1767 buf_offset += this_chunk; in send_fragmented_body()
1768 data_sent += this_chunk; in send_fragmented_body()
1772 this_chunk = min(userdata_left, in send_fragmented_body()
1775 userdata_ptr + userdata_offset, this_chunk); in send_fragmented_body()
1776 userdata_offset += this_chunk; in send_fragmented_body()
1777 buf_offset += this_chunk; in send_fragmented_body()
[all …]
/linux/mm/
H A Dreadahead.c360 unsigned long this_chunk = (2 * 1024 * 1024) / PAGE_SIZE; in force_page_cache_ra()
362 if (this_chunk > nr_to_read) in force_page_cache_ra()
363 this_chunk = nr_to_read; in force_page_cache_ra()
364 do_page_cache_ra(ractl, this_chunk, 0); in force_page_cache_ra()
366 nr_to_read -= this_chunk;
357 unsigned long this_chunk = (2 * 1024 * 1024) / PAGE_SIZE; force_page_cache_ra() local