Home
last modified time | relevance | path

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

/f-stack/freebsd/sys/
H A Dpipe.h42 #ifndef SMALL_PIPE_SIZE
43 #define SMALL_PIPE_SIZE PAGE_SIZE macro
/f-stack/freebsd/kern/
H A Dsys_pipe.c560 size > SMALL_PIPE_SIZE) { in pipespace_new()
561 size = SMALL_PIPE_SIZE; in pipespace_new()
683 maxpipekva / 2 ? SMALL_PIPE_SIZE : PIPE_SIZE); in pipe_create()
713 rpipe->pipe_buffer.size > SMALL_PIPE_SIZE && in pipe_read()
714 rpipe->pipe_buffer.cnt <= SMALL_PIPE_SIZE && in pipe_read()
717 pipespace(rpipe, SMALL_PIPE_SIZE); in pipe_read()
1096 desiredsize = max(SMALL_PIPE_SIZE, wpipe->pipe_buffer.size); in pipe_write()
1109 wpipe->pipe_buffer.size > SMALL_PIPE_SIZE && in pipe_write()
1110 wpipe->pipe_buffer.cnt <= SMALL_PIPE_SIZE && in pipe_write()
1112 desiredsize = SMALL_PIPE_SIZE; in pipe_write()