Home
last modified time | relevance | path

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

/freebsd-9-stable/sys/sys/
Dpipe.h42 #ifndef SMALL_PIPE_SIZE
43 #define SMALL_PIPE_SIZE PAGE_SIZE macro
/freebsd-9-stable/sys/kern/
Dsys_pipe.c456 (size > SMALL_PIPE_SIZE)) {
457 size = SMALL_PIPE_SIZE;
579 error = pipespace_new(pipe, SMALL_PIPE_SIZE);
617 (rpipe->pipe_buffer.size > SMALL_PIPE_SIZE) &&
618 (rpipe->pipe_buffer.cnt <= SMALL_PIPE_SIZE) &&
621 pipespace(rpipe, SMALL_PIPE_SIZE);
1011 desiredsize = max(SMALL_PIPE_SIZE, wpipe->pipe_buffer.size);
1024 (wpipe->pipe_buffer.size > SMALL_PIPE_SIZE) &&
1025 (wpipe->pipe_buffer.cnt <= SMALL_PIPE_SIZE) &&
1027 desiredsize = SMALL_PIPE_SIZE;