Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-09-22 | pkg/buffer: Reorganize internal structure to allow dynamic sizes. | Ting-Yu Wang | |
This change changes `buffer.data` into a `[]byte`, from `[bufferSize]byte`. In exchange, each `buffer` is now grouped together to reduce the number of allocation. Plus, `View` now holds an embeded list of `buffer` (via `pool`) to support the happy path which the number of buffer is small. Expect no extra allocation for the happy path. It is to enable the use case for PacketBuffer, which * each `View` is small (way less than `defaultBufferSize`), and * needs to dynamically transfer ownership of `[]byte` to `View`. (to allow gradual migration) PiperOrigin-RevId: 333197252 | |||
2020-05-26 | Implement splice(2) and tee(2) for VFS2. | Jamie Liu | |
Updates #138 PiperOrigin-RevId: 313326354 | |||
2020-03-11 | Clean-up buffer implementation. | Adin Scannell | |
This also adds substantial test cases. The Read/Write interfaces are dropped as they are not necessary. PiperOrigin-RevId: 300461547 | |||
2020-02-28 | Make pipe buffer implementation standard. | Adin Scannell | |
A follow-up change will convert the networking code to use this standard pipe implementation. PiperOrigin-RevId: 297903206 |