Home
last modified time | relevance | path

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

/linux-6.1.9/mm/ !
Dreadahead.c326 unsigned long this_chunk = (2 * 1024 * 1024) / PAGE_SIZE; in force_page_cache_ra() local
328 if (this_chunk > nr_to_read) in force_page_cache_ra()
329 this_chunk = nr_to_read; in force_page_cache_ra()
331 do_page_cache_ra(ractl, this_chunk, 0); in force_page_cache_ra()
333 index += this_chunk; in force_page_cache_ra()
334 nr_to_read -= this_chunk; in force_page_cache_ra()
/linux-6.1.9/drivers/net/ !
Dnetconsole.c801 int this_chunk; in send_ext_msg_udp() local
807 this_chunk = min(body_len - offset, in send_ext_msg_udp()
809 if (WARN_ON_ONCE(this_chunk <= 0)) in send_ext_msg_udp()
812 memcpy(buf + this_header, body + offset, this_chunk); in send_ext_msg_udp()
814 netpoll_send_udp(&nt->np, buf, this_header + this_chunk); in send_ext_msg_udp()
816 offset += this_chunk; in send_ext_msg_udp()