I'm trying to understand Unix pipes, and I can't find any information about Solaris anonymous pipes, which are created with something like pipe(2).
As far as I know, this system call creates a buffer somewhere in kernel space, and links read and write ends with file descriptors using vfs and vnode (not sure about this part).
But what is that buffer created in kernel space? How is it implemented and what are the differences with usual array of bytes?